diff --git a/corpus/control_flow.txt b/corpus/control_flow.txt index 8272cb7..a77f47e 100644 --- a/corpus/control_flow.txt +++ b/corpus/control_flow.txt @@ -139,12 +139,12 @@ function do_yet_another_thing { (program (function_definition - (variable_name) + (word) (compound_statement (command (command_name (word)) (word)))) (function_definition - (variable_name) + (word) (compound_statement (command (command_name (word)) (word)))) (function_definition - (variable_name) + (word) (compound_statement (command (command_name (word)) (word))) (file_redirect (file_descriptor) (word)))) diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 843dbe4..1ed55e4 100644 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -15,6 +15,7 @@ echo a b Words with special characters ============================= +echo {o[k]} echo }}} echo ]]] === [[ "35d8b" =~ ^[0-9a-fA-F] ]] || echo {nomatch} @@ -22,11 +23,19 @@ echo ]]] === --- (program + (command (command_name (word)) (concatenation (word) (word))) (command (command_name (word)) (word)) (command (command_name (word)) (word) (word)) (list - (command (command_name (word)) (string) (word) (word) (word)) - (command (command_name (word)) (word)))) + (command + (command_name (word)) + (string) + (word) + (concatenation (word) (word)) + (word)) + (command + (command_name (word)) + (concatenation (word))))) ============================= Simple variable expansions @@ -57,6 +66,32 @@ echo ${abc: (command (command_name (word)) (expansion (variable_name))) (command (command_name (word)) (expansion (variable_name)))) +=================================== +Variable expansions in strings +=================================== + +A="${A:-$B/c}" +A="${b/$c/$d}" + +--- + +(program + (variable_assignment + (variable_name) + (string + (expansion + (variable_name) + (concatenation (simple_expansion (variable_name)) (word))))) + (variable_assignment + (variable_name) + (string + (expansion + (variable_name) + (concatenation + (simple_expansion (variable_name)) + (word) + (simple_expansion (variable_name))))))) + =================================== Other variable expansion operators =================================== @@ -248,8 +283,8 @@ a+=(foo "bar" $(baz)) (program (variable_assignment (variable_name) (array)) (variable_assignment (variable_name) (array (word) (word) (word))) - (command (command_name (word)) (expansion (variable_name))) - (command (command_name (word)) (expansion (variable_name))) + (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)) diff --git a/grammar.js b/grammar.js index ae75e48..2db3d08 100644 --- a/grammar.js +++ b/grammar.js @@ -1,3 +1,16 @@ +const SPECIAL_CHARACTERS = [ + "'", '"', + '<', '>', + '{', '}', + '\\[', '\\]', + '(', ')', + '`', '$', + '&', ';', + '\\', + '\\s', + '#', +]; + module.exports = grammar({ name: 'bash', @@ -6,9 +19,8 @@ module.exports = grammar({ $._terminator, $._expression, $._primary_expression, - $._variable_name, $._simple_variable_name, - $._simple_word, + $._special_variable_name, ], externals: $ => [ @@ -17,13 +29,12 @@ module.exports = grammar({ $._heredoc_middle, $._heredoc_end, $.file_descriptor, - $.word, $._empty_value, $._concat, $.variable_name, // Variable name followed by an operator like '=' or '+=' - '\n', - ']', '}', + ']', + '\n', ], extras: $ => [ @@ -118,8 +129,8 @@ module.exports = grammar({ function_definition: $ => seq( choice( - seq('function', $._simple_variable_name, optional(seq('(', ')'))), - seq($._simple_variable_name, '(', ')') + seq('function', $.word, optional(seq('(', ')'))), + seq($.word, '(', ')') ), $.compound_statement, optional($.file_redirect) @@ -162,7 +173,8 @@ module.exports = grammar({ repeat($._expression), repeat(choice( $.file_redirect, - $.heredoc_redirect + $.heredoc_redirect, + $.herestring_redirect )) )), @@ -201,7 +213,9 @@ module.exports = grammar({ $.variable_name, '[', $._expression, - ']' + optional($._concat), + ']', + optional($._concat) ), file_redirect: $ => prec.left(seq( @@ -228,16 +242,21 @@ module.exports = grammar({ ) ), + herestring_redirect: $ => seq( + '<<<', + $._expression + ), + // Expressions _expression: $ => choice( $.concatenation, - $._primary_expression + $._primary_expression, + alias(prec(-2, $._special_characters), $.word) ), _primary_expression: $ => choice( $.word, - $._simple_word, $.string, $.raw_string, $.expansion, @@ -247,22 +266,36 @@ module.exports = grammar({ ), concatenation: $ => prec(-1, seq( - $._primary_expression, - repeat1(seq($._concat, $._primary_expression)) + choice( + $._primary_expression, + $._special_characters, + ), + repeat1(prec(-1, seq( + $._concat, + choice( + $._primary_expression, + $._special_characters, + ) + ))), )), + _special_characters: $ => token(prec(-1, repeat1(choice('{', '}', '[', ']')))), + string: $ => seq( '"', - repeat(choice( - $._string_content, - $.expansion, - $.simple_expansion, - $.command_substitution + repeat(seq( + choice( + $._string_content, + $.expansion, + $.simple_expansion, + $.command_substitution + ), + optional($._concat) )), '"' ), - _string_content: $ => /([^"`$]|\\.)*/, + _string_content: $ => /([^"`$]|\\.)+/, array: $ => seq( '(', @@ -274,30 +307,37 @@ module.exports = grammar({ simple_expansion: $ => seq( '$', - $._variable_name + choice($._simple_variable_name, $._special_variable_name) ), expansion: $ => seq( '${', + optional('#'), choice( - $._variable_name, - seq('#', $._variable_name), - seq('#', $._variable_name, '[', '@', ']'), - seq($._variable_name, '[', '@', ']'), seq( - $._variable_name, - choice(':', ':?', '=', ':-', '%', '/'), - optional(seq($._expression, optional($._concat))) - ) + $.variable_name, + '=', + optional(seq( + $._expression + )) + ), + seq( + choice( + $.subscript, + $._simple_variable_name, + $._special_variable_name + ), + optional(seq( + choice(':', ':?', '=', ':-', '%', '/', '-'), + optional(seq( + $._expression + )) + )) + ), ), '}' ), - _variable_name: $ => choice( - $._simple_variable_name, - $.special_variable_name - ), - command_substitution: $ => choice( seq('$(', $._statement, ')'), prec(1, seq('`', $._statement, '`')) @@ -311,14 +351,20 @@ module.exports = grammar({ comment: $ => token(prec(-1, /#.*/)), - _simple_variable_name: $ => alias($.identifier, $.variable_name), + _simple_variable_name: $ => alias(/\w+/, $.variable_name), - _simple_word: $ => alias($.identifier, $.word), + _special_variable_name: $ => alias(choice('*', '@', '?', '-', '$', '0', '_'), $.special_variable_name), - identifier: $ => /\w+/, - - special_variable_name: $ => choice('*', '@', '#', '?', '-', '$', '!', '0', '_'), + word: $ => token(repeat1(choice( + noneOf(...SPECIAL_CHARACTERS), + seq('\\', noneOf('\\s')) + ))), _terminator: $ => choice(';', ';;', '\n', '&') } }); + +function noneOf(...characters) { + const negatedString = characters.map(c => c == '\\' ? '\\\\' : c).join('') + return new RegExp('[^' + negatedString + ']') +} diff --git a/src/grammar.json b/src/grammar.json index 2b3a725..bf8b805 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -325,7 +325,7 @@ }, { "type": "SYMBOL", - "name": "_simple_variable_name" + "name": "word" }, { "type": "CHOICE", @@ -355,7 +355,7 @@ "members": [ { "type": "SYMBOL", - "name": "_simple_variable_name" + "name": "word" }, { "type": "STRING", @@ -548,6 +548,10 @@ { "type": "SYMBOL", "name": "heredoc_redirect" + }, + { + "type": "SYMBOL", + "name": "herestring_redirect" } ] } @@ -681,9 +685,33 @@ "type": "SYMBOL", "name": "_expression" }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_concat" + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "]" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_concat" + }, + { + "type": "BLANK" + } + ] } ] }, @@ -809,6 +837,19 @@ } ] }, + "herestring_redirect": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<<<" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, "_expression": { "type": "CHOICE", "members": [ @@ -819,6 +860,19 @@ { "type": "SYMBOL", "name": "_primary_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "PREC", + "value": -2, + "content": { + "type": "SYMBOL", + "name": "_special_characters" + } + }, + "named": true, + "value": "word" } ] }, @@ -829,10 +883,6 @@ "type": "SYMBOL", "name": "word" }, - { - "type": "SYMBOL", - "name": "_simple_word" - }, { "type": "SYMBOL", "name": "string" @@ -866,28 +916,81 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_primary_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_primary_expression" + }, + { + "type": "SYMBOL", + "name": "_special_characters" + } + ] }, { "type": "REPEAT1", "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_concat" - }, - { - "type": "SYMBOL", - "name": "_primary_expression" - } - ] + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_concat" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_primary_expression" + }, + { + "type": "SYMBOL", + "name": "_special_characters" + } + ] + } + ] + } } } ] } }, + "_special_characters": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": -1, + "content": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "STRING", + "value": "}" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "]" + } + ] + } + } + } + }, "string": { "type": "SEQ", "members": [ @@ -898,23 +1001,40 @@ { "type": "REPEAT", "content": { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_string_content" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_string_content" + }, + { + "type": "SYMBOL", + "name": "expansion" + }, + { + "type": "SYMBOL", + "name": "simple_expansion" + }, + { + "type": "SYMBOL", + "name": "command_substitution" + } + ] }, { - "type": "SYMBOL", - "name": "expansion" - }, - { - "type": "SYMBOL", - "name": "simple_expansion" - }, - { - "type": "SYMBOL", - "name": "command_substitution" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_concat" + }, + { + "type": "BLANK" + } + ] } ] } @@ -927,7 +1047,7 @@ }, "_string_content": { "type": "PATTERN", - "value": "([^\"`$]|\\\\.)*" + "value": "([^\"`$]|\\\\.)+" }, "array": { "type": "SEQ", @@ -961,8 +1081,17 @@ "value": "$" }, { - "type": "SYMBOL", - "name": "_variable_name" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_simple_variable_name" + }, + { + "type": "SYMBOL", + "name": "_special_variable_name" + } + ] } ] }, @@ -977,103 +1106,27 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_variable_name" + "type": "STRING", + "value": "#" }, { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "#" - }, - { - "type": "SYMBOL", - "name": "_variable_name" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "#" - }, - { - "type": "SYMBOL", - "name": "_variable_name" - }, - { - "type": "STRING", - "value": "[" - }, - { - "type": "STRING", - "value": "@" - }, - { - "type": "STRING", - "value": "]" - } - ] - }, + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ { "type": "SEQ", "members": [ { "type": "SYMBOL", - "name": "_variable_name" + "name": "variable_name" }, { "type": "STRING", - "value": "[" - }, - { - "type": "STRING", - "value": "@" - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_variable_name" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "STRING", - "value": ":?" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": ":-" - }, - { - "type": "STRING", - "value": "%" - }, - { - "type": "STRING", - "value": "/" - } - ] + "value": "=" }, { "type": "CHOICE", @@ -1084,13 +1137,86 @@ { "type": "SYMBOL", "name": "_expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "subscript" + }, + { + "type": "SYMBOL", + "name": "_simple_variable_name" + }, + { + "type": "SYMBOL", + "name": "_special_variable_name" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "STRING", + "value": ":?" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": ":-" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": "-" + } + ] }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_concat" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + } + ] }, { "type": "BLANK" @@ -1114,19 +1240,6 @@ } ] }, - "_variable_name": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_variable_name" - }, - { - "type": "SYMBOL", - "name": "special_variable_name" - } - ] - }, "command_substitution": { "type": "CHOICE", "members": [ @@ -1210,65 +1323,77 @@ "_simple_variable_name": { "type": "ALIAS", "content": { - "type": "SYMBOL", - "name": "identifier" + "type": "PATTERN", + "value": "\\w+" }, "named": true, "value": "variable_name" }, - "_simple_word": { + "_special_variable_name": { "type": "ALIAS", "content": { - "type": "SYMBOL", - "name": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "?" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "$" + }, + { + "type": "STRING", + "value": "0" + }, + { + "type": "STRING", + "value": "_" + } + ] }, "named": true, - "value": "word" + "value": "special_variable_name" }, - "identifier": { - "type": "PATTERN", - "value": "\\w+" - }, - "special_variable_name": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "*" - }, - { - "type": "STRING", - "value": "@" - }, - { - "type": "STRING", - "value": "#" - }, - { - "type": "STRING", - "value": "?" - }, - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "$" - }, - { - "type": "STRING", - "value": "!" - }, - { - "type": "STRING", - "value": "0" - }, - { - "type": "STRING", - "value": "_" + "word": { + "type": "TOKEN", + "content": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[^'\"<>{}\\[\\]()`$&;\\\\\\s#]" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "PATTERN", + "value": "[^\\s]" + } + ] + } + ] } - ] + } }, "_terminator": { "type": "CHOICE", @@ -1336,10 +1461,6 @@ "type": "SYMBOL", "name": "file_descriptor" }, - { - "type": "SYMBOL", - "name": "word" - }, { "type": "SYMBOL", "name": "_empty_value" @@ -1354,7 +1475,7 @@ }, { "type": "STRING", - "value": "\n" + "value": "}" }, { "type": "STRING", @@ -1362,7 +1483,7 @@ }, { "type": "STRING", - "value": "}" + "value": "\n" } ], "inline": [ @@ -1370,8 +1491,7 @@ "_terminator", "_expression", "_primary_expression", - "_variable_name", "_simple_variable_name", - "_simple_word" + "_special_variable_name" ] } \ No newline at end of file diff --git a/src/parser.c b/src/parser.c index cca2375..51386e5 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,11 +6,11 @@ #endif #define LANGUAGE_VERSION 5 -#define STATE_COUNT 1717 -#define SYMBOL_COUNT 120 -#define ALIAS_COUNT 2 -#define TOKEN_COUNT 77 -#define EXTERNAL_TOKEN_COUNT 12 +#define STATE_COUNT 2791 +#define SYMBOL_COUNT 121 +#define ALIAS_COUNT 3 +#define TOKEN_COUNT 78 +#define EXTERNAL_TOKEN_COUNT 11 #define MAX_ALIAS_SEQUENCE_LENGTH 7 enum { @@ -19,122 +19,124 @@ enum { sym__heredoc_middle = 3, sym__heredoc_end = 4, sym_file_descriptor = 5, - sym_word = 6, - sym__empty_value = 7, - sym__concat = 8, - sym_variable_name = 9, - anon_sym_for = 10, - anon_sym_in = 11, - anon_sym_while = 12, - anon_sym_do = 13, - anon_sym_done = 14, - anon_sym_if = 15, - anon_sym_then = 16, - anon_sym_fi = 17, - anon_sym_elif = 18, - anon_sym_else = 19, - anon_sym_case = 20, - anon_sym_esac = 21, - anon_sym_PIPE = 22, - anon_sym_RPAREN = 23, - anon_sym_SEMI_SEMI = 24, - anon_sym_function = 25, - anon_sym_LPAREN = 26, - anon_sym_LBRACE = 27, - anon_sym_RBRACE = 28, - anon_sym_PIPE_AMP = 29, - anon_sym_AMP_AMP = 30, - anon_sym_PIPE_PIPE = 31, - anon_sym_declare = 32, - anon_sym_typeset = 33, - anon_sym_export = 34, - anon_sym_readonly = 35, - anon_sym_local = 36, - anon_sym_EQ = 37, - anon_sym_PLUS_EQ = 38, - anon_sym_LBRACK = 39, - anon_sym_RBRACK = 40, - anon_sym_LT = 41, - anon_sym_GT = 42, - anon_sym_GT_GT = 43, - anon_sym_AMP_GT = 44, - anon_sym_AMP_GT_GT = 45, - anon_sym_LT_AMP = 46, - anon_sym_GT_AMP = 47, - anon_sym_LT_LT = 48, - anon_sym_LT_LT_DASH = 49, - anon_sym_DQUOTE = 50, - sym__string_content = 51, - sym_raw_string = 52, - anon_sym_DOLLAR = 53, - anon_sym_DOLLAR_LBRACE = 54, - anon_sym_POUND = 55, - anon_sym_AT = 56, + sym__empty_value = 6, + sym__concat = 7, + sym_variable_name = 8, + anon_sym_for = 9, + anon_sym_in = 10, + anon_sym_while = 11, + anon_sym_do = 12, + anon_sym_done = 13, + anon_sym_if = 14, + anon_sym_then = 15, + anon_sym_fi = 16, + anon_sym_elif = 17, + anon_sym_else = 18, + anon_sym_case = 19, + anon_sym_esac = 20, + anon_sym_PIPE = 21, + anon_sym_RPAREN = 22, + anon_sym_SEMI_SEMI = 23, + anon_sym_function = 24, + anon_sym_LPAREN = 25, + anon_sym_LBRACE = 26, + anon_sym_RBRACE = 27, + anon_sym_PIPE_AMP = 28, + anon_sym_AMP_AMP = 29, + anon_sym_PIPE_PIPE = 30, + anon_sym_declare = 31, + anon_sym_typeset = 32, + anon_sym_export = 33, + anon_sym_readonly = 34, + anon_sym_local = 35, + anon_sym_EQ = 36, + anon_sym_PLUS_EQ = 37, + anon_sym_LBRACK = 38, + anon_sym_RBRACK = 39, + anon_sym_LT = 40, + anon_sym_GT = 41, + anon_sym_GT_GT = 42, + anon_sym_AMP_GT = 43, + anon_sym_AMP_GT_GT = 44, + anon_sym_LT_AMP = 45, + anon_sym_GT_AMP = 46, + anon_sym_LT_LT = 47, + anon_sym_LT_LT_DASH = 48, + anon_sym_LT_LT_LT = 49, + sym__special_characters = 50, + anon_sym_DQUOTE = 51, + sym__string_content = 52, + sym_raw_string = 53, + anon_sym_DOLLAR = 54, + anon_sym_DOLLAR_LBRACE = 55, + anon_sym_POUND = 56, anon_sym_COLON = 57, anon_sym_COLON_QMARK = 58, anon_sym_COLON_DASH = 59, anon_sym_PERCENT = 60, anon_sym_SLASH = 61, - anon_sym_DOLLAR_LPAREN = 62, - anon_sym_BQUOTE = 63, - anon_sym_LT_LPAREN = 64, - anon_sym_GT_LPAREN = 65, - sym_comment = 66, - sym_identifier = 67, - anon_sym_STAR = 68, - anon_sym_QMARK = 69, - anon_sym_DASH = 70, - anon_sym_BANG = 71, + anon_sym_DASH = 62, + anon_sym_DOLLAR_LPAREN = 63, + anon_sym_BQUOTE = 64, + anon_sym_LT_LPAREN = 65, + anon_sym_GT_LPAREN = 66, + sym_comment = 67, + aux_sym_SLASH_BSLASHw_PLUS_SLASH = 68, + anon_sym_STAR = 69, + anon_sym_AT = 70, + anon_sym_QMARK = 71, anon_sym_0 = 72, anon_sym__ = 73, - anon_sym_SEMI = 74, - anon_sym_LF = 75, - anon_sym_AMP = 76, - sym_program = 77, - sym__terminated_statement = 78, - sym_for_statement = 79, - sym_while_statement = 80, - sym_do_group = 81, - sym_if_statement = 82, - sym_elif_clause = 83, - sym_else_clause = 84, - sym_case_statement = 85, - sym_case_item = 86, - sym_function_definition = 87, - sym_compound_statement = 88, - sym_subshell = 89, - sym_pipeline = 90, - sym_list = 91, - sym_command = 92, - sym_command_name = 93, - sym_variable_assignment = 94, - sym_declaration_command = 95, - sym__assignment = 96, - sym_subscript = 97, - sym_file_redirect = 98, - sym_heredoc_redirect = 99, - sym_heredoc = 100, - sym_concatenation = 101, - sym_string = 102, - sym_array = 103, - sym_simple_expansion = 104, - sym_expansion = 105, - sym_command_substitution = 106, - sym_process_substitution = 107, - sym_special_variable_name = 108, - aux_sym_program_repeat1 = 109, - aux_sym_for_statement_repeat1 = 110, - aux_sym_if_statement_repeat1 = 111, - aux_sym_case_statement_repeat1 = 112, - aux_sym_case_item_repeat1 = 113, - aux_sym_command_repeat1 = 114, - aux_sym_command_repeat2 = 115, - aux_sym_declaration_command_repeat1 = 116, - aux_sym_heredoc_repeat1 = 117, - aux_sym_concatenation_repeat1 = 118, - aux_sym_string_repeat1 = 119, - alias_sym_variable_name = 120, - alias_sym_word = 121, + sym_word = 74, + anon_sym_SEMI = 75, + anon_sym_LF = 76, + anon_sym_AMP = 77, + sym_program = 78, + sym__terminated_statement = 79, + sym_for_statement = 80, + sym_while_statement = 81, + sym_do_group = 82, + sym_if_statement = 83, + sym_elif_clause = 84, + sym_else_clause = 85, + sym_case_statement = 86, + sym_case_item = 87, + sym_function_definition = 88, + sym_compound_statement = 89, + sym_subshell = 90, + sym_pipeline = 91, + sym_list = 92, + sym_command = 93, + sym_command_name = 94, + sym_variable_assignment = 95, + sym_declaration_command = 96, + sym__assignment = 97, + sym_subscript = 98, + sym_file_redirect = 99, + sym_heredoc_redirect = 100, + sym_heredoc = 101, + sym_herestring_redirect = 102, + sym_concatenation = 103, + sym_string = 104, + sym_array = 105, + sym_simple_expansion = 106, + sym_expansion = 107, + sym_command_substitution = 108, + sym_process_substitution = 109, + aux_sym_program_repeat1 = 110, + aux_sym_for_statement_repeat1 = 111, + aux_sym_if_statement_repeat1 = 112, + aux_sym_case_statement_repeat1 = 113, + aux_sym_case_item_repeat1 = 114, + aux_sym_command_repeat1 = 115, + aux_sym_command_repeat2 = 116, + aux_sym_declaration_command_repeat1 = 117, + aux_sym_heredoc_repeat1 = 118, + aux_sym_concatenation_repeat1 = 119, + aux_sym_string_repeat1 = 120, + alias_sym_special_variable_name = 121, + alias_sym_variable_name = 122, + alias_sym_word = 123, }; static const char *ts_symbol_names[] = { @@ -143,7 +145,6 @@ static const char *ts_symbol_names[] = { [sym__heredoc_middle] = "_heredoc_middle", [sym__heredoc_end] = "_heredoc_end", [sym_file_descriptor] = "file_descriptor", - [sym_word] = "word", [sym__empty_value] = "_empty_value", [sym__concat] = "_concat", [sym_variable_name] = "variable_name", @@ -188,30 +189,32 @@ static const char *ts_symbol_names[] = { [anon_sym_GT_AMP] = ">&", [anon_sym_LT_LT] = "<<", [anon_sym_LT_LT_DASH] = "<<-", + [anon_sym_LT_LT_LT] = "<<<", + [sym__special_characters] = "_special_characters", [anon_sym_DQUOTE] = "\"", [sym__string_content] = "_string_content", [sym_raw_string] = "raw_string", [anon_sym_DOLLAR] = "$", [anon_sym_DOLLAR_LBRACE] = "${", [anon_sym_POUND] = "#", - [anon_sym_AT] = "@", [anon_sym_COLON] = ":", [anon_sym_COLON_QMARK] = ":?", [anon_sym_COLON_DASH] = ":-", [anon_sym_PERCENT] = "%", [anon_sym_SLASH] = "/", + [anon_sym_DASH] = "-", [anon_sym_DOLLAR_LPAREN] = "$(", [anon_sym_BQUOTE] = "`", [anon_sym_LT_LPAREN] = "<(", [anon_sym_GT_LPAREN] = ">(", [sym_comment] = "comment", - [sym_identifier] = "identifier", + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = "/\\w+/", [anon_sym_STAR] = "*", + [anon_sym_AT] = "@", [anon_sym_QMARK] = "?", - [anon_sym_DASH] = "-", - [anon_sym_BANG] = "!", [anon_sym_0] = "0", [anon_sym__] = "_", + [sym_word] = "word", [anon_sym_SEMI] = ";", [anon_sym_LF] = "\n", [anon_sym_AMP] = "&", @@ -239,6 +242,7 @@ static const char *ts_symbol_names[] = { [sym_file_redirect] = "file_redirect", [sym_heredoc_redirect] = "heredoc_redirect", [sym_heredoc] = "heredoc", + [sym_herestring_redirect] = "herestring_redirect", [sym_concatenation] = "concatenation", [sym_string] = "string", [sym_array] = "array", @@ -246,7 +250,6 @@ static const char *ts_symbol_names[] = { [sym_expansion] = "expansion", [sym_command_substitution] = "command_substitution", [sym_process_substitution] = "process_substitution", - [sym_special_variable_name] = "special_variable_name", [aux_sym_program_repeat1] = "program_repeat1", [aux_sym_for_statement_repeat1] = "for_statement_repeat1", [aux_sym_if_statement_repeat1] = "if_statement_repeat1", @@ -258,6 +261,7 @@ static const char *ts_symbol_names[] = { [aux_sym_heredoc_repeat1] = "heredoc_repeat1", [aux_sym_concatenation_repeat1] = "concatenation_repeat1", [aux_sym_string_repeat1] = "string_repeat1", + [alias_sym_special_variable_name] = "special_variable_name", [alias_sym_variable_name] = "variable_name", [alias_sym_word] = "word", }; @@ -283,10 +287,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_word] = { - .visible = true, - .named = true, - }, [sym__empty_value] = { .visible = false, .named = true, @@ -463,6 +463,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_LT_LT_LT] = { + .visible = true, + .named = false, + }, + [sym__special_characters] = { + .visible = false, + .named = true, + }, [anon_sym_DQUOTE] = { .visible = true, .named = false, @@ -487,10 +495,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_AT] = { - .visible = true, - .named = false, - }, [anon_sym_COLON] = { .visible = true, .named = false, @@ -511,6 +515,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, [anon_sym_DOLLAR_LPAREN] = { .visible = true, .named = false, @@ -531,26 +539,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_identifier] = { - .visible = true, - .named = true, + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = { + .visible = false, + .named = false, }, [anon_sym_STAR] = { .visible = true, .named = false, }, + [anon_sym_AT] = { + .visible = true, + .named = false, + }, [anon_sym_QMARK] = { .visible = true, .named = false, }, - [anon_sym_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG] = { - .visible = true, - .named = false, - }, [anon_sym_0] = { .visible = true, .named = false, @@ -559,6 +563,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [sym_word] = { + .visible = true, + .named = true, + }, [anon_sym_SEMI] = { .visible = true, .named = false, @@ -667,6 +675,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_herestring_redirect] = { + .visible = true, + .named = true, + }, [sym_concatenation] = { .visible = true, .named = true, @@ -695,10 +707,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_special_variable_name] = { - .visible = true, - .named = true, - }, [aux_sym_program_repeat1] = { .visible = false, .named = false, @@ -743,6 +751,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [alias_sym_special_variable_name] = { + .visible = true, + .named = true, + }, [alias_sym_variable_name] = { .visible = true, .named = true, @@ -753,7 +765,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, }; -static TSSymbol ts_alias_sequences[9][MAX_ALIAS_SEQUENCE_LENGTH] = { +static TSSymbol ts_alias_sequences[15][MAX_ALIAS_SEQUENCE_LENGTH] = { [1] = { [0] = alias_sym_word, }, @@ -764,20 +776,41 @@ static TSSymbol ts_alias_sequences[9][MAX_ALIAS_SEQUENCE_LENGTH] = { [1] = alias_sym_word, }, [4] = { - [1] = alias_sym_variable_name, + [1] = alias_sym_special_variable_name, }, [5] = { - [2] = alias_sym_word, + [1] = alias_sym_variable_name, }, [6] = { - [2] = alias_sym_variable_name, + [2] = alias_sym_word, }, [7] = { + [2] = alias_sym_special_variable_name, + }, + [8] = { + [2] = alias_sym_variable_name, + }, + [9] = { + [3] = alias_sym_word, + }, + [10] = { + [1] = alias_sym_special_variable_name, + [3] = alias_sym_word, + }, + [11] = { [1] = alias_sym_variable_name, [3] = alias_sym_word, }, - [8] = { - [3] = alias_sym_word, + [12] = { + [4] = alias_sym_word, + }, + [13] = { + [2] = alias_sym_special_variable_name, + [4] = alias_sym_word, + }, + [14] = { + [2] = alias_sym_variable_name, + [4] = alias_sym_word, }, }; @@ -789,40 +822,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(1); if (lookahead == '\n') ADVANCE(2); - if (lookahead == '!') - ADVANCE(3); if (lookahead == '\"') - ADVANCE(4); + ADVANCE(3); if (lookahead == '#') - ADVANCE(5); + ADVANCE(4); if (lookahead == '$') - ADVANCE(6); + ADVANCE(5); if (lookahead == '%') - ADVANCE(9); + ADVANCE(8); if (lookahead == '&') - ADVANCE(10); + ADVANCE(9); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(13); if (lookahead == '(') - ADVANCE(16); + ADVANCE(15); if (lookahead == ')') - ADVANCE(17); + ADVANCE(16); if (lookahead == '*') - ADVANCE(18); + ADVANCE(17); if (lookahead == '+') - ADVANCE(19); + ADVANCE(18); if (lookahead == '-') - ADVANCE(21); + ADVANCE(20); if (lookahead == '/') - ADVANCE(22); + ADVANCE(21); if (lookahead == '0') - ADVANCE(23); + ADVANCE(22); if (lookahead == ':') - ADVANCE(25); + ADVANCE(24); if (lookahead == ';') - ADVANCE(28); + ADVANCE(27); if (lookahead == '<') - ADVANCE(30); + ADVANCE(29); if (lookahead == '=') ADVANCE(35); if (lookahead == '>') @@ -841,37 +872,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(45); if (lookahead == '`') ADVANCE(46); - if (lookahead == 'c') - ADVANCE(47); - if (lookahead == 'd') - ADVANCE(51); - if (lookahead == 'e') - ADVANCE(61); - if (lookahead == 'f') - ADVANCE(75); - if (lookahead == 'i') - ADVANCE(86); - if (lookahead == 'l') - ADVANCE(88); - if (lookahead == 'r') - ADVANCE(93); - if (lookahead == 't') - ADVANCE(101); - if (lookahead == 'w') - ADVANCE(108); if (lookahead == '{') - ADVANCE(113); + ADVANCE(42); if (lookahead == '|') - ADVANCE(114); + ADVANCE(47); if (lookahead == '}') - ADVANCE(117); + ADVANCE(50); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(0); if (('1' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + ADVANCE(23); END_STATE(); case 1: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -880,139 +893,141 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_LF); END_STATE(); case 3: - ACCEPT_TOKEN(anon_sym_BANG); - END_STATE(); - case 4: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 5: + case 4: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 6: + case 5: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead == '(') - ADVANCE(7); + ADVANCE(6); if (lookahead == '{') - ADVANCE(8); + ADVANCE(7); END_STATE(); - case 7: + case 6: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); END_STATE(); - case 8: + case 7: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 9: + case 8: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 10: + case 9: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') + ADVANCE(10); + if (lookahead == '>') ADVANCE(11); + END_STATE(); + case 10: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 11: + ACCEPT_TOKEN(anon_sym_AMP_GT); if (lookahead == '>') ADVANCE(12); END_STATE(); - case 11: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - END_STATE(); case 12: - ACCEPT_TOKEN(anon_sym_AMP_GT); - if (lookahead == '>') - ADVANCE(13); - END_STATE(); - case 13: ACCEPT_TOKEN(anon_sym_AMP_GT_GT); END_STATE(); - case 14: + case 13: if (lookahead == '\'') - ADVANCE(15); - if (lookahead != 0) ADVANCE(14); + if (lookahead != 0) + ADVANCE(13); END_STATE(); - case 15: + case 14: ACCEPT_TOKEN(sym_raw_string); END_STATE(); - case 16: + case 15: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 17: + case 16: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 18: + case 17: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 19: + case 18: if (lookahead == '=') - ADVANCE(20); + ADVANCE(19); END_STATE(); - case 20: + case 19: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 21: + case 20: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 22: + case 21: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 23: + case 22: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + ADVANCE(23); END_STATE(); - case 24: - ACCEPT_TOKEN(sym_identifier); + case 23: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + ADVANCE(23); END_STATE(); - case 25: + case 24: ACCEPT_TOKEN(anon_sym_COLON); if (lookahead == '-') - ADVANCE(26); + ADVANCE(25); if (lookahead == '?') - ADVANCE(27); + ADVANCE(26); END_STATE(); - case 26: + case 25: ACCEPT_TOKEN(anon_sym_COLON_DASH); END_STATE(); - case 27: + case 26: ACCEPT_TOKEN(anon_sym_COLON_QMARK); END_STATE(); - case 28: + case 27: ACCEPT_TOKEN(anon_sym_SEMI); if (lookahead == ';') - ADVANCE(29); + ADVANCE(28); END_STATE(); - case 29: + case 28: ACCEPT_TOKEN(anon_sym_SEMI_SEMI); END_STATE(); - case 30: + case 29: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') - ADVANCE(31); + ADVANCE(30); if (lookahead == '(') - ADVANCE(32); + ADVANCE(31); if (lookahead == '<') - ADVANCE(33); + ADVANCE(32); END_STATE(); - case 31: + case 30: ACCEPT_TOKEN(anon_sym_LT_AMP); END_STATE(); - case 32: + case 31: ACCEPT_TOKEN(anon_sym_LT_LPAREN); END_STATE(); - case 33: + case 32: ACCEPT_TOKEN(anon_sym_LT_LT); if (lookahead == '-') + ADVANCE(33); + if (lookahead == '<') ADVANCE(34); END_STATE(); - case 34: + case 33: ACCEPT_TOKEN(anon_sym_LT_LT_DASH); END_STATE(); + case 34: + ACCEPT_TOKEN(anon_sym_LT_LT_LT); + END_STATE(); case 35: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); @@ -1041,7 +1056,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(sym__special_characters); + if (lookahead == '[') + ADVANCE(42); + if (lookahead == ']') + ADVANCE(42); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '}') + ADVANCE(42); END_STATE(); case 43: if (lookahead == '\n') @@ -1056,2494 +1079,3687 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + ADVANCE(23); END_STATE(); case 46: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); case 47: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') - ADVANCE(48); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 48: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') - ADVANCE(49); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 49: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') - ADVANCE(50); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 50: - ACCEPT_TOKEN(anon_sym_case); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 51: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') - ADVANCE(52); - if (lookahead == 'o') - ADVANCE(58); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 52: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') - ADVANCE(53); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 53: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') - ADVANCE(54); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 54: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') - ADVANCE(55); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 55: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') - ADVANCE(56); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 56: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') - ADVANCE(57); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 57: - ACCEPT_TOKEN(anon_sym_declare); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 58: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') - ADVANCE(59); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 59: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') - ADVANCE(60); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 60: - ACCEPT_TOKEN(anon_sym_done); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 61: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') - ADVANCE(62); - if (lookahead == 's') - ADVANCE(67); - if (lookahead == 'x') - ADVANCE(70); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 62: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') - ADVANCE(63); - if (lookahead == 's') - ADVANCE(65); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 63: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') - ADVANCE(64); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 64: - ACCEPT_TOKEN(anon_sym_elif); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 65: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') - ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 66: - ACCEPT_TOKEN(anon_sym_else); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 67: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') - ADVANCE(68); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 68: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') - ADVANCE(69); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 69: - ACCEPT_TOKEN(anon_sym_esac); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 70: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') - ADVANCE(71); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 71: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') - ADVANCE(72); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 72: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') - ADVANCE(73); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 73: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') - ADVANCE(74); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 74: - ACCEPT_TOKEN(anon_sym_export); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 75: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') - ADVANCE(76); - if (lookahead == 'o') - ADVANCE(77); - if (lookahead == 'u') - ADVANCE(79); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 76: - ACCEPT_TOKEN(anon_sym_fi); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 77: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') - ADVANCE(78); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 78: - ACCEPT_TOKEN(anon_sym_for); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 79: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') - ADVANCE(80); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 80: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') - ADVANCE(81); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 81: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') - ADVANCE(82); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 82: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') - ADVANCE(83); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 83: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') - ADVANCE(84); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 84: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') - ADVANCE(85); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 85: - ACCEPT_TOKEN(anon_sym_function); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 86: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') - ADVANCE(87); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 87: - ACCEPT_TOKEN(anon_sym_if); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 88: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') - ADVANCE(89); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 89: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') - ADVANCE(90); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 90: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') - ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 91: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') - ADVANCE(92); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 92: - ACCEPT_TOKEN(anon_sym_local); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 93: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') - ADVANCE(94); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 94: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') - ADVANCE(95); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 95: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') - ADVANCE(96); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 96: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') - ADVANCE(97); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 97: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') - ADVANCE(98); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 98: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') - ADVANCE(99); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 99: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') - ADVANCE(100); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 100: - ACCEPT_TOKEN(anon_sym_readonly); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 101: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') - ADVANCE(102); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 102: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') - ADVANCE(103); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 103: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') - ADVANCE(104); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 104: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') - ADVANCE(105); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 105: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') - ADVANCE(106); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 106: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') - ADVANCE(107); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 107: - ACCEPT_TOKEN(anon_sym_typeset); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 108: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') - ADVANCE(109); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 109: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') - ADVANCE(110); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 110: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') - ADVANCE(111); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 111: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') - ADVANCE(112); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 112: - ACCEPT_TOKEN(anon_sym_while); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 113: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 114: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == '&') - ADVANCE(115); + ADVANCE(48); if (lookahead == '|') - ADVANCE(116); + ADVANCE(49); END_STATE(); - case 115: + case 48: ACCEPT_TOKEN(anon_sym_PIPE_AMP); END_STATE(); - case 116: + case 49: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 117: + case 50: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 118: + case 51: if (lookahead == 0) ADVANCE(1); if (lookahead == '\"') - ADVANCE(4); + ADVANCE(3); if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); if (lookahead == '$') - ADVANCE(6); + ADVANCE(5); if (lookahead == '&') - ADVANCE(120); + ADVANCE(53); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(13); if (lookahead == '(') - ADVANCE(16); + ADVANCE(15); if (lookahead == '<') - ADVANCE(121); + ADVANCE(54); if (lookahead == '>') ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); if (lookahead == '\\') - SKIP(122); + ADVANCE(55); + if (lookahead == ']') + ADVANCE(42); if (lookahead == '`') ADVANCE(46); if (lookahead == 'c') - ADVANCE(47); + ADVANCE(58); if (lookahead == 'd') - ADVANCE(123); + ADVANCE(62); if (lookahead == 'e') - ADVANCE(124); + ADVANCE(69); if (lookahead == 'f') - ADVANCE(125); + ADVANCE(75); if (lookahead == 'i') - ADVANCE(86); + ADVANCE(85); if (lookahead == 'l') - ADVANCE(88); + ADVANCE(87); if (lookahead == 'r') - ADVANCE(93); + ADVANCE(92); if (lookahead == 't') - ADVANCE(101); + ADVANCE(100); if (lookahead == 'w') - ADVANCE(108); + ADVANCE(107); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '}') + ADVANCE(42); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(118); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + SKIP(51); + if ((lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(56); END_STATE(); - case 119: + case 52: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n') - ADVANCE(119); + ADVANCE(52); END_STATE(); - case 120: + case 53: if (lookahead == '>') - ADVANCE(12); + ADVANCE(11); END_STATE(); - case 121: + case 54: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') - ADVANCE(31); + ADVANCE(30); if (lookahead == '(') - ADVANCE(32); + ADVANCE(31); END_STATE(); - case 122: + case 55: if (lookahead == '\n') - SKIP(118); + SKIP(51); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); - case 123: - ACCEPT_TOKEN(sym_identifier); + case 56: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 57: + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); + END_STATE(); + case 58: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'a') + ADVANCE(59); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != 'a' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 59: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 's') + ADVANCE(60); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 60: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); if (lookahead == 'e') - ADVANCE(52); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + ADVANCE(61); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); END_STATE(); - case 124: - ACCEPT_TOKEN(sym_identifier); + case 61: + ACCEPT_TOKEN(anon_sym_case); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 62: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'e') + ADVANCE(63); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 63: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'c') + ADVANCE(64); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 64: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'l') + ADVANCE(65); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 65: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'a') + ADVANCE(66); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != 'a' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 66: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'r') + ADVANCE(67); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 67: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'e') + ADVANCE(68); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 68: + ACCEPT_TOKEN(anon_sym_declare); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 69: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); if (lookahead == 'x') ADVANCE(70); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); END_STATE(); - case 125: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') - ADVANCE(77); - if (lookahead == 'u') - ADVANCE(79); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 126: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(10); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(30); - if (lookahead == '>') - ADVANCE(36); + case 70: + ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - SKIP(127); - if (lookahead == '`') - ADVANCE(46); - if (lookahead == '|') - ADVANCE(114); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(126); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + ADVANCE(57); + if (lookahead == 'p') + ADVANCE(71); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); END_STATE(); - case 127: - if (lookahead == '\n') - SKIP(126); + case 71: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'o') + ADVANCE(72); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); END_STATE(); - case 128: + case 72: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'r') + ADVANCE(73); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 73: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 't') + ADVANCE(74); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 74: + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 75: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'o') + ADVANCE(76); + if (lookahead == 'u') + ADVANCE(78); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 76: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'r') + ADVANCE(77); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 77: + ACCEPT_TOKEN(anon_sym_for); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 78: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'n') + ADVANCE(79); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 79: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'c') + ADVANCE(80); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 80: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 't') + ADVANCE(81); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 81: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'i') + ADVANCE(82); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 82: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'o') + ADVANCE(83); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 83: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'n') + ADVANCE(84); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 84: + ACCEPT_TOKEN(anon_sym_function); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 85: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'f') + ADVANCE(86); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 86: + ACCEPT_TOKEN(anon_sym_if); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 87: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'o') + ADVANCE(88); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 88: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'c') + ADVANCE(89); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 89: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'a') + ADVANCE(90); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != 'a' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 90: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'l') + ADVANCE(91); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 91: + ACCEPT_TOKEN(anon_sym_local); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 92: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'e') + ADVANCE(93); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 93: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'a') + ADVANCE(94); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != 'a' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 94: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'd') + ADVANCE(95); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 95: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'o') + ADVANCE(96); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 96: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'n') + ADVANCE(97); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 97: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'l') + ADVANCE(98); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 98: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'y') + ADVANCE(99); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 99: + ACCEPT_TOKEN(anon_sym_readonly); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 100: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'y') + ADVANCE(101); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 101: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'p') + ADVANCE(102); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 102: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'e') + ADVANCE(103); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 103: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 's') + ADVANCE(104); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 104: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'e') + ADVANCE(105); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 105: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 't') + ADVANCE(106); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 106: + ACCEPT_TOKEN(anon_sym_typeset); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 107: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'h') + ADVANCE(108); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 108: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'i') + ADVANCE(109); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 109: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'l') + ADVANCE(110); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 110: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'e') + ADVANCE(111); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 111: + ACCEPT_TOKEN(anon_sym_while); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 112: if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); if (lookahead == '%') - ADVANCE(9); + ADVANCE(8); if (lookahead == '&') - ADVANCE(129); + ADVANCE(113); if (lookahead == '(') - ADVANCE(16); + ADVANCE(15); if (lookahead == ')') - ADVANCE(17); + ADVANCE(16); if (lookahead == '+') - ADVANCE(19); + ADVANCE(18); + if (lookahead == '-') + ADVANCE(20); if (lookahead == '/') - ADVANCE(22); + ADVANCE(21); if (lookahead == ':') - ADVANCE(25); + ADVANCE(24); if (lookahead == '=') ADVANCE(35); - if (lookahead == '@') - ADVANCE(41); if (lookahead == '[') - ADVANCE(42); + ADVANCE(114); if (lookahead == '\\') - SKIP(130); + SKIP(115); if (lookahead == ']') ADVANCE(44); if (lookahead == '`') ADVANCE(46); if (lookahead == 'd') - ADVANCE(131); + ADVANCE(116); if (lookahead == 'e') - ADVANCE(133); + ADVANCE(118); if (lookahead == 'f') - ADVANCE(139); + ADVANCE(124); if (lookahead == 'i') - ADVANCE(141); + ADVANCE(126); if (lookahead == 't') - ADVANCE(143); + ADVANCE(128); if (lookahead == '{') - ADVANCE(113); + ADVANCE(132); if (lookahead == '|') - ADVANCE(114); + ADVANCE(47); if (lookahead == '}') - ADVANCE(117); + ADVANCE(50); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(128); + SKIP(112); END_STATE(); - case 129: + case 113: if (lookahead == '&') - ADVANCE(11); + ADVANCE(10); END_STATE(); - case 130: + case 114: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 115: if (lookahead == '\n') - SKIP(128); + SKIP(112); END_STATE(); - case 131: + case 116: if (lookahead == 'o') - ADVANCE(132); + ADVANCE(117); END_STATE(); - case 132: + case 117: ACCEPT_TOKEN(anon_sym_do); END_STATE(); - case 133: + case 118: if (lookahead == 'l') - ADVANCE(134); + ADVANCE(119); END_STATE(); - case 134: + case 119: if (lookahead == 'i') - ADVANCE(135); + ADVANCE(120); if (lookahead == 's') - ADVANCE(137); + ADVANCE(122); END_STATE(); - case 135: + case 120: if (lookahead == 'f') - ADVANCE(136); + ADVANCE(121); END_STATE(); - case 136: + case 121: ACCEPT_TOKEN(anon_sym_elif); END_STATE(); - case 137: + case 122: if (lookahead == 'e') - ADVANCE(138); + ADVANCE(123); END_STATE(); - case 138: + case 123: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 139: + case 124: if (lookahead == 'i') - ADVANCE(140); + ADVANCE(125); END_STATE(); - case 140: + case 125: ACCEPT_TOKEN(anon_sym_fi); END_STATE(); - case 141: + case 126: if (lookahead == 'n') - ADVANCE(142); + ADVANCE(127); END_STATE(); - case 142: + case 127: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 143: + case 128: if (lookahead == 'h') - ADVANCE(144); + ADVANCE(129); END_STATE(); - case 144: + case 129: if (lookahead == 'e') - ADVANCE(145); + ADVANCE(130); END_STATE(); - case 145: + case 130: if (lookahead == 'n') - ADVANCE(146); + ADVANCE(131); END_STATE(); - case 146: + case 131: ACCEPT_TOKEN(anon_sym_then); END_STATE(); - case 147: - if (lookahead == '\"') - ADVANCE(4); + case 132: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 133: if (lookahead == '#') - ADVANCE(119); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '<') - ADVANCE(148); - if (lookahead == '>') - ADVANCE(149); + ADVANCE(52); + if (lookahead == ')') + ADVANCE(16); if (lookahead == '\\') - SKIP(150); - if (lookahead == '`') - ADVANCE(46); + SKIP(134); + if (lookahead == '|') + ADVANCE(135); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(147); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 148: - if (lookahead == '(') - ADVANCE(32); - END_STATE(); - case 149: - if (lookahead == '(') - ADVANCE(38); - END_STATE(); - case 150: - if (lookahead == '\n') - SKIP(147); - END_STATE(); - case 151: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '&') - ADVANCE(152); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '\\') - SKIP(153); - if (lookahead == '|') - ADVANCE(114); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(151); + SKIP(133); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + ADVANCE(23); END_STATE(); - case 152: + case 134: + if (lookahead == '\n') + SKIP(133); + END_STATE(); + case 135: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 136: + if (lookahead == '\"') + ADVANCE(3); + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '&') + ADVANCE(53); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == '<') + ADVANCE(54); + if (lookahead == '>') + ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); + if (lookahead == '\\') + ADVANCE(137); + if (lookahead == ']') + ADVANCE(42); + if (lookahead == '`') + ADVANCE(46); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '}') + ADVANCE(42); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(136); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(56); + END_STATE(); + case 137: + if (lookahead == '\n') + SKIP(136); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); + END_STATE(); + case 138: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '&') + ADVANCE(139); + if (lookahead == ';') + ADVANCE(27); + if (lookahead == '\\') + ADVANCE(140); + if (lookahead == '|') + ADVANCE(141); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(138); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(143); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < 'A' || lookahead > ']') && + (lookahead < '_' || lookahead > '}')) + ADVANCE(56); + END_STATE(); + case 139: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') - ADVANCE(11); + ADVANCE(10); END_STATE(); - case 153: + case 140: if (lookahead == '\n') - SKIP(151); + SKIP(138); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); - case 154: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(155); - if (lookahead == '$') - ADVANCE(6); + case 141: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '&') + ADVANCE(48); if (lookahead == '\\') - ADVANCE(159); + ADVANCE(57); + if (lookahead == '|') + ADVANCE(142); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(56); + END_STATE(); + case 142: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 143: + ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); + if (lookahead == '\\') + ADVANCE(57); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(143); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < 'A' || lookahead > ']') && + (lookahead < '_' || lookahead > '{') && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 144: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(3); + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '&') + ADVANCE(9); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == ';') + ADVANCE(27); + if (lookahead == '<') + ADVANCE(29); + if (lookahead == '>') + ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); + if (lookahead == '\\') + ADVANCE(145); + if (lookahead == ']') + ADVANCE(42); + if (lookahead == '`') + ADVANCE(46); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '|') + ADVANCE(141); + if (lookahead == '}') + ADVANCE(42); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(144); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(56); + END_STATE(); + case 145: + if (lookahead == '\n') + SKIP(144); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); + END_STATE(); + case 146: + if (lookahead == '\"') + ADVANCE(3); + if (lookahead == '#') + ADVANCE(147); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '\\') + ADVANCE(151); if (lookahead == '`') ADVANCE(46); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(160); + ADVANCE(152); if (lookahead != 0) - ADVANCE(156); + ADVANCE(148); END_STATE(); - case 155: + case 147: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(156); + ADVANCE(148); if (lookahead == '\\') - ADVANCE(158); + ADVANCE(150); if (lookahead != 0 && lookahead != '\"' && lookahead != '$' && lookahead != '`') - ADVANCE(155); + ADVANCE(147); END_STATE(); - case 156: + case 148: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\\') - ADVANCE(157); + ADVANCE(149); if (lookahead != 0 && lookahead != '\"' && lookahead != '$' && lookahead != '`') - ADVANCE(156); + ADVANCE(148); END_STATE(); - case 157: + case 149: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(156); + ADVANCE(148); if (lookahead == '\\') - ADVANCE(157); + ADVANCE(149); if (lookahead == '\"' || lookahead == '$' || lookahead == '`') - ADVANCE(156); + ADVANCE(148); if (lookahead != 0) - ADVANCE(156); + ADVANCE(148); END_STATE(); - case 158: + case 150: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(156); + ADVANCE(148); if (lookahead == '\\') - ADVANCE(158); + ADVANCE(150); if (lookahead == '\"' || lookahead == '$' || lookahead == '`') - ADVANCE(155); + ADVANCE(147); if (lookahead != 0) - ADVANCE(155); + ADVANCE(147); END_STATE(); - case 159: + case 151: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(160); + ADVANCE(152); if (lookahead == '\\') - ADVANCE(157); + ADVANCE(149); if (lookahead == '\"' || lookahead == '$' || lookahead == '`') - ADVANCE(156); + ADVANCE(148); if (lookahead != 0) - ADVANCE(156); + ADVANCE(148); END_STATE(); - case 160: + case 152: ACCEPT_TOKEN(sym__string_content); if (lookahead == '#') - ADVANCE(155); + ADVANCE(147); if (lookahead == '\\') - ADVANCE(159); + ADVANCE(151); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(160); + ADVANCE(152); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && lookahead != '`') - ADVANCE(156); + ADVANCE(148); END_STATE(); - case 161: - if (lookahead == '!') - ADVANCE(3); + case 153: if (lookahead == '#') - ADVANCE(5); + ADVANCE(52); if (lookahead == '$') - ADVANCE(162); - if (lookahead == '%') - ADVANCE(9); + ADVANCE(154); if (lookahead == '*') - ADVANCE(18); + ADVANCE(17); if (lookahead == '-') - ADVANCE(21); - if (lookahead == '/') - ADVANCE(22); + ADVANCE(20); if (lookahead == '0') - ADVANCE(23); - if (lookahead == ':') - ADVANCE(25); - if (lookahead == '=') - ADVANCE(35); + ADVANCE(22); if (lookahead == '?') ADVANCE(40); if (lookahead == '@') ADVANCE(41); - if (lookahead == '[') - ADVANCE(42); if (lookahead == '\\') - SKIP(163); + SKIP(155); if (lookahead == '_') ADVANCE(45); - if (lookahead == '}') - ADVANCE(117); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(161); + SKIP(153); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + ADVANCE(23); END_STATE(); - case 162: + case 154: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 163: + case 155: if (lookahead == '\n') - SKIP(161); + SKIP(153); END_STATE(); - case 164: + case 156: + if (lookahead == '#') + ADVANCE(4); + if (lookahead == '$') + ADVANCE(154); + if (lookahead == '*') + ADVANCE(17); + if (lookahead == '-') + ADVANCE(20); + if (lookahead == '0') + ADVANCE(22); + if (lookahead == '?') + ADVANCE(40); + if (lookahead == '@') + ADVANCE(41); + if (lookahead == '\\') + SKIP(157); + if (lookahead == '_') + ADVANCE(45); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(156); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(23); + END_STATE(); + case 157: + if (lookahead == '\n') + SKIP(156); + END_STATE(); + case 158: if (lookahead == '\n') ADVANCE(2); if (lookahead == '\"') - ADVANCE(4); + ADVANCE(3); if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); if (lookahead == '$') - ADVANCE(6); + ADVANCE(5); if (lookahead == '&') - ADVANCE(10); + ADVANCE(9); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(13); if (lookahead == '(') - ADVANCE(16); + ADVANCE(15); if (lookahead == ';') - ADVANCE(28); + ADVANCE(27); if (lookahead == '<') - ADVANCE(30); + ADVANCE(29); if (lookahead == '>') ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); if (lookahead == '\\') - SKIP(165); + ADVANCE(159); + if (lookahead == ']') + ADVANCE(42); if (lookahead == '`') ADVANCE(46); + if (lookahead == '{') + ADVANCE(42); if (lookahead == '|') - ADVANCE(114); + ADVANCE(141); + if (lookahead == '}') + ADVANCE(42); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(164); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + SKIP(158); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(56); END_STATE(); - case 165: + case 159: if (lookahead == '\n') - SKIP(164); + SKIP(158); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); - case 166: + case 160: if (lookahead == 0) ADVANCE(1); if (lookahead == '\"') - ADVANCE(4); + ADVANCE(3); if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); if (lookahead == '$') - ADVANCE(6); + ADVANCE(5); if (lookahead == '&') - ADVANCE(120); + ADVANCE(53); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(13); if (lookahead == '(') - ADVANCE(16); + ADVANCE(15); + if (lookahead == ';') + ADVANCE(161); if (lookahead == '<') - ADVANCE(121); + ADVANCE(54); if (lookahead == '>') ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); if (lookahead == '\\') - SKIP(167); + ADVANCE(162); + if (lookahead == ']') + ADVANCE(42); if (lookahead == '`') ADVANCE(46); if (lookahead == 'c') - ADVANCE(47); + ADVANCE(58); if (lookahead == 'd') - ADVANCE(123); + ADVANCE(62); if (lookahead == 'e') - ADVANCE(124); + ADVANCE(69); if (lookahead == 'f') - ADVANCE(125); + ADVANCE(75); if (lookahead == 'i') - ADVANCE(86); + ADVANCE(85); if (lookahead == 'l') - ADVANCE(88); + ADVANCE(87); if (lookahead == 'r') - ADVANCE(93); + ADVANCE(92); if (lookahead == 't') - ADVANCE(101); + ADVANCE(100); if (lookahead == 'w') - ADVANCE(108); + ADVANCE(107); + if (lookahead == '{') + ADVANCE(42); if (lookahead == '}') - ADVANCE(117); + ADVANCE(42); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(166); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + SKIP(160); + if ((lookahead < '&' || lookahead > ')')) + ADVANCE(56); + END_STATE(); + case 161: + if (lookahead == ';') + ADVANCE(28); + END_STATE(); + case 162: + if (lookahead == '\n') + SKIP(160); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); + END_STATE(); + case 163: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '&') + ADVANCE(139); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(27); + if (lookahead == '\\') + SKIP(164); + if (lookahead == '|') + ADVANCE(47); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(163); + END_STATE(); + case 164: + if (lookahead == '\n') + SKIP(163); + END_STATE(); + case 165: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(3); + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '&') + ADVANCE(9); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == ';') + ADVANCE(27); + if (lookahead == '<') + ADVANCE(54); + if (lookahead == '>') + ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); + if (lookahead == '\\') + ADVANCE(166); + if (lookahead == ']') + ADVANCE(42); + if (lookahead == '`') + ADVANCE(46); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '|') + ADVANCE(141); + if (lookahead == '}') + ADVANCE(42); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(165); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(56); + END_STATE(); + case 166: + if (lookahead == '\n') + SKIP(165); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); case 167: if (lookahead == '\n') - SKIP(166); + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(3); + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '&') + ADVANCE(9); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(27); + if (lookahead == '<') + ADVANCE(29); + if (lookahead == '>') + ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); + if (lookahead == '\\') + ADVANCE(168); + if (lookahead == ']') + ADVANCE(42); + if (lookahead == '`') + ADVANCE(46); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '|') + ADVANCE(141); + if (lookahead == '}') + ADVANCE(42); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(167); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(56); END_STATE(); case 168: if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(10); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(121); - if (lookahead == '>') - ADVANCE(36); - if (lookahead == '\\') - SKIP(169); - if (lookahead == '`') - ADVANCE(46); - if (lookahead == '|') - ADVANCE(114); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(168); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + SKIP(167); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); case 169: - if (lookahead == '\n') - SKIP(168); - END_STATE(); - case 170: if (lookahead == '\"') - ADVANCE(4); + ADVANCE(3); if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(120); + ADVANCE(5); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(13); + if (lookahead == '(') + ADVANCE(15); if (lookahead == '<') - ADVANCE(121); + ADVANCE(170); if (lookahead == '>') - ADVANCE(36); + ADVANCE(171); + if (lookahead == '[') + ADVANCE(42); if (lookahead == '\\') - SKIP(171); + ADVANCE(172); + if (lookahead == ']') + ADVANCE(42); if (lookahead == '`') ADVANCE(46); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '}') + ADVANCE(42); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(170); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + SKIP(169); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(56); + END_STATE(); + case 170: + if (lookahead == '(') + ADVANCE(31); END_STATE(); case 171: - if (lookahead == '\n') - SKIP(170); + if (lookahead == '(') + ADVANCE(38); END_STATE(); case 172: if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(10); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(30); - if (lookahead == '>') - ADVANCE(36); - if (lookahead == '\\') - SKIP(173); - if (lookahead == '`') - ADVANCE(46); - if (lookahead == '|') - ADVANCE(114); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(172); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + SKIP(169); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); case 173: if (lookahead == '\n') - SKIP(172); - END_STATE(); - case 174: + ADVANCE(2); if (lookahead == '\"') - ADVANCE(4); + ADVANCE(3); if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); if (lookahead == '$') - ADVANCE(6); + ADVANCE(5); + if (lookahead == '&') + ADVANCE(9); if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '(') + ADVANCE(13); + if (lookahead == ')') ADVANCE(16); + if (lookahead == ';') + ADVANCE(27); if (lookahead == '<') - ADVANCE(148); + ADVANCE(54); if (lookahead == '>') - ADVANCE(149); + ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); if (lookahead == '\\') - SKIP(175); + ADVANCE(174); + if (lookahead == ']') + ADVANCE(42); if (lookahead == '`') ADVANCE(46); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '|') + ADVANCE(141); + if (lookahead == '}') + ADVANCE(42); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(174); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + SKIP(173); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(56); + END_STATE(); + case 174: + if (lookahead == '\n') + SKIP(173); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); case 175: - if (lookahead == '\n') - SKIP(174); - END_STATE(); - case 176: if (lookahead == '\n') ADVANCE(2); - if (lookahead == '\"') - ADVANCE(4); if (lookahead == '#') - ADVANCE(119); - if (lookahead == '$') - ADVANCE(6); + ADVANCE(52); if (lookahead == '&') - ADVANCE(10); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == ')') - ADVANCE(17); + ADVANCE(176); if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(121); - if (lookahead == '>') - ADVANCE(36); + ADVANCE(27); if (lookahead == '\\') SKIP(177); - if (lookahead == '`') - ADVANCE(46); - if (lookahead == '|') - ADVANCE(114); + if (lookahead == 'i') + ADVANCE(126); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(176); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + SKIP(175); + END_STATE(); + case 176: + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 177: if (lookahead == '\n') - SKIP(176); + SKIP(175); END_STATE(); case 178: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); if (lookahead == '&') - ADVANCE(179); + ADVANCE(139); + if (lookahead == ')') + ADVANCE(16); if (lookahead == ';') - ADVANCE(28); + ADVANCE(27); if (lookahead == '\\') - SKIP(180); - if (lookahead == 'i') + ADVANCE(179); + if (lookahead == '|') ADVANCE(141); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(178); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(143); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < 'A' || lookahead > ']') && + (lookahead < '_' || lookahead > '}')) + ADVANCE(56); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '\n') + SKIP(178); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); case 180: if (lookahead == '\n') - SKIP(178); + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(3); + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '&') + ADVANCE(9); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == '(') + ADVANCE(15); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == ';') + ADVANCE(27); + if (lookahead == '<') + ADVANCE(29); + if (lookahead == '>') + ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); + if (lookahead == '\\') + ADVANCE(181); + if (lookahead == ']') + ADVANCE(42); + if (lookahead == '`') + ADVANCE(46); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '|') + ADVANCE(141); + if (lookahead == '}') + ADVANCE(42); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(180); + if (lookahead != 0) + ADVANCE(56); END_STATE(); case 181: if (lookahead == '\n') - ADVANCE(2); + SKIP(180); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); + END_STATE(); + case 182: if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); if (lookahead == '&') - ADVANCE(152); + ADVANCE(113); if (lookahead == ')') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(28); + ADVANCE(16); if (lookahead == '\\') - SKIP(182); + ADVANCE(183); if (lookahead == '|') - ADVANCE(114); + ADVANCE(141); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(181); + SKIP(182); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 182: - if (lookahead == '\n') - SKIP(181); + ADVANCE(143); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < 'A' || lookahead > ']') && + (lookahead < '_' || lookahead > '}')) + ADVANCE(56); END_STATE(); case 183: if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(10); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '(') - ADVANCE(16); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(30); - if (lookahead == '>') - ADVANCE(36); - if (lookahead == '\\') - SKIP(184); - if (lookahead == '`') - ADVANCE(46); - if (lookahead == '|') - ADVANCE(114); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(183); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + SKIP(182); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); case 184: - if (lookahead == '\n') - SKIP(183); + if (lookahead == '\"') + ADVANCE(3); + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '&') + ADVANCE(185); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(29); + if (lookahead == '>') + ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); + if (lookahead == '\\') + ADVANCE(186); + if (lookahead == ']') + ADVANCE(42); + if (lookahead == '`') + ADVANCE(46); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '|') + ADVANCE(141); + if (lookahead == '}') + ADVANCE(42); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(184); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(56); END_STATE(); case 185: - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '$') - ADVANCE(6); if (lookahead == '&') - ADVANCE(186); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == '<') - ADVANCE(30); + ADVANCE(10); if (lookahead == '>') - ADVANCE(36); - if (lookahead == '\\') - SKIP(187); - if (lookahead == '`') - ADVANCE(46); - if (lookahead == '|') - ADVANCE(114); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(185); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + ADVANCE(11); END_STATE(); case 186: - if (lookahead == '&') - ADVANCE(11); - if (lookahead == '>') - ADVANCE(12); + if (lookahead == '\n') + SKIP(184); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); case 187: - if (lookahead == '\n') - SKIP(185); + if (lookahead == '\"') + ADVANCE(3); + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '&') + ADVANCE(185); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == '(') + ADVANCE(15); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(29); + if (lookahead == '>') + ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); + if (lookahead == '\\') + ADVANCE(188); + if (lookahead == ']') + ADVANCE(42); + if (lookahead == '`') + ADVANCE(46); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '|') + ADVANCE(141); + if (lookahead == '}') + ADVANCE(42); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(187); + if (lookahead != 0 && + lookahead != ';' && + lookahead != '<') + ADVANCE(56); END_STATE(); case 188: - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '&') - ADVANCE(129); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == '\\') - SKIP(189); - if (lookahead == '|') - ADVANCE(114); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(188); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + if (lookahead == '\n') + SKIP(187); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); case 189: - if (lookahead == '\n') - SKIP(188); + if (lookahead == '\"') + ADVANCE(3); + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '&') + ADVANCE(185); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(54); + if (lookahead == '>') + ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); + if (lookahead == '\\') + ADVANCE(190); + if (lookahead == ']') + ADVANCE(42); + if (lookahead == '`') + ADVANCE(46); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '|') + ADVANCE(141); + if (lookahead == '}') + ADVANCE(42); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(189); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(56); END_STATE(); case 190: - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(186); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '(') - ADVANCE(16); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == '<') - ADVANCE(30); - if (lookahead == '>') - ADVANCE(36); - if (lookahead == '\\') - SKIP(191); - if (lookahead == '`') - ADVANCE(46); - if (lookahead == '|') - ADVANCE(114); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(190); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + if (lookahead == '\n') + SKIP(189); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); case 191: - if (lookahead == '\n') - SKIP(190); + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '&') + ADVANCE(113); + if (lookahead == '\\') + ADVANCE(192); + if (lookahead == '`') + ADVANCE(46); + if (lookahead == '|') + ADVANCE(141); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(191); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(143); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < 'A' || lookahead > ']') && + (lookahead < '_' || lookahead > '}')) + ADVANCE(56); END_STATE(); case 192: - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(186); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == '<') - ADVANCE(121); - if (lookahead == '>') - ADVANCE(36); - if (lookahead == '\\') - SKIP(193); - if (lookahead == '`') - ADVANCE(46); - if (lookahead == '|') - ADVANCE(114); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(192); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + if (lookahead == '\n') + SKIP(191); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); case 193: - if (lookahead == '\n') - SKIP(192); + if (lookahead == '\"') + ADVANCE(3); + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '&') + ADVANCE(185); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == '<') + ADVANCE(29); + if (lookahead == '>') + ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); + if (lookahead == '\\') + ADVANCE(194); + if (lookahead == ']') + ADVANCE(42); + if (lookahead == '`') + ADVANCE(46); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '|') + ADVANCE(141); + if (lookahead == '}') + ADVANCE(42); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(193); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(56); END_STATE(); case 194: - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(186); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '<') - ADVANCE(30); - if (lookahead == '>') - ADVANCE(36); - if (lookahead == '\\') - SKIP(195); - if (lookahead == '`') - ADVANCE(46); - if (lookahead == '|') - ADVANCE(114); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(194); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + if (lookahead == '\n') + SKIP(193); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); case 195: - if (lookahead == '\n') - SKIP(194); + if (lookahead == '\"') + ADVANCE(3); + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '&') + ADVANCE(185); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == '(') + ADVANCE(15); + if (lookahead == '<') + ADVANCE(29); + if (lookahead == '>') + ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); + if (lookahead == '\\') + ADVANCE(196); + if (lookahead == ']') + ADVANCE(42); + if (lookahead == '`') + ADVANCE(46); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '|') + ADVANCE(141); + if (lookahead == '}') + ADVANCE(42); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(195); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(56); END_STATE(); case 196: - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '&') - ADVANCE(129); - if (lookahead == '\\') - SKIP(197); - if (lookahead == '`') - ADVANCE(46); - if (lookahead == '|') - ADVANCE(114); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(196); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + if (lookahead == '\n') + SKIP(195); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); case 197: - if (lookahead == '\n') - SKIP(196); + if (lookahead == '\"') + ADVANCE(3); + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '&') + ADVANCE(185); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == '<') + ADVANCE(54); + if (lookahead == '>') + ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); + if (lookahead == '\\') + ADVANCE(198); + if (lookahead == ']') + ADVANCE(42); + if (lookahead == '`') + ADVANCE(46); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '|') + ADVANCE(141); + if (lookahead == '}') + ADVANCE(42); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(197); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(56); END_STATE(); case 198: - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(186); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '(') - ADVANCE(16); - if (lookahead == '<') - ADVANCE(30); - if (lookahead == '>') - ADVANCE(36); - if (lookahead == '\\') - SKIP(199); - if (lookahead == '`') - ADVANCE(46); - if (lookahead == '|') - ADVANCE(114); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(198); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + if (lookahead == '\n') + SKIP(197); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); case 199: - if (lookahead == '\n') - SKIP(198); - END_STATE(); - case 200: - if (lookahead == '\"') - ADVANCE(4); if (lookahead == '#') - ADVANCE(119); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(186); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '<') - ADVANCE(121); - if (lookahead == '>') - ADVANCE(36); + ADVANCE(52); if (lookahead == '\\') - SKIP(201); - if (lookahead == '`') - ADVANCE(46); - if (lookahead == '|') - ADVANCE(114); + SKIP(200); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(200); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + SKIP(199); + END_STATE(); + case 200: + if (lookahead == '\n') + SKIP(199); END_STATE(); case 201: - if (lookahead == '\n') - SKIP(200); - END_STATE(); - case 202: - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '\\') - SKIP(203); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(202); - END_STATE(); - case 203: - if (lookahead == '\n') - SKIP(202); - END_STATE(); - case 204: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); if (lookahead == '&') - ADVANCE(10); + ADVANCE(9); if (lookahead == ')') - ADVANCE(17); + ADVANCE(16); if (lookahead == ';') - ADVANCE(28); + ADVANCE(27); if (lookahead == '<') - ADVANCE(205); + ADVANCE(202); if (lookahead == '>') - ADVANCE(206); + ADVANCE(203); if (lookahead == '\\') - SKIP(207); + SKIP(204); if (lookahead == '|') - ADVANCE(114); + ADVANCE(47); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(204); + SKIP(201); END_STATE(); - case 205: + case 202: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') - ADVANCE(31); + ADVANCE(30); if (lookahead == '<') - ADVANCE(33); + ADVANCE(32); END_STATE(); - case 206: + case 203: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '&') ADVANCE(37); if (lookahead == '>') ADVANCE(39); END_STATE(); - case 207: + case 204: if (lookahead == '\n') - SKIP(204); + SKIP(201); END_STATE(); - case 208: + case 205: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); if (lookahead == '&') - ADVANCE(10); + ADVANCE(9); if (lookahead == ';') - ADVANCE(28); + ADVANCE(27); if (lookahead == '<') - ADVANCE(205); + ADVANCE(202); if (lookahead == '>') - ADVANCE(206); + ADVANCE(203); if (lookahead == '\\') - SKIP(209); + SKIP(206); if (lookahead == '|') - ADVANCE(114); + ADVANCE(47); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(208); + SKIP(205); END_STATE(); - case 209: + case 206: if (lookahead == '\n') - SKIP(208); + SKIP(205); END_STATE(); - case 210: + case 207: if (lookahead == '\"') - ADVANCE(4); + ADVANCE(3); if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); if (lookahead == '$') - ADVANCE(6); + ADVANCE(5); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(13); if (lookahead == ')') - ADVANCE(17); + ADVANCE(16); if (lookahead == '<') - ADVANCE(148); + ADVANCE(170); if (lookahead == '>') - ADVANCE(149); + ADVANCE(171); + if (lookahead == '[') + ADVANCE(42); if (lookahead == '\\') - SKIP(211); + ADVANCE(208); + if (lookahead == ']') + ADVANCE(42); if (lookahead == '`') ADVANCE(46); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '}') + ADVANCE(42); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(210); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + SKIP(207); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(56); END_STATE(); - case 211: + case 208: if (lookahead == '\n') - SKIP(210); + SKIP(207); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); - case 212: + case 209: if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); if (lookahead == '\\') - SKIP(213); + SKIP(210); if (lookahead == ']') ADVANCE(44); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(212); + SKIP(209); END_STATE(); - case 213: + case 210: if (lookahead == '\n') - SKIP(212); + SKIP(209); END_STATE(); - case 214: + case 211: if (lookahead == '\"') - ADVANCE(4); + ADVANCE(3); if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); if (lookahead == '$') - ADVANCE(6); + ADVANCE(5); if (lookahead == '&') - ADVANCE(120); + ADVANCE(53); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(13); if (lookahead == '(') - ADVANCE(16); + ADVANCE(15); if (lookahead == '<') - ADVANCE(121); + ADVANCE(54); if (lookahead == '>') ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); if (lookahead == '\\') - SKIP(215); + ADVANCE(212); + if (lookahead == ']') + ADVANCE(42); if (lookahead == '`') ADVANCE(46); if (lookahead == 'c') - ADVANCE(47); + ADVANCE(58); if (lookahead == 'd') - ADVANCE(51); + ADVANCE(213); if (lookahead == 'e') - ADVANCE(124); - if (lookahead == 'f') - ADVANCE(125); - if (lookahead == 'i') - ADVANCE(86); - if (lookahead == 'l') - ADVANCE(88); - if (lookahead == 'r') - ADVANCE(93); - if (lookahead == 't') - ADVANCE(101); - if (lookahead == 'w') - ADVANCE(108); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(214); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 215: - if (lookahead == '\n') - SKIP(214); - END_STATE(); - case 216: - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(120); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '(') - ADVANCE(16); - if (lookahead == '<') - ADVANCE(121); - if (lookahead == '>') - ADVANCE(36); - if (lookahead == '\\') - SKIP(217); - if (lookahead == '`') - ADVANCE(46); - if (lookahead == 'c') - ADVANCE(47); - if (lookahead == 'd') - ADVANCE(123); - if (lookahead == 'e') - ADVANCE(218); + ADVANCE(69); if (lookahead == 'f') ADVANCE(75); if (lookahead == 'i') - ADVANCE(86); + ADVANCE(85); if (lookahead == 'l') - ADVANCE(88); + ADVANCE(87); if (lookahead == 'r') - ADVANCE(93); + ADVANCE(92); if (lookahead == 't') - ADVANCE(101); + ADVANCE(100); if (lookahead == 'w') - ADVANCE(108); + ADVANCE(107); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '}') + ADVANCE(42); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(216); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + SKIP(211); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(56); + END_STATE(); + case 212: + if (lookahead == '\n') + SKIP(211); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); + END_STATE(); + case 213: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'e') + ADVANCE(63); + if (lookahead == 'o') + ADVANCE(214); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 214: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'n') + ADVANCE(215); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 215: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'e') + ADVANCE(216); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 216: + ACCEPT_TOKEN(anon_sym_done); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); END_STATE(); case 217: - if (lookahead == '\n') - SKIP(216); - END_STATE(); - case 218: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') - ADVANCE(62); - if (lookahead == 'x') - ADVANCE(70); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 219: - if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '&') - ADVANCE(10); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '<') - ADVANCE(220); - if (lookahead == '>') - ADVANCE(206); - if (lookahead == '\\') - SKIP(221); - if (lookahead == '|') - ADVANCE(114); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(219); - END_STATE(); - case 220: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') - ADVANCE(31); - END_STATE(); - case 221: - if (lookahead == '\n') - SKIP(219); - END_STATE(); - case 222: if (lookahead == '\"') - ADVANCE(4); + ADVANCE(3); if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); if (lookahead == '$') - ADVANCE(6); + ADVANCE(5); if (lookahead == '&') - ADVANCE(120); + ADVANCE(53); if (lookahead == '\'') - ADVANCE(14); + ADVANCE(13); if (lookahead == '(') - ADVANCE(16); - if (lookahead == ')') - ADVANCE(17); + ADVANCE(15); if (lookahead == '<') - ADVANCE(121); + ADVANCE(54); if (lookahead == '>') ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); if (lookahead == '\\') - SKIP(223); + ADVANCE(218); + if (lookahead == ']') + ADVANCE(42); if (lookahead == '`') ADVANCE(46); if (lookahead == 'c') - ADVANCE(47); + ADVANCE(58); if (lookahead == 'd') - ADVANCE(123); + ADVANCE(62); if (lookahead == 'e') - ADVANCE(124); + ADVANCE(219); if (lookahead == 'f') - ADVANCE(125); + ADVANCE(225); if (lookahead == 'i') - ADVANCE(86); + ADVANCE(85); if (lookahead == 'l') - ADVANCE(88); + ADVANCE(87); if (lookahead == 'r') - ADVANCE(93); + ADVANCE(92); if (lookahead == 't') - ADVANCE(101); + ADVANCE(100); if (lookahead == 'w') - ADVANCE(108); + ADVANCE(107); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '}') + ADVANCE(42); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(222); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + SKIP(217); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(56); + END_STATE(); + case 218: + if (lookahead == '\n') + SKIP(217); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); + END_STATE(); + case 219: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'l') + ADVANCE(220); + if (lookahead == 'x') + ADVANCE(70); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 220: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'i') + ADVANCE(221); + if (lookahead == 's') + 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(56); + END_STATE(); + case 221: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'f') + ADVANCE(222); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 222: + ACCEPT_TOKEN(anon_sym_elif); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); END_STATE(); case 223: - if (lookahead == '\n') - SKIP(222); + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'e') + ADVANCE(224); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); END_STATE(); case 224: - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '<') - ADVANCE(148); - if (lookahead == '>') - ADVANCE(149); + ACCEPT_TOKEN(anon_sym_else); if (lookahead == '\\') - SKIP(225); - if (lookahead == '`') - ADVANCE(46); - if (lookahead == '}') - ADVANCE(117); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(224); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + ADVANCE(57); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); END_STATE(); case 225: - if (lookahead == '\n') - SKIP(224); + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'i') + ADVANCE(226); + if (lookahead == 'o') + ADVANCE(76); + if (lookahead == 'u') + ADVANCE(78); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); END_STATE(); case 226: - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '&') - ADVANCE(129); - if (lookahead == ')') - ADVANCE(17); + ACCEPT_TOKEN(anon_sym_fi); if (lookahead == '\\') - SKIP(227); - if (lookahead == '`') - ADVANCE(46); - if (lookahead == '|') - ADVANCE(114); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(226); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + ADVANCE(57); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); END_STATE(); case 227: - if (lookahead == '\n') - SKIP(226); - END_STATE(); - case 228: + if (lookahead == '\"') + ADVANCE(3); if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); + if (lookahead == '$') + ADVANCE(5); if (lookahead == '&') - ADVANCE(186); - if (lookahead == ')') - ADVANCE(17); + ADVANCE(53); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == '(') + ADVANCE(15); if (lookahead == '<') - ADVANCE(205); + ADVANCE(54); if (lookahead == '>') - ADVANCE(206); + ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); if (lookahead == '\\') - SKIP(229); + ADVANCE(228); + if (lookahead == ']') + ADVANCE(42); if (lookahead == '`') ADVANCE(46); - if (lookahead == '|') - ADVANCE(114); + if (lookahead == 'c') + ADVANCE(58); + if (lookahead == 'd') + ADVANCE(62); + if (lookahead == 'e') + ADVANCE(69); + if (lookahead == 'f') + ADVANCE(75); + if (lookahead == 'i') + ADVANCE(85); + if (lookahead == 'l') + ADVANCE(87); + if (lookahead == 'r') + ADVANCE(92); + if (lookahead == 't') + ADVANCE(100); + if (lookahead == 'w') + ADVANCE(107); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '}') + ADVANCE(50); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(228); + SKIP(227); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(56); + END_STATE(); + case 228: + if (lookahead == '\n') + SKIP(227); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); case 229: if (lookahead == '\n') - SKIP(228); - END_STATE(); - case 230: + ADVANCE(2); if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); if (lookahead == '&') - ADVANCE(186); - if (lookahead == ')') - ADVANCE(17); + ADVANCE(9); + if (lookahead == ';') + ADVANCE(27); if (lookahead == '<') - ADVANCE(205); + ADVANCE(230); if (lookahead == '>') - ADVANCE(206); + ADVANCE(203); if (lookahead == '\\') SKIP(231); if (lookahead == '|') - ADVANCE(114); + ADVANCE(47); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(230); + SKIP(229); + END_STATE(); + case 230: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') + ADVANCE(30); END_STATE(); case 231: if (lookahead == '\n') - SKIP(230); + SKIP(229); END_STATE(); case 232: + if (lookahead == '\"') + ADVANCE(3); if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); + if (lookahead == '$') + ADVANCE(5); if (lookahead == '&') - ADVANCE(186); + ADVANCE(53); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == '(') + ADVANCE(15); + if (lookahead == ')') + ADVANCE(16); if (lookahead == '<') - ADVANCE(205); + ADVANCE(54); if (lookahead == '>') - ADVANCE(206); + ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); if (lookahead == '\\') - SKIP(233); + ADVANCE(233); + if (lookahead == ']') + ADVANCE(42); if (lookahead == '`') ADVANCE(46); - if (lookahead == '|') - ADVANCE(114); + if (lookahead == 'c') + ADVANCE(58); + if (lookahead == 'd') + ADVANCE(62); + if (lookahead == 'e') + ADVANCE(69); + if (lookahead == 'f') + ADVANCE(75); + if (lookahead == 'i') + ADVANCE(85); + if (lookahead == 'l') + ADVANCE(87); + if (lookahead == 'r') + ADVANCE(92); + if (lookahead == 't') + ADVANCE(100); + if (lookahead == 'w') + ADVANCE(107); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '}') + ADVANCE(42); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(232); + if (lookahead != 0 && + lookahead != ';' && + lookahead != '<') + ADVANCE(56); END_STATE(); case 233: if (lookahead == '\n') SKIP(232); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); case 234: - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '$') - ADVANCE(235); - if (lookahead == '\\') - SKIP(236); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(234); - END_STATE(); - case 235: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '{') - ADVANCE(8); - END_STATE(); - case 236: - if (lookahead == '\n') - SKIP(234); - END_STATE(); - case 237: - if (lookahead == '#') - ADVANCE(119); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == '\\') - SKIP(238); - if (lookahead == ']') - ADVANCE(44); - if (lookahead == '|') - ADVANCE(239); - if (lookahead == '}') - ADVANCE(117); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(237); - END_STATE(); - case 238: - if (lookahead == '\n') - SKIP(237); - END_STATE(); - case 239: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 240: - if (lookahead == '\n') - ADVANCE(2); if (lookahead == '\"') - ADVANCE(4); + ADVANCE(3); if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(179); + ADVANCE(5); if (lookahead == '\'') - ADVANCE(14); - if (lookahead == ';') - ADVANCE(28); + ADVANCE(13); if (lookahead == '<') - ADVANCE(148); + ADVANCE(170); if (lookahead == '>') - ADVANCE(149); + ADVANCE(171); + if (lookahead == '[') + ADVANCE(42); if (lookahead == '\\') - SKIP(241); + ADVANCE(235); + if (lookahead == ']') + ADVANCE(42); if (lookahead == '`') ADVANCE(46); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '}') + ADVANCE(50); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(240); + SKIP(234); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(56); + END_STATE(); + case 235: + if (lookahead == '\n') + SKIP(234); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); + END_STATE(); + case 236: + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '&') + ADVANCE(113); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == '\\') + ADVANCE(237); + if (lookahead == '`') + ADVANCE(46); + if (lookahead == '|') + ADVANCE(141); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(236); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); + ADVANCE(143); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < 'A' || lookahead > ']') && + (lookahead < '_' || lookahead > '}')) + ADVANCE(56); + END_STATE(); + case 237: + if (lookahead == '\n') + SKIP(236); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); + END_STATE(); + case 238: + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '&') + ADVANCE(185); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(202); + if (lookahead == '>') + ADVANCE(203); + if (lookahead == '\\') + SKIP(239); + if (lookahead == '`') + ADVANCE(46); + if (lookahead == '|') + ADVANCE(47); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(238); + END_STATE(); + case 239: + if (lookahead == '\n') + SKIP(238); + END_STATE(); + case 240: + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '&') + ADVANCE(185); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(202); + if (lookahead == '>') + ADVANCE(203); + if (lookahead == '\\') + SKIP(241); + if (lookahead == '|') + ADVANCE(47); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(240); END_STATE(); case 241: if (lookahead == '\n') SKIP(240); END_STATE(); case 242: - if (lookahead == '\"') - ADVANCE(4); if (lookahead == '#') - ADVANCE(119); - if (lookahead == '$') - ADVANCE(6); + ADVANCE(52); if (lookahead == '&') - ADVANCE(120); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '(') - ADVANCE(16); + ADVANCE(185); if (lookahead == '<') - ADVANCE(121); + ADVANCE(202); if (lookahead == '>') - ADVANCE(36); + ADVANCE(203); if (lookahead == '\\') SKIP(243); if (lookahead == '`') ADVANCE(46); - if (lookahead == 'c') + if (lookahead == '|') ADVANCE(47); - if (lookahead == 'd') - ADVANCE(123); - if (lookahead == 'e') - ADVANCE(124); - if (lookahead == 'f') - ADVANCE(75); - if (lookahead == 'i') - ADVANCE(86); - if (lookahead == 'l') - ADVANCE(88); - if (lookahead == 'r') - ADVANCE(93); - if (lookahead == 't') - ADVANCE(101); - if (lookahead == 'w') - ADVANCE(108); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(242); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); END_STATE(); case 243: if (lookahead == '\n') SKIP(242); END_STATE(); case 244: - if (lookahead == '\"') - ADVANCE(4); if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); if (lookahead == '$') - ADVANCE(6); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '<') - ADVANCE(148); - if (lookahead == '>') - ADVANCE(149); + ADVANCE(245); if (lookahead == '\\') - SKIP(245); - if (lookahead == '`') - ADVANCE(46); - if (lookahead == 'e') - ADVANCE(246); + SKIP(246); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(244); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); END_STATE(); case 245: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '{') + ADVANCE(7); + END_STATE(); + case 246: if (lookahead == '\n') SKIP(244); END_STATE(); - case 246: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') - ADVANCE(67); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); case 247: - if (lookahead == '\n') - ADVANCE(2); + if (lookahead == '\"') + ADVANCE(3); if (lookahead == '#') - ADVANCE(119); - if (lookahead == '&') - ADVANCE(10); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(28); + ADVANCE(52); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '\'') + ADVANCE(13); if (lookahead == '<') - ADVANCE(220); + ADVANCE(170); if (lookahead == '>') - ADVANCE(206); + ADVANCE(171); + if (lookahead == '[') + ADVANCE(42); if (lookahead == '\\') - SKIP(248); - if (lookahead == '|') - ADVANCE(114); + ADVANCE(248); + if (lookahead == ']') + ADVANCE(44); + if (lookahead == '`') + ADVANCE(46); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '}') + ADVANCE(42); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(247); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(56); END_STATE(); case 248: if (lookahead == '\n') SKIP(247); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); case 249: if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); + if (lookahead == '+') + ADVANCE(18); + if (lookahead == '=') + ADVANCE(35); if (lookahead == '\\') SKIP(250); - if (lookahead == '}') - ADVANCE(117); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -3555,270 +4771,488 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(249); END_STATE(); case 251: + if (lookahead == '\n') + ADVANCE(2); + if (lookahead == '\"') + ADVANCE(3); if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); + if (lookahead == '$') + ADVANCE(5); if (lookahead == '&') - ADVANCE(186); - if (lookahead == ')') - ADVANCE(17); + ADVANCE(176); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == ';') + ADVANCE(27); if (lookahead == '<') - ADVANCE(220); + ADVANCE(170); if (lookahead == '>') - ADVANCE(206); + ADVANCE(171); + if (lookahead == '[') + ADVANCE(42); if (lookahead == '\\') - SKIP(252); - if (lookahead == '|') - ADVANCE(114); + ADVANCE(252); + if (lookahead == ']') + ADVANCE(42); + if (lookahead == '`') + ADVANCE(46); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '}') + ADVANCE(42); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(251); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')')) + ADVANCE(56); END_STATE(); case 252: if (lookahead == '\n') SKIP(251); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); case 253: + if (lookahead == '\"') + ADVANCE(3); if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); + if (lookahead == '$') + ADVANCE(5); if (lookahead == '&') - ADVANCE(186); + ADVANCE(53); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == '(') + ADVANCE(15); if (lookahead == '<') - ADVANCE(220); + ADVANCE(54); if (lookahead == '>') - ADVANCE(206); + ADVANCE(36); + if (lookahead == '[') + ADVANCE(42); if (lookahead == '\\') - SKIP(254); + ADVANCE(254); + if (lookahead == ']') + ADVANCE(42); if (lookahead == '`') ADVANCE(46); - if (lookahead == '|') - ADVANCE(114); + if (lookahead == 'c') + ADVANCE(58); + if (lookahead == 'd') + ADVANCE(62); + if (lookahead == 'e') + ADVANCE(69); + if (lookahead == 'f') + ADVANCE(225); + if (lookahead == 'i') + ADVANCE(85); + if (lookahead == 'l') + ADVANCE(87); + if (lookahead == 'r') + ADVANCE(92); + if (lookahead == 't') + ADVANCE(100); + if (lookahead == 'w') + ADVANCE(107); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '}') + ADVANCE(42); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(253); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(56); END_STATE(); case 254: if (lookahead == '\n') SKIP(253); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); case 255: + if (lookahead == '\"') + ADVANCE(3); if (lookahead == '#') - ADVANCE(119); - if (lookahead == ')') - ADVANCE(17); + ADVANCE(52); + if (lookahead == '$') + ADVANCE(5); + if (lookahead == '\'') + ADVANCE(13); + if (lookahead == '<') + ADVANCE(170); + if (lookahead == '>') + ADVANCE(171); + if (lookahead == '[') + ADVANCE(42); if (lookahead == '\\') - SKIP(256); - if (lookahead == '|') - ADVANCE(239); + ADVANCE(256); + if (lookahead == ']') + ADVANCE(42); + if (lookahead == '`') + ADVANCE(46); + if (lookahead == 'e') + ADVANCE(257); + if (lookahead == '{') + ADVANCE(42); + if (lookahead == '}') + ADVANCE(42); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(255); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(56); END_STATE(); case 256: if (lookahead == '\n') SKIP(255); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(56); END_STATE(); case 257: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 's') + ADVANCE(258); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 258: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'a') + ADVANCE(259); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != 'a' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 259: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead == 'c') + ADVANCE(260); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 260: + ACCEPT_TOKEN(anon_sym_esac); + if (lookahead == '\\') + ADVANCE(57); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + lookahead != '{' && + lookahead != '}') + ADVANCE(56); + END_STATE(); + case 261: if (lookahead == '\n') ADVANCE(2); if (lookahead == '#') - ADVANCE(119); + ADVANCE(52); if (lookahead == '&') - ADVANCE(152); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '\\') - SKIP(258); - if (lookahead == '|') - ADVANCE(114); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(257); - END_STATE(); - case 258: - if (lookahead == '\n') - SKIP(257); - END_STATE(); - case 259: - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '&') - ADVANCE(186); + ADVANCE(9); if (lookahead == ')') - ADVANCE(17); - if (lookahead == '<') - ADVANCE(220); - if (lookahead == '>') - ADVANCE(206); - if (lookahead == '\\') - SKIP(260); - if (lookahead == '`') - ADVANCE(46); - if (lookahead == '|') - ADVANCE(114); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(259); - END_STATE(); - case 260: - if (lookahead == '\n') - SKIP(259); - END_STATE(); - case 261: - if (lookahead == '\"') - ADVANCE(4); - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '$') - ADVANCE(6); - if (lookahead == '&') - ADVANCE(120); - if (lookahead == '\'') - ADVANCE(14); - if (lookahead == '(') ADVANCE(16); if (lookahead == ';') - ADVANCE(262); + ADVANCE(27); if (lookahead == '<') - ADVANCE(121); + ADVANCE(230); if (lookahead == '>') - ADVANCE(36); + ADVANCE(203); if (lookahead == '\\') - SKIP(263); - if (lookahead == '`') - ADVANCE(46); - if (lookahead == 'c') + SKIP(262); + if (lookahead == '|') ADVANCE(47); - if (lookahead == 'd') - ADVANCE(123); - if (lookahead == 'e') - ADVANCE(124); - if (lookahead == 'f') - ADVANCE(125); - if (lookahead == 'i') - ADVANCE(86); - if (lookahead == 'l') - ADVANCE(88); - if (lookahead == 'r') - ADVANCE(93); - if (lookahead == 't') - ADVANCE(101); - if (lookahead == 'w') - ADVANCE(108); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(261); + END_STATE(); + case 262: + if (lookahead == '\n') + SKIP(261); + END_STATE(); + case 263: + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '\\') + SKIP(264); + if (lookahead == '}') + ADVANCE(50); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(261); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(24); - END_STATE(); - case 262: - if (lookahead == ';') - ADVANCE(29); - END_STATE(); - case 263: - if (lookahead == '\n') - SKIP(261); + SKIP(263); END_STATE(); case 264: if (lookahead == '\n') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '&') - ADVANCE(152); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == ';') - ADVANCE(28); - if (lookahead == '\\') - SKIP(265); - if (lookahead == '|') - ADVANCE(114); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - SKIP(264); + SKIP(263); END_STATE(); case 265: - if (lookahead == '\n') - SKIP(264); + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '&') + ADVANCE(185); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(230); + if (lookahead == '>') + ADVANCE(203); + if (lookahead == '\\') + SKIP(266); + if (lookahead == '|') + ADVANCE(47); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(265); END_STATE(); case 266: - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '&') - ADVANCE(129); - if (lookahead == ')') - ADVANCE(17); - if (lookahead == '\\') - SKIP(267); - if (lookahead == '|') - ADVANCE(114); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(266); + if (lookahead == '\n') + SKIP(265); END_STATE(); case 267: - if (lookahead == '\n') - SKIP(266); + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '&') + ADVANCE(185); + if (lookahead == '<') + ADVANCE(230); + if (lookahead == '>') + ADVANCE(203); + if (lookahead == '\\') + SKIP(268); + if (lookahead == '`') + ADVANCE(46); + if (lookahead == '|') + ADVANCE(47); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(267); END_STATE(); case 268: - if (lookahead == '#') - ADVANCE(119); - if (lookahead == '&') - ADVANCE(129); - if (lookahead == '\\') - SKIP(269); - if (lookahead == '`') - ADVANCE(46); - if (lookahead == '|') - ADVANCE(114); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(268); + if (lookahead == '\n') + SKIP(267); END_STATE(); case 269: - if (lookahead == '\n') - SKIP(268); - END_STATE(); - case 270: if (lookahead == '#') - ADVANCE(119); - if (lookahead == '&') - ADVANCE(129); + ADVANCE(52); if (lookahead == ')') - ADVANCE(17); + ADVANCE(16); if (lookahead == '\\') - SKIP(271); - if (lookahead == '`') - ADVANCE(46); + SKIP(270); if (lookahead == '|') - ADVANCE(114); + ADVANCE(135); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(270); + SKIP(269); + END_STATE(); + case 270: + if (lookahead == '\n') + SKIP(269); END_STATE(); case 271: if (lookahead == '\n') - SKIP(270); + ADVANCE(2); + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '&') + ADVANCE(139); + if (lookahead == ';') + ADVANCE(27); + if (lookahead == '\\') + SKIP(272); + if (lookahead == '|') + ADVANCE(47); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + SKIP(271); + END_STATE(); + case 272: + if (lookahead == '\n') + SKIP(271); + END_STATE(); + case 273: + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '%') + ADVANCE(8); + if (lookahead == '-') + ADVANCE(20); + if (lookahead == '/') + ADVANCE(21); + if (lookahead == ':') + ADVANCE(24); + if (lookahead == '=') + ADVANCE(35); + if (lookahead == '\\') + SKIP(274); + if (lookahead == '}') + ADVANCE(50); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(273); + END_STATE(); + case 274: + if (lookahead == '\n') + SKIP(273); + END_STATE(); + case 275: + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '&') + ADVANCE(185); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == '<') + ADVANCE(230); + if (lookahead == '>') + ADVANCE(203); + if (lookahead == '\\') + SKIP(276); + if (lookahead == '`') + ADVANCE(46); + if (lookahead == '|') + ADVANCE(47); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(275); + END_STATE(); + case 276: + if (lookahead == '\n') + SKIP(275); + END_STATE(); + case 277: + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '&') + ADVANCE(113); + if (lookahead == ')') + ADVANCE(16); + if (lookahead == '\\') + SKIP(278); + if (lookahead == '|') + ADVANCE(47); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(277); + END_STATE(); + case 278: + if (lookahead == '\n') + SKIP(277); + END_STATE(); + case 279: + if (lookahead == '#') + ADVANCE(52); + if (lookahead == '&') + ADVANCE(113); + if (lookahead == '\\') + SKIP(280); + if (lookahead == '`') + ADVANCE(46); + if (lookahead == '|') + ADVANCE(47); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(279); + END_STATE(); + case 280: + if (lookahead == '\n') + SKIP(279); END_STATE(); default: return false; @@ -3827,1722 +5261,2796 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 118, .external_lex_state = 2}, - [2] = {.lex_state = 118}, - [3] = {.lex_state = 126, .external_lex_state = 3}, - [4] = {.lex_state = 128}, - [5] = {.lex_state = 147}, - [6] = {.lex_state = 118, .external_lex_state = 2}, - [7] = {.lex_state = 118, .external_lex_state = 2}, - [8] = {.lex_state = 147, .external_lex_state = 4}, - [9] = {.lex_state = 147}, - [10] = {.lex_state = 118, .external_lex_state = 2}, - [11] = {.lex_state = 151, .external_lex_state = 5}, - [12] = {.lex_state = 147, .external_lex_state = 4}, - [13] = {.lex_state = 154}, - [14] = {.lex_state = 161}, - [15] = {.lex_state = 161}, - [16] = {.lex_state = 118, .external_lex_state = 2}, - [17] = {.lex_state = 118, .external_lex_state = 2}, - [18] = {.lex_state = 118, .external_lex_state = 2}, - [19] = {.lex_state = 164, .external_lex_state = 3}, - [20] = {.lex_state = 118}, - [21] = {.lex_state = 166, .external_lex_state = 6}, - [22] = {.lex_state = 151, .external_lex_state = 7}, - [23] = {.lex_state = 126, .external_lex_state = 8}, - [24] = {.lex_state = 168, .external_lex_state = 9}, - [25] = {.lex_state = 128}, - [26] = {.lex_state = 170, .external_lex_state = 2}, - [27] = {.lex_state = 172, .external_lex_state = 8}, - [28] = {.lex_state = 118, .external_lex_state = 2}, - [29] = {.lex_state = 170, .external_lex_state = 2}, - [30] = {.lex_state = 147, .external_lex_state = 4}, - [31] = {.lex_state = 147, .external_lex_state = 4}, - [32] = {.lex_state = 126, .external_lex_state = 3}, - [33] = {.lex_state = 174, .external_lex_state = 10}, - [34] = {.lex_state = 147, .external_lex_state = 4}, - [35] = {.lex_state = 176, .external_lex_state = 9}, - [36] = {.lex_state = 128}, - [37] = {.lex_state = 128}, - [38] = {.lex_state = 151, .external_lex_state = 7}, - [39] = {.lex_state = 168, .external_lex_state = 9}, - [40] = {.lex_state = 128}, - [41] = {.lex_state = 178, .external_lex_state = 11}, - [42] = {.lex_state = 154}, - [43] = {.lex_state = 161}, - [44] = {.lex_state = 161}, - [45] = {.lex_state = 118, .external_lex_state = 2}, - [46] = {.lex_state = 118, .external_lex_state = 2}, - [47] = {.lex_state = 118, .external_lex_state = 2}, - [48] = {.lex_state = 178, .external_lex_state = 11}, - [49] = {.lex_state = 178, .external_lex_state = 7}, - [50] = {.lex_state = 128}, - [51] = {.lex_state = 172, .external_lex_state = 3}, - [52] = {.lex_state = 128}, - [53] = {.lex_state = 147}, - [54] = {.lex_state = 181, .external_lex_state = 5}, - [55] = {.lex_state = 183, .external_lex_state = 3}, - [56] = {.lex_state = 181, .external_lex_state = 7}, - [57] = {.lex_state = 172, .external_lex_state = 8}, - [58] = {.lex_state = 176, .external_lex_state = 9}, - [59] = {.lex_state = 128}, - [60] = {.lex_state = 118, .external_lex_state = 2}, - [61] = {.lex_state = 170, .external_lex_state = 2}, - [62] = {.lex_state = 181, .external_lex_state = 5}, - [63] = {.lex_state = 128}, - [64] = {.lex_state = 181, .external_lex_state = 5}, - [65] = {.lex_state = 128}, - [66] = {.lex_state = 151, .external_lex_state = 5}, - [67] = {.lex_state = 170, .external_lex_state = 12}, - [68] = {.lex_state = 154}, - [69] = {.lex_state = 161}, - [70] = {.lex_state = 161}, - [71] = {.lex_state = 118, .external_lex_state = 2}, - [72] = {.lex_state = 118, .external_lex_state = 2}, - [73] = {.lex_state = 118, .external_lex_state = 2}, - [74] = {.lex_state = 170, .external_lex_state = 12}, - [75] = {.lex_state = 170, .external_lex_state = 2}, - [76] = {.lex_state = 172, .external_lex_state = 3}, - [77] = {.lex_state = 154}, - [78] = {.lex_state = 161}, - [79] = {.lex_state = 161}, - [80] = {.lex_state = 118, .external_lex_state = 2}, - [81] = {.lex_state = 118, .external_lex_state = 2}, - [82] = {.lex_state = 154}, - [83] = {.lex_state = 172, .external_lex_state = 3}, - [84] = {.lex_state = 172, .external_lex_state = 3}, - [85] = {.lex_state = 172, .external_lex_state = 3}, - [86] = {.lex_state = 128, .external_lex_state = 13}, - [87] = {.lex_state = 161, .external_lex_state = 13}, - [88] = {.lex_state = 128, .external_lex_state = 13}, - [89] = {.lex_state = 128, .external_lex_state = 13}, - [90] = {.lex_state = 185, .external_lex_state = 14}, - [91] = {.lex_state = 128}, - [92] = {.lex_state = 147}, - [93] = {.lex_state = 118, .external_lex_state = 2}, - [94] = {.lex_state = 118, .external_lex_state = 2}, - [95] = {.lex_state = 147, .external_lex_state = 4}, - [96] = {.lex_state = 147}, - [97] = {.lex_state = 118, .external_lex_state = 2}, - [98] = {.lex_state = 188, .external_lex_state = 15}, - [99] = {.lex_state = 154}, - [100] = {.lex_state = 161}, - [101] = {.lex_state = 161}, - [102] = {.lex_state = 118, .external_lex_state = 2}, - [103] = {.lex_state = 118, .external_lex_state = 2}, - [104] = {.lex_state = 118, .external_lex_state = 2}, - [105] = {.lex_state = 190, .external_lex_state = 14}, - [106] = {.lex_state = 128}, - [107] = {.lex_state = 185, .external_lex_state = 16}, - [108] = {.lex_state = 192, .external_lex_state = 2}, - [109] = {.lex_state = 128}, - [110] = {.lex_state = 185, .external_lex_state = 16}, - [111] = {.lex_state = 170, .external_lex_state = 2}, - [112] = {.lex_state = 194, .external_lex_state = 14}, - [113] = {.lex_state = 128}, - [114] = {.lex_state = 147}, - [115] = {.lex_state = 196, .external_lex_state = 15}, - [116] = {.lex_state = 198, .external_lex_state = 14}, - [117] = {.lex_state = 128}, - [118] = {.lex_state = 194, .external_lex_state = 16}, - [119] = {.lex_state = 200, .external_lex_state = 2}, - [120] = {.lex_state = 128}, - [121] = {.lex_state = 170, .external_lex_state = 2}, - [122] = {.lex_state = 128}, - [123] = {.lex_state = 192, .external_lex_state = 2}, - [124] = {.lex_state = 128}, - [125] = {.lex_state = 126, .external_lex_state = 3}, - [126] = {.lex_state = 118, .external_lex_state = 2}, - [127] = {.lex_state = 166, .external_lex_state = 6}, - [128] = {.lex_state = 118, .external_lex_state = 2}, - [129] = {.lex_state = 118}, - [130] = {.lex_state = 126, .external_lex_state = 3}, - [131] = {.lex_state = 147, .external_lex_state = 4}, - [132] = {.lex_state = 202, .external_lex_state = 17}, - [133] = {.lex_state = 126, .external_lex_state = 3}, - [134] = {.lex_state = 204, .external_lex_state = 18}, - [135] = {.lex_state = 172, .external_lex_state = 8}, - [136] = {.lex_state = 126, .external_lex_state = 8}, - [137] = {.lex_state = 208, .external_lex_state = 18}, - [138] = {.lex_state = 118, .external_lex_state = 2}, - [139] = {.lex_state = 128}, - [140] = {.lex_state = 126, .external_lex_state = 3}, - [141] = {.lex_state = 126, .external_lex_state = 8}, - [142] = {.lex_state = 128}, - [143] = {.lex_state = 170, .external_lex_state = 2}, - [144] = {.lex_state = 170, .external_lex_state = 12}, - [145] = {.lex_state = 170, .external_lex_state = 12}, - [146] = {.lex_state = 170, .external_lex_state = 2}, - [147] = {.lex_state = 172, .external_lex_state = 3}, - [148] = {.lex_state = 172, .external_lex_state = 3}, - [149] = {.lex_state = 126, .external_lex_state = 3}, - [150] = {.lex_state = 168, .external_lex_state = 19}, - [151] = {.lex_state = 176, .external_lex_state = 9}, - [152] = {.lex_state = 210, .external_lex_state = 4}, - [153] = {.lex_state = 154}, - [154] = {.lex_state = 161}, - [155] = {.lex_state = 161}, - [156] = {.lex_state = 118, .external_lex_state = 2}, - [157] = {.lex_state = 118, .external_lex_state = 2}, - [158] = {.lex_state = 118, .external_lex_state = 2}, - [159] = {.lex_state = 168, .external_lex_state = 19}, - [160] = {.lex_state = 212, .external_lex_state = 20}, - [161] = {.lex_state = 154}, - [162] = {.lex_state = 161}, - [163] = {.lex_state = 161}, - [164] = {.lex_state = 118, .external_lex_state = 2}, - [165] = {.lex_state = 118, .external_lex_state = 2}, - [166] = {.lex_state = 118, .external_lex_state = 2}, - [167] = {.lex_state = 212, .external_lex_state = 20}, - [168] = {.lex_state = 128, .external_lex_state = 21}, - [169] = {.lex_state = 147, .external_lex_state = 4}, - [170] = {.lex_state = 214, .external_lex_state = 2}, - [171] = {.lex_state = 181, .external_lex_state = 7}, - [172] = {.lex_state = 128}, - [173] = {.lex_state = 216, .external_lex_state = 2}, - [174] = {.lex_state = 147, .external_lex_state = 4}, - [175] = {.lex_state = 178, .external_lex_state = 7}, - [176] = {.lex_state = 128}, - [177] = {.lex_state = 178, .external_lex_state = 11}, - [178] = {.lex_state = 178, .external_lex_state = 11}, - [179] = {.lex_state = 154}, - [180] = {.lex_state = 178, .external_lex_state = 11}, - [181] = {.lex_state = 178, .external_lex_state = 11}, - [182] = {.lex_state = 178, .external_lex_state = 11}, - [183] = {.lex_state = 161, .external_lex_state = 13}, - [184] = {.lex_state = 128, .external_lex_state = 13}, - [185] = {.lex_state = 128, .external_lex_state = 13}, - [186] = {.lex_state = 128}, - [187] = {.lex_state = 192, .external_lex_state = 2}, - [188] = {.lex_state = 128}, - [189] = {.lex_state = 200, .external_lex_state = 2}, - [190] = {.lex_state = 128}, - [191] = {.lex_state = 192, .external_lex_state = 2}, - [192] = {.lex_state = 178, .external_lex_state = 7}, - [193] = {.lex_state = 128}, - [194] = {.lex_state = 178, .external_lex_state = 11}, - [195] = {.lex_state = 128}, - [196] = {.lex_state = 166, .external_lex_state = 6}, - [197] = {.lex_state = 219, .external_lex_state = 18}, - [198] = {.lex_state = 172, .external_lex_state = 3}, - [199] = {.lex_state = 174, .external_lex_state = 10}, - [200] = {.lex_state = 128}, - [201] = {.lex_state = 128}, - [202] = {.lex_state = 128}, - [203] = {.lex_state = 181, .external_lex_state = 5}, - [204] = {.lex_state = 128}, - [205] = {.lex_state = 172, .external_lex_state = 3}, - [206] = {.lex_state = 118, .external_lex_state = 2}, - [207] = {.lex_state = 181, .external_lex_state = 7}, - [208] = {.lex_state = 222, .external_lex_state = 2}, - [209] = {.lex_state = 118, .external_lex_state = 2}, - [210] = {.lex_state = 118}, - [211] = {.lex_state = 172, .external_lex_state = 3}, - [212] = {.lex_state = 147, .external_lex_state = 4}, - [213] = {.lex_state = 172, .external_lex_state = 3}, - [214] = {.lex_state = 172, .external_lex_state = 8}, - [215] = {.lex_state = 204, .external_lex_state = 18}, - [216] = {.lex_state = 181, .external_lex_state = 7}, - [217] = {.lex_state = 176, .external_lex_state = 9}, - [218] = {.lex_state = 118, .external_lex_state = 2}, - [219] = {.lex_state = 172, .external_lex_state = 3}, - [220] = {.lex_state = 172, .external_lex_state = 8}, - [221] = {.lex_state = 174, .external_lex_state = 10}, - [222] = {.lex_state = 181, .external_lex_state = 5}, - [223] = {.lex_state = 151, .external_lex_state = 5}, - [224] = {.lex_state = 147, .external_lex_state = 4}, - [225] = {.lex_state = 170, .external_lex_state = 12}, - [226] = {.lex_state = 170, .external_lex_state = 12}, - [227] = {.lex_state = 154}, - [228] = {.lex_state = 170, .external_lex_state = 12}, - [229] = {.lex_state = 170, .external_lex_state = 12}, - [230] = {.lex_state = 170, .external_lex_state = 12}, - [231] = {.lex_state = 161, .external_lex_state = 13}, - [232] = {.lex_state = 128, .external_lex_state = 13}, - [233] = {.lex_state = 128, .external_lex_state = 13}, - [234] = {.lex_state = 128}, - [235] = {.lex_state = 192, .external_lex_state = 2}, - [236] = {.lex_state = 128}, - [237] = {.lex_state = 200, .external_lex_state = 2}, - [238] = {.lex_state = 128}, - [239] = {.lex_state = 192, .external_lex_state = 2}, - [240] = {.lex_state = 170, .external_lex_state = 12}, - [241] = {.lex_state = 154}, - [242] = {.lex_state = 154}, - [243] = {.lex_state = 154}, - [244] = {.lex_state = 161, .external_lex_state = 13}, - [245] = {.lex_state = 128, .external_lex_state = 13}, - [246] = {.lex_state = 128, .external_lex_state = 13}, - [247] = {.lex_state = 128}, - [248] = {.lex_state = 192, .external_lex_state = 2}, - [249] = {.lex_state = 128}, - [250] = {.lex_state = 200, .external_lex_state = 2}, - [251] = {.lex_state = 172, .external_lex_state = 3}, - [252] = {.lex_state = 154}, - [253] = {.lex_state = 128, .external_lex_state = 13}, - [254] = {.lex_state = 128, .external_lex_state = 13}, - [255] = {.lex_state = 172, .external_lex_state = 3}, - [256] = {.lex_state = 224, .external_lex_state = 22}, - [257] = {.lex_state = 128}, - [258] = {.lex_state = 172, .external_lex_state = 3}, - [259] = {.lex_state = 224, .external_lex_state = 22}, - [260] = {.lex_state = 128}, - [261] = {.lex_state = 147, .external_lex_state = 4}, - [262] = {.lex_state = 185, .external_lex_state = 14}, - [263] = {.lex_state = 174, .external_lex_state = 10}, - [264] = {.lex_state = 192, .external_lex_state = 2}, - [265] = {.lex_state = 128}, - [266] = {.lex_state = 128}, - [267] = {.lex_state = 128}, - [268] = {.lex_state = 178, .external_lex_state = 11}, - [269] = {.lex_state = 178, .external_lex_state = 11}, - [270] = {.lex_state = 178, .external_lex_state = 7}, - [271] = {.lex_state = 128}, - [272] = {.lex_state = 181, .external_lex_state = 7}, - [273] = {.lex_state = 176, .external_lex_state = 9}, - [274] = {.lex_state = 118, .external_lex_state = 2}, - [275] = {.lex_state = 226, .external_lex_state = 15}, - [276] = {.lex_state = 128}, - [277] = {.lex_state = 226, .external_lex_state = 15}, - [278] = {.lex_state = 128}, - [279] = {.lex_state = 188, .external_lex_state = 15}, - [280] = {.lex_state = 185, .external_lex_state = 14}, - [281] = {.lex_state = 154}, - [282] = {.lex_state = 185, .external_lex_state = 14}, - [283] = {.lex_state = 185, .external_lex_state = 14}, - [284] = {.lex_state = 185, .external_lex_state = 14}, - [285] = {.lex_state = 161, .external_lex_state = 13}, - [286] = {.lex_state = 128, .external_lex_state = 13}, - [287] = {.lex_state = 128, .external_lex_state = 13}, - [288] = {.lex_state = 128}, - [289] = {.lex_state = 192, .external_lex_state = 2}, - [290] = {.lex_state = 128}, - [291] = {.lex_state = 200, .external_lex_state = 2}, - [292] = {.lex_state = 128}, - [293] = {.lex_state = 192, .external_lex_state = 2}, - [294] = {.lex_state = 128}, - [295] = {.lex_state = 185, .external_lex_state = 14}, - [296] = {.lex_state = 118, .external_lex_state = 2}, - [297] = {.lex_state = 172, .external_lex_state = 3}, - [298] = {.lex_state = 118, .external_lex_state = 2}, - [299] = {.lex_state = 118}, - [300] = {.lex_state = 185, .external_lex_state = 14}, - [301] = {.lex_state = 147, .external_lex_state = 4}, - [302] = {.lex_state = 202, .external_lex_state = 17}, - [303] = {.lex_state = 185, .external_lex_state = 14}, - [304] = {.lex_state = 228, .external_lex_state = 23}, - [305] = {.lex_state = 185, .external_lex_state = 16}, - [306] = {.lex_state = 185, .external_lex_state = 16}, - [307] = {.lex_state = 230, .external_lex_state = 23}, - [308] = {.lex_state = 185, .external_lex_state = 14}, - [309] = {.lex_state = 185, .external_lex_state = 16}, - [310] = {.lex_state = 194, .external_lex_state = 14}, - [311] = {.lex_state = 174, .external_lex_state = 10}, - [312] = {.lex_state = 128}, - [313] = {.lex_state = 128}, - [314] = {.lex_state = 128}, - [315] = {.lex_state = 196, .external_lex_state = 15}, - [316] = {.lex_state = 128}, - [317] = {.lex_state = 194, .external_lex_state = 14}, - [318] = {.lex_state = 118, .external_lex_state = 2}, - [319] = {.lex_state = 118, .external_lex_state = 2}, - [320] = {.lex_state = 118}, - [321] = {.lex_state = 194, .external_lex_state = 14}, - [322] = {.lex_state = 147, .external_lex_state = 4}, - [323] = {.lex_state = 194, .external_lex_state = 14}, - [324] = {.lex_state = 194, .external_lex_state = 16}, - [325] = {.lex_state = 232, .external_lex_state = 23}, - [326] = {.lex_state = 194, .external_lex_state = 14}, - [327] = {.lex_state = 194, .external_lex_state = 16}, - [328] = {.lex_state = 172, .external_lex_state = 3}, - [329] = {.lex_state = 128}, - [330] = {.lex_state = 181, .external_lex_state = 7}, - [331] = {.lex_state = 176, .external_lex_state = 9}, - [332] = {.lex_state = 151, .external_lex_state = 7}, - [333] = {.lex_state = 168, .external_lex_state = 9}, - [334] = {.lex_state = 147, .external_lex_state = 4}, - [335] = {.lex_state = 208, .external_lex_state = 24}, - [336] = {.lex_state = 154}, - [337] = {.lex_state = 161}, - [338] = {.lex_state = 161}, - [339] = {.lex_state = 118, .external_lex_state = 2}, - [340] = {.lex_state = 118, .external_lex_state = 2}, - [341] = {.lex_state = 118, .external_lex_state = 2}, - [342] = {.lex_state = 208, .external_lex_state = 24}, - [343] = {.lex_state = 204, .external_lex_state = 18}, - [344] = {.lex_state = 204, .external_lex_state = 18}, - [345] = {.lex_state = 234, .external_lex_state = 25}, - [346] = {.lex_state = 204, .external_lex_state = 18}, - [347] = {.lex_state = 126, .external_lex_state = 8}, - [348] = {.lex_state = 208, .external_lex_state = 18}, - [349] = {.lex_state = 208, .external_lex_state = 18}, - [350] = {.lex_state = 174, .external_lex_state = 10}, - [351] = {.lex_state = 170, .external_lex_state = 2}, - [352] = {.lex_state = 126, .external_lex_state = 8}, - [353] = {.lex_state = 147, .external_lex_state = 4}, - [354] = {.lex_state = 168, .external_lex_state = 19}, - [355] = {.lex_state = 210, .external_lex_state = 26}, - [356] = {.lex_state = 176, .external_lex_state = 9}, - [357] = {.lex_state = 154}, - [358] = {.lex_state = 161}, - [359] = {.lex_state = 161}, - [360] = {.lex_state = 118, .external_lex_state = 2}, - [361] = {.lex_state = 118, .external_lex_state = 2}, - [362] = {.lex_state = 118, .external_lex_state = 2}, - [363] = {.lex_state = 210, .external_lex_state = 26}, - [364] = {.lex_state = 210, .external_lex_state = 4}, - [365] = {.lex_state = 210, .external_lex_state = 4}, - [366] = {.lex_state = 176, .external_lex_state = 19}, - [367] = {.lex_state = 154}, - [368] = {.lex_state = 176, .external_lex_state = 19}, - [369] = {.lex_state = 176, .external_lex_state = 19}, - [370] = {.lex_state = 176, .external_lex_state = 19}, - [371] = {.lex_state = 161, .external_lex_state = 13}, - [372] = {.lex_state = 128, .external_lex_state = 13}, - [373] = {.lex_state = 128, .external_lex_state = 13}, - [374] = {.lex_state = 128}, - [375] = {.lex_state = 192, .external_lex_state = 2}, - [376] = {.lex_state = 128}, - [377] = {.lex_state = 200, .external_lex_state = 2}, - [378] = {.lex_state = 128}, - [379] = {.lex_state = 192, .external_lex_state = 2}, - [380] = {.lex_state = 168, .external_lex_state = 19}, - [381] = {.lex_state = 147, .external_lex_state = 4}, - [382] = {.lex_state = 128}, - [383] = {.lex_state = 212, .external_lex_state = 20}, - [384] = {.lex_state = 237, .external_lex_state = 27}, - [385] = {.lex_state = 154}, - [386] = {.lex_state = 237, .external_lex_state = 27}, - [387] = {.lex_state = 237, .external_lex_state = 27}, - [388] = {.lex_state = 237, .external_lex_state = 27}, - [389] = {.lex_state = 161, .external_lex_state = 13}, - [390] = {.lex_state = 128, .external_lex_state = 13}, - [391] = {.lex_state = 128, .external_lex_state = 13}, - [392] = {.lex_state = 128}, - [393] = {.lex_state = 192, .external_lex_state = 2}, - [394] = {.lex_state = 128}, - [395] = {.lex_state = 200, .external_lex_state = 2}, - [396] = {.lex_state = 128}, - [397] = {.lex_state = 192, .external_lex_state = 2}, - [398] = {.lex_state = 128}, - [399] = {.lex_state = 212, .external_lex_state = 20}, - [400] = {.lex_state = 240, .external_lex_state = 28}, - [401] = {.lex_state = 154}, - [402] = {.lex_state = 161}, - [403] = {.lex_state = 161}, - [404] = {.lex_state = 118, .external_lex_state = 2}, - [405] = {.lex_state = 118, .external_lex_state = 2}, - [406] = {.lex_state = 118, .external_lex_state = 2}, - [407] = {.lex_state = 240, .external_lex_state = 28}, - [408] = {.lex_state = 240, .external_lex_state = 29}, - [409] = {.lex_state = 240, .external_lex_state = 29}, - [410] = {.lex_state = 181, .external_lex_state = 7}, - [411] = {.lex_state = 214, .external_lex_state = 2}, - [412] = {.lex_state = 151, .external_lex_state = 7}, - [413] = {.lex_state = 168, .external_lex_state = 9}, - [414] = {.lex_state = 214, .external_lex_state = 2}, - [415] = {.lex_state = 181, .external_lex_state = 7}, - [416] = {.lex_state = 118, .external_lex_state = 2}, - [417] = {.lex_state = 242, .external_lex_state = 2}, - [418] = {.lex_state = 216, .external_lex_state = 2}, - [419] = {.lex_state = 151, .external_lex_state = 7}, - [420] = {.lex_state = 128}, - [421] = {.lex_state = 128}, - [422] = {.lex_state = 168, .external_lex_state = 9}, - [423] = {.lex_state = 216, .external_lex_state = 2}, - [424] = {.lex_state = 128}, - [425] = {.lex_state = 178, .external_lex_state = 11}, - [426] = {.lex_state = 178, .external_lex_state = 11}, - [427] = {.lex_state = 244, .external_lex_state = 4}, - [428] = {.lex_state = 178, .external_lex_state = 7}, - [429] = {.lex_state = 178, .external_lex_state = 11}, - [430] = {.lex_state = 178, .external_lex_state = 11}, - [431] = {.lex_state = 128, .external_lex_state = 13}, - [432] = {.lex_state = 128, .external_lex_state = 13}, - [433] = {.lex_state = 178, .external_lex_state = 11}, - [434] = {.lex_state = 224, .external_lex_state = 22}, - [435] = {.lex_state = 128}, - [436] = {.lex_state = 178, .external_lex_state = 11}, - [437] = {.lex_state = 224, .external_lex_state = 22}, - [438] = {.lex_state = 128}, - [439] = {.lex_state = 178, .external_lex_state = 11}, - [440] = {.lex_state = 178, .external_lex_state = 11}, - [441] = {.lex_state = 244, .external_lex_state = 4}, - [442] = {.lex_state = 178, .external_lex_state = 7}, - [443] = {.lex_state = 128}, - [444] = {.lex_state = 247, .external_lex_state = 18}, - [445] = {.lex_state = 166, .external_lex_state = 6}, - [446] = {.lex_state = 118}, - [447] = {.lex_state = 147, .external_lex_state = 4}, - [448] = {.lex_state = 181, .external_lex_state = 7}, - [449] = {.lex_state = 172, .external_lex_state = 3}, - [450] = {.lex_state = 176, .external_lex_state = 19}, - [451] = {.lex_state = 176, .external_lex_state = 19}, - [452] = {.lex_state = 128}, - [453] = {.lex_state = 247, .external_lex_state = 18}, - [454] = {.lex_state = 174, .external_lex_state = 10}, - [455] = {.lex_state = 181, .external_lex_state = 5}, - [456] = {.lex_state = 128}, - [457] = {.lex_state = 181, .external_lex_state = 7}, - [458] = {.lex_state = 181, .external_lex_state = 7}, - [459] = {.lex_state = 176, .external_lex_state = 9}, - [460] = {.lex_state = 147, .external_lex_state = 4}, - [461] = {.lex_state = 204, .external_lex_state = 24}, - [462] = {.lex_state = 204, .external_lex_state = 24}, - [463] = {.lex_state = 172, .external_lex_state = 8}, - [464] = {.lex_state = 204, .external_lex_state = 18}, - [465] = {.lex_state = 204, .external_lex_state = 18}, - [466] = {.lex_state = 222, .external_lex_state = 2}, - [467] = {.lex_state = 172, .external_lex_state = 8}, - [468] = {.lex_state = 151, .external_lex_state = 30}, - [469] = {.lex_state = 181, .external_lex_state = 5}, - [470] = {.lex_state = 210, .external_lex_state = 4}, - [471] = {.lex_state = 154}, - [472] = {.lex_state = 161}, - [473] = {.lex_state = 161}, - [474] = {.lex_state = 118, .external_lex_state = 2}, - [475] = {.lex_state = 118, .external_lex_state = 2}, - [476] = {.lex_state = 118, .external_lex_state = 2}, - [477] = {.lex_state = 151, .external_lex_state = 30}, - [478] = {.lex_state = 170, .external_lex_state = 12}, - [479] = {.lex_state = 170, .external_lex_state = 12}, - [480] = {.lex_state = 170, .external_lex_state = 12}, - [481] = {.lex_state = 170, .external_lex_state = 12}, - [482] = {.lex_state = 128, .external_lex_state = 13}, - [483] = {.lex_state = 128, .external_lex_state = 13}, - [484] = {.lex_state = 170, .external_lex_state = 12}, - [485] = {.lex_state = 224, .external_lex_state = 22}, - [486] = {.lex_state = 128}, - [487] = {.lex_state = 170, .external_lex_state = 12}, - [488] = {.lex_state = 224, .external_lex_state = 22}, - [489] = {.lex_state = 128}, - [490] = {.lex_state = 170, .external_lex_state = 12}, - [491] = {.lex_state = 170, .external_lex_state = 12}, - [492] = {.lex_state = 128, .external_lex_state = 13}, - [493] = {.lex_state = 128, .external_lex_state = 13}, - [494] = {.lex_state = 154}, - [495] = {.lex_state = 224, .external_lex_state = 22}, - [496] = {.lex_state = 128}, - [497] = {.lex_state = 154}, - [498] = {.lex_state = 224, .external_lex_state = 22}, - [499] = {.lex_state = 128}, - [500] = {.lex_state = 154}, - [501] = {.lex_state = 172, .external_lex_state = 3}, - [502] = {.lex_state = 128}, - [503] = {.lex_state = 172, .external_lex_state = 3}, - [504] = {.lex_state = 128}, - [505] = {.lex_state = 249, .external_lex_state = 31}, - [506] = {.lex_state = 172, .external_lex_state = 3}, - [507] = {.lex_state = 249, .external_lex_state = 31}, - [508] = {.lex_state = 249, .external_lex_state = 31}, - [509] = {.lex_state = 128, .external_lex_state = 21}, - [510] = {.lex_state = 249, .external_lex_state = 31}, - [511] = {.lex_state = 249, .external_lex_state = 31}, - [512] = {.lex_state = 249, .external_lex_state = 31}, - [513] = {.lex_state = 128, .external_lex_state = 21}, - [514] = {.lex_state = 185, .external_lex_state = 14}, - [515] = {.lex_state = 185, .external_lex_state = 14}, - [516] = {.lex_state = 185, .external_lex_state = 14}, - [517] = {.lex_state = 192, .external_lex_state = 12}, - [518] = {.lex_state = 192, .external_lex_state = 2}, - [519] = {.lex_state = 210, .external_lex_state = 4}, - [520] = {.lex_state = 154}, - [521] = {.lex_state = 161}, - [522] = {.lex_state = 161}, - [523] = {.lex_state = 118, .external_lex_state = 2}, - [524] = {.lex_state = 118, .external_lex_state = 2}, - [525] = {.lex_state = 118, .external_lex_state = 2}, - [526] = {.lex_state = 192, .external_lex_state = 12}, - [527] = {.lex_state = 147, .external_lex_state = 4}, - [528] = {.lex_state = 214, .external_lex_state = 2}, - [529] = {.lex_state = 128}, - [530] = {.lex_state = 216, .external_lex_state = 2}, - [531] = {.lex_state = 178, .external_lex_state = 7}, - [532] = {.lex_state = 128}, - [533] = {.lex_state = 178, .external_lex_state = 7}, - [534] = {.lex_state = 128}, - [535] = {.lex_state = 128}, - [536] = {.lex_state = 166, .external_lex_state = 6}, - [537] = {.lex_state = 251, .external_lex_state = 23}, - [538] = {.lex_state = 128}, - [539] = {.lex_state = 222, .external_lex_state = 2}, - [540] = {.lex_state = 181, .external_lex_state = 7}, - [541] = {.lex_state = 176, .external_lex_state = 9}, - [542] = {.lex_state = 174, .external_lex_state = 10}, - [543] = {.lex_state = 226, .external_lex_state = 15}, - [544] = {.lex_state = 188, .external_lex_state = 15}, - [545] = {.lex_state = 185, .external_lex_state = 14}, - [546] = {.lex_state = 128, .external_lex_state = 13}, - [547] = {.lex_state = 128, .external_lex_state = 13}, - [548] = {.lex_state = 185, .external_lex_state = 14}, - [549] = {.lex_state = 224, .external_lex_state = 22}, - [550] = {.lex_state = 128}, - [551] = {.lex_state = 185, .external_lex_state = 14}, - [552] = {.lex_state = 224, .external_lex_state = 22}, - [553] = {.lex_state = 128}, - [554] = {.lex_state = 185, .external_lex_state = 14}, - [555] = {.lex_state = 185, .external_lex_state = 14}, - [556] = {.lex_state = 128}, - [557] = {.lex_state = 128}, - [558] = {.lex_state = 192, .external_lex_state = 2}, - [559] = {.lex_state = 128}, - [560] = {.lex_state = 192, .external_lex_state = 2}, - [561] = {.lex_state = 147, .external_lex_state = 4}, - [562] = {.lex_state = 230, .external_lex_state = 32}, - [563] = {.lex_state = 154}, - [564] = {.lex_state = 161}, - [565] = {.lex_state = 161}, - [566] = {.lex_state = 118, .external_lex_state = 2}, - [567] = {.lex_state = 118, .external_lex_state = 2}, - [568] = {.lex_state = 118, .external_lex_state = 2}, - [569] = {.lex_state = 230, .external_lex_state = 32}, - [570] = {.lex_state = 228, .external_lex_state = 23}, - [571] = {.lex_state = 228, .external_lex_state = 23}, - [572] = {.lex_state = 234, .external_lex_state = 25}, - [573] = {.lex_state = 228, .external_lex_state = 23}, - [574] = {.lex_state = 185, .external_lex_state = 16}, - [575] = {.lex_state = 230, .external_lex_state = 23}, - [576] = {.lex_state = 230, .external_lex_state = 23}, - [577] = {.lex_state = 185, .external_lex_state = 16}, - [578] = {.lex_state = 194, .external_lex_state = 14}, - [579] = {.lex_state = 200, .external_lex_state = 12}, - [580] = {.lex_state = 200, .external_lex_state = 12}, - [581] = {.lex_state = 128}, - [582] = {.lex_state = 253, .external_lex_state = 23}, - [583] = {.lex_state = 174, .external_lex_state = 10}, - [584] = {.lex_state = 196, .external_lex_state = 15}, - [585] = {.lex_state = 128}, - [586] = {.lex_state = 200, .external_lex_state = 2}, - [587] = {.lex_state = 128}, - [588] = {.lex_state = 200, .external_lex_state = 2}, - [589] = {.lex_state = 147, .external_lex_state = 4}, - [590] = {.lex_state = 232, .external_lex_state = 32}, - [591] = {.lex_state = 232, .external_lex_state = 32}, - [592] = {.lex_state = 194, .external_lex_state = 16}, - [593] = {.lex_state = 232, .external_lex_state = 23}, - [594] = {.lex_state = 232, .external_lex_state = 23}, - [595] = {.lex_state = 194, .external_lex_state = 16}, - [596] = {.lex_state = 219, .external_lex_state = 18}, - [597] = {.lex_state = 208, .external_lex_state = 24}, - [598] = {.lex_state = 208, .external_lex_state = 24}, - [599] = {.lex_state = 204, .external_lex_state = 18}, - [600] = {.lex_state = 147, .external_lex_state = 4}, - [601] = {.lex_state = 208, .external_lex_state = 24}, - [602] = {.lex_state = 204, .external_lex_state = 24}, - [603] = {.lex_state = 154}, - [604] = {.lex_state = 204, .external_lex_state = 24}, - [605] = {.lex_state = 204, .external_lex_state = 24}, - [606] = {.lex_state = 204, .external_lex_state = 24}, - [607] = {.lex_state = 161, .external_lex_state = 13}, - [608] = {.lex_state = 128, .external_lex_state = 13}, - [609] = {.lex_state = 128, .external_lex_state = 13}, - [610] = {.lex_state = 128}, - [611] = {.lex_state = 192, .external_lex_state = 2}, - [612] = {.lex_state = 128}, - [613] = {.lex_state = 200, .external_lex_state = 2}, - [614] = {.lex_state = 128}, - [615] = {.lex_state = 192, .external_lex_state = 2}, - [616] = {.lex_state = 208, .external_lex_state = 24}, - [617] = {.lex_state = 234, .external_lex_state = 25}, - [618] = {.lex_state = 204, .external_lex_state = 18}, - [619] = {.lex_state = 161}, - [620] = {.lex_state = 161}, - [621] = {.lex_state = 234, .external_lex_state = 25}, - [622] = {.lex_state = 170, .external_lex_state = 12}, - [623] = {.lex_state = 170, .external_lex_state = 2}, - [624] = {.lex_state = 210, .external_lex_state = 4}, - [625] = {.lex_state = 170, .external_lex_state = 12}, - [626] = {.lex_state = 208, .external_lex_state = 18}, - [627] = {.lex_state = 176, .external_lex_state = 19}, - [628] = {.lex_state = 176, .external_lex_state = 19}, - [629] = {.lex_state = 168, .external_lex_state = 19}, - [630] = {.lex_state = 147, .external_lex_state = 4}, - [631] = {.lex_state = 210, .external_lex_state = 26}, - [632] = {.lex_state = 210, .external_lex_state = 26}, - [633] = {.lex_state = 154}, - [634] = {.lex_state = 210, .external_lex_state = 26}, - [635] = {.lex_state = 210, .external_lex_state = 26}, - [636] = {.lex_state = 210, .external_lex_state = 26}, - [637] = {.lex_state = 161, .external_lex_state = 13}, - [638] = {.lex_state = 128, .external_lex_state = 13}, - [639] = {.lex_state = 128, .external_lex_state = 13}, - [640] = {.lex_state = 128}, - [641] = {.lex_state = 192, .external_lex_state = 2}, - [642] = {.lex_state = 128}, - [643] = {.lex_state = 200, .external_lex_state = 2}, - [644] = {.lex_state = 128}, - [645] = {.lex_state = 192, .external_lex_state = 2}, - [646] = {.lex_state = 210, .external_lex_state = 26}, - [647] = {.lex_state = 176, .external_lex_state = 9}, - [648] = {.lex_state = 210, .external_lex_state = 4}, - [649] = {.lex_state = 176, .external_lex_state = 19}, - [650] = {.lex_state = 128, .external_lex_state = 13}, - [651] = {.lex_state = 128, .external_lex_state = 13}, - [652] = {.lex_state = 176, .external_lex_state = 19}, - [653] = {.lex_state = 224, .external_lex_state = 22}, - [654] = {.lex_state = 128}, - [655] = {.lex_state = 176, .external_lex_state = 19}, - [656] = {.lex_state = 224, .external_lex_state = 22}, - [657] = {.lex_state = 128}, - [658] = {.lex_state = 176, .external_lex_state = 19}, - [659] = {.lex_state = 176, .external_lex_state = 19}, - [660] = {.lex_state = 237, .external_lex_state = 27}, - [661] = {.lex_state = 237, .external_lex_state = 27}, - [662] = {.lex_state = 212, .external_lex_state = 20}, - [663] = {.lex_state = 237, .external_lex_state = 27}, - [664] = {.lex_state = 128, .external_lex_state = 13}, - [665] = {.lex_state = 128, .external_lex_state = 13}, - [666] = {.lex_state = 237, .external_lex_state = 27}, - [667] = {.lex_state = 224, .external_lex_state = 22}, - [668] = {.lex_state = 128}, - [669] = {.lex_state = 237, .external_lex_state = 27}, - [670] = {.lex_state = 224, .external_lex_state = 22}, - [671] = {.lex_state = 128}, - [672] = {.lex_state = 237, .external_lex_state = 27}, - [673] = {.lex_state = 237, .external_lex_state = 27}, - [674] = {.lex_state = 147, .external_lex_state = 4}, - [675] = {.lex_state = 240, .external_lex_state = 28}, - [676] = {.lex_state = 240, .external_lex_state = 28}, - [677] = {.lex_state = 154}, - [678] = {.lex_state = 240, .external_lex_state = 28}, - [679] = {.lex_state = 240, .external_lex_state = 28}, - [680] = {.lex_state = 240, .external_lex_state = 28}, - [681] = {.lex_state = 161, .external_lex_state = 13}, - [682] = {.lex_state = 128, .external_lex_state = 13}, - [683] = {.lex_state = 128, .external_lex_state = 13}, - [684] = {.lex_state = 128}, - [685] = {.lex_state = 192, .external_lex_state = 2}, - [686] = {.lex_state = 128}, - [687] = {.lex_state = 200, .external_lex_state = 2}, - [688] = {.lex_state = 128}, - [689] = {.lex_state = 192, .external_lex_state = 2}, - [690] = {.lex_state = 240, .external_lex_state = 28}, - [691] = {.lex_state = 128}, - [692] = {.lex_state = 240, .external_lex_state = 29}, - [693] = {.lex_state = 214, .external_lex_state = 2}, - [694] = {.lex_state = 181, .external_lex_state = 7}, - [695] = {.lex_state = 214, .external_lex_state = 2}, - [696] = {.lex_state = 128}, - [697] = {.lex_state = 242, .external_lex_state = 2}, - [698] = {.lex_state = 151, .external_lex_state = 7}, - [699] = {.lex_state = 168, .external_lex_state = 9}, - [700] = {.lex_state = 242, .external_lex_state = 2}, - [701] = {.lex_state = 216, .external_lex_state = 2}, - [702] = {.lex_state = 181, .external_lex_state = 7}, - [703] = {.lex_state = 128}, - [704] = {.lex_state = 216, .external_lex_state = 2}, - [705] = {.lex_state = 128}, - [706] = {.lex_state = 128}, - [707] = {.lex_state = 255, .external_lex_state = 33}, - [708] = {.lex_state = 181, .external_lex_state = 7}, - [709] = {.lex_state = 255, .external_lex_state = 33}, - [710] = {.lex_state = 244, .external_lex_state = 4}, - [711] = {.lex_state = 237}, - [712] = {.lex_state = 244, .external_lex_state = 4}, - [713] = {.lex_state = 244, .external_lex_state = 4}, - [714] = {.lex_state = 178, .external_lex_state = 11}, - [715] = {.lex_state = 128}, - [716] = {.lex_state = 178, .external_lex_state = 11}, - [717] = {.lex_state = 128}, - [718] = {.lex_state = 249, .external_lex_state = 31}, - [719] = {.lex_state = 178, .external_lex_state = 11}, - [720] = {.lex_state = 249, .external_lex_state = 31}, - [721] = {.lex_state = 249, .external_lex_state = 31}, - [722] = {.lex_state = 128, .external_lex_state = 21}, - [723] = {.lex_state = 249, .external_lex_state = 31}, - [724] = {.lex_state = 249, .external_lex_state = 31}, - [725] = {.lex_state = 249, .external_lex_state = 31}, - [726] = {.lex_state = 128, .external_lex_state = 21}, - [727] = {.lex_state = 181, .external_lex_state = 7}, - [728] = {.lex_state = 244, .external_lex_state = 4}, - [729] = {.lex_state = 244, .external_lex_state = 4}, - [730] = {.lex_state = 219, .external_lex_state = 18}, - [731] = {.lex_state = 247, .external_lex_state = 18}, - [732] = {.lex_state = 166, .external_lex_state = 6}, - [733] = {.lex_state = 147, .external_lex_state = 4}, - [734] = {.lex_state = 257, .external_lex_state = 11}, - [735] = {.lex_state = 154}, - [736] = {.lex_state = 161}, - [737] = {.lex_state = 161}, - [738] = {.lex_state = 118, .external_lex_state = 2}, - [739] = {.lex_state = 118, .external_lex_state = 2}, - [740] = {.lex_state = 118, .external_lex_state = 2}, - [741] = {.lex_state = 257, .external_lex_state = 11}, - [742] = {.lex_state = 181, .external_lex_state = 7}, - [743] = {.lex_state = 176, .external_lex_state = 19}, - [744] = {.lex_state = 176, .external_lex_state = 19}, - [745] = {.lex_state = 128}, - [746] = {.lex_state = 118}, - [747] = {.lex_state = 147, .external_lex_state = 4}, - [748] = {.lex_state = 181, .external_lex_state = 30}, - [749] = {.lex_state = 181, .external_lex_state = 30}, - [750] = {.lex_state = 247, .external_lex_state = 18}, - [751] = {.lex_state = 204, .external_lex_state = 24}, - [752] = {.lex_state = 204, .external_lex_state = 24}, - [753] = {.lex_state = 204, .external_lex_state = 24}, - [754] = {.lex_state = 204, .external_lex_state = 24}, - [755] = {.lex_state = 181, .external_lex_state = 7}, - [756] = {.lex_state = 204, .external_lex_state = 18}, - [757] = {.lex_state = 147, .external_lex_state = 4}, - [758] = {.lex_state = 151, .external_lex_state = 30}, - [759] = {.lex_state = 181, .external_lex_state = 5}, - [760] = {.lex_state = 210, .external_lex_state = 4}, - [761] = {.lex_state = 181, .external_lex_state = 30}, - [762] = {.lex_state = 154}, - [763] = {.lex_state = 181, .external_lex_state = 30}, - [764] = {.lex_state = 181, .external_lex_state = 30}, - [765] = {.lex_state = 181, .external_lex_state = 30}, - [766] = {.lex_state = 161, .external_lex_state = 13}, - [767] = {.lex_state = 128, .external_lex_state = 13}, - [768] = {.lex_state = 128, .external_lex_state = 13}, - [769] = {.lex_state = 128}, - [770] = {.lex_state = 192, .external_lex_state = 2}, - [771] = {.lex_state = 128}, - [772] = {.lex_state = 200, .external_lex_state = 2}, - [773] = {.lex_state = 128}, - [774] = {.lex_state = 192, .external_lex_state = 2}, - [775] = {.lex_state = 151, .external_lex_state = 30}, - [776] = {.lex_state = 170, .external_lex_state = 12}, - [777] = {.lex_state = 128}, - [778] = {.lex_state = 170, .external_lex_state = 12}, - [779] = {.lex_state = 128}, - [780] = {.lex_state = 249, .external_lex_state = 31}, - [781] = {.lex_state = 170, .external_lex_state = 12}, - [782] = {.lex_state = 249, .external_lex_state = 31}, - [783] = {.lex_state = 249, .external_lex_state = 31}, - [784] = {.lex_state = 128, .external_lex_state = 21}, - [785] = {.lex_state = 249, .external_lex_state = 31}, - [786] = {.lex_state = 249, .external_lex_state = 31}, - [787] = {.lex_state = 249, .external_lex_state = 31}, - [788] = {.lex_state = 128, .external_lex_state = 21}, - [789] = {.lex_state = 154}, - [790] = {.lex_state = 128}, - [791] = {.lex_state = 154}, - [792] = {.lex_state = 128}, - [793] = {.lex_state = 249, .external_lex_state = 31}, - [794] = {.lex_state = 154}, - [795] = {.lex_state = 249, .external_lex_state = 31}, - [796] = {.lex_state = 249, .external_lex_state = 31}, - [797] = {.lex_state = 128, .external_lex_state = 21}, - [798] = {.lex_state = 249, .external_lex_state = 31}, - [799] = {.lex_state = 249, .external_lex_state = 31}, - [800] = {.lex_state = 249, .external_lex_state = 31}, - [801] = {.lex_state = 128, .external_lex_state = 21}, - [802] = {.lex_state = 128, .external_lex_state = 21}, - [803] = {.lex_state = 128, .external_lex_state = 21}, - [804] = {.lex_state = 224, .external_lex_state = 22}, - [805] = {.lex_state = 172, .external_lex_state = 3}, - [806] = {.lex_state = 249, .external_lex_state = 31}, - [807] = {.lex_state = 224, .external_lex_state = 22}, - [808] = {.lex_state = 172, .external_lex_state = 3}, - [809] = {.lex_state = 249, .external_lex_state = 31}, - [810] = {.lex_state = 128, .external_lex_state = 13}, - [811] = {.lex_state = 224, .external_lex_state = 22}, - [812] = {.lex_state = 172, .external_lex_state = 3}, - [813] = {.lex_state = 224, .external_lex_state = 22}, - [814] = {.lex_state = 172, .external_lex_state = 3}, - [815] = {.lex_state = 128, .external_lex_state = 13}, - [816] = {.lex_state = 147, .external_lex_state = 4}, - [817] = {.lex_state = 192, .external_lex_state = 12}, - [818] = {.lex_state = 192, .external_lex_state = 2}, - [819] = {.lex_state = 210, .external_lex_state = 4}, - [820] = {.lex_state = 192, .external_lex_state = 12}, - [821] = {.lex_state = 154}, - [822] = {.lex_state = 192, .external_lex_state = 12}, - [823] = {.lex_state = 192, .external_lex_state = 12}, - [824] = {.lex_state = 192, .external_lex_state = 12}, - [825] = {.lex_state = 161, .external_lex_state = 13}, - [826] = {.lex_state = 128, .external_lex_state = 13}, - [827] = {.lex_state = 128, .external_lex_state = 13}, - [828] = {.lex_state = 128}, - [829] = {.lex_state = 192, .external_lex_state = 2}, - [830] = {.lex_state = 128}, - [831] = {.lex_state = 200, .external_lex_state = 2}, - [832] = {.lex_state = 128}, - [833] = {.lex_state = 192, .external_lex_state = 2}, - [834] = {.lex_state = 192, .external_lex_state = 12}, - [835] = {.lex_state = 240, .external_lex_state = 29}, - [836] = {.lex_state = 128}, - [837] = {.lex_state = 214, .external_lex_state = 2}, - [838] = {.lex_state = 128}, - [839] = {.lex_state = 128}, - [840] = {.lex_state = 216, .external_lex_state = 2}, - [841] = {.lex_state = 128}, - [842] = {.lex_state = 244, .external_lex_state = 4}, - [843] = {.lex_state = 178, .external_lex_state = 7}, - [844] = {.lex_state = 244, .external_lex_state = 4}, - [845] = {.lex_state = 178, .external_lex_state = 7}, - [846] = {.lex_state = 128}, - [847] = {.lex_state = 259, .external_lex_state = 23}, - [848] = {.lex_state = 166, .external_lex_state = 6}, - [849] = {.lex_state = 118}, - [850] = {.lex_state = 147, .external_lex_state = 4}, - [851] = {.lex_state = 128}, - [852] = {.lex_state = 128}, - [853] = {.lex_state = 222, .external_lex_state = 2}, - [854] = {.lex_state = 188, .external_lex_state = 34}, - [855] = {.lex_state = 226, .external_lex_state = 15}, - [856] = {.lex_state = 210, .external_lex_state = 4}, - [857] = {.lex_state = 154}, - [858] = {.lex_state = 161}, - [859] = {.lex_state = 161}, - [860] = {.lex_state = 118, .external_lex_state = 2}, - [861] = {.lex_state = 118, .external_lex_state = 2}, - [862] = {.lex_state = 118, .external_lex_state = 2}, - [863] = {.lex_state = 188, .external_lex_state = 34}, - [864] = {.lex_state = 185, .external_lex_state = 14}, - [865] = {.lex_state = 128}, - [866] = {.lex_state = 185, .external_lex_state = 14}, - [867] = {.lex_state = 128}, - [868] = {.lex_state = 249, .external_lex_state = 31}, - [869] = {.lex_state = 185, .external_lex_state = 14}, - [870] = {.lex_state = 249, .external_lex_state = 31}, - [871] = {.lex_state = 249, .external_lex_state = 31}, - [872] = {.lex_state = 128, .external_lex_state = 21}, - [873] = {.lex_state = 249, .external_lex_state = 31}, - [874] = {.lex_state = 249, .external_lex_state = 31}, - [875] = {.lex_state = 249, .external_lex_state = 31}, - [876] = {.lex_state = 128, .external_lex_state = 21}, - [877] = {.lex_state = 251, .external_lex_state = 23}, - [878] = {.lex_state = 230, .external_lex_state = 32}, - [879] = {.lex_state = 230, .external_lex_state = 32}, - [880] = {.lex_state = 228, .external_lex_state = 23}, - [881] = {.lex_state = 147, .external_lex_state = 4}, - [882] = {.lex_state = 230, .external_lex_state = 32}, - [883] = {.lex_state = 228, .external_lex_state = 32}, - [884] = {.lex_state = 154}, - [885] = {.lex_state = 228, .external_lex_state = 32}, - [886] = {.lex_state = 228, .external_lex_state = 32}, - [887] = {.lex_state = 228, .external_lex_state = 32}, - [888] = {.lex_state = 161, .external_lex_state = 13}, - [889] = {.lex_state = 128, .external_lex_state = 13}, - [890] = {.lex_state = 128, .external_lex_state = 13}, - [891] = {.lex_state = 128}, - [892] = {.lex_state = 192, .external_lex_state = 2}, - [893] = {.lex_state = 128}, - [894] = {.lex_state = 200, .external_lex_state = 2}, - [895] = {.lex_state = 128}, - [896] = {.lex_state = 192, .external_lex_state = 2}, - [897] = {.lex_state = 230, .external_lex_state = 32}, - [898] = {.lex_state = 228, .external_lex_state = 23}, - [899] = {.lex_state = 234, .external_lex_state = 25}, - [900] = {.lex_state = 230, .external_lex_state = 23}, - [901] = {.lex_state = 200, .external_lex_state = 12}, - [902] = {.lex_state = 200, .external_lex_state = 12}, - [903] = {.lex_state = 128}, - [904] = {.lex_state = 118}, - [905] = {.lex_state = 147, .external_lex_state = 4}, - [906] = {.lex_state = 196, .external_lex_state = 34}, - [907] = {.lex_state = 196, .external_lex_state = 34}, - [908] = {.lex_state = 253, .external_lex_state = 23}, - [909] = {.lex_state = 232, .external_lex_state = 32}, - [910] = {.lex_state = 232, .external_lex_state = 32}, - [911] = {.lex_state = 232, .external_lex_state = 32}, - [912] = {.lex_state = 232, .external_lex_state = 32}, - [913] = {.lex_state = 232, .external_lex_state = 23}, - [914] = {.lex_state = 181, .external_lex_state = 7}, - [915] = {.lex_state = 204, .external_lex_state = 24}, - [916] = {.lex_state = 204, .external_lex_state = 24}, - [917] = {.lex_state = 208, .external_lex_state = 24}, - [918] = {.lex_state = 204, .external_lex_state = 24}, - [919] = {.lex_state = 128, .external_lex_state = 13}, - [920] = {.lex_state = 128, .external_lex_state = 13}, - [921] = {.lex_state = 204, .external_lex_state = 24}, - [922] = {.lex_state = 224, .external_lex_state = 22}, - [923] = {.lex_state = 128}, - [924] = {.lex_state = 204, .external_lex_state = 24}, - [925] = {.lex_state = 224, .external_lex_state = 22}, - [926] = {.lex_state = 128}, - [927] = {.lex_state = 204, .external_lex_state = 24}, - [928] = {.lex_state = 204, .external_lex_state = 24}, - [929] = {.lex_state = 234, .external_lex_state = 25}, - [930] = {.lex_state = 234, .external_lex_state = 25}, - [931] = {.lex_state = 234, .external_lex_state = 25}, - [932] = {.lex_state = 161, .external_lex_state = 13}, - [933] = {.lex_state = 128, .external_lex_state = 13}, - [934] = {.lex_state = 128, .external_lex_state = 13}, - [935] = {.lex_state = 204, .external_lex_state = 18}, - [936] = {.lex_state = 234, .external_lex_state = 25}, - [937] = {.lex_state = 170, .external_lex_state = 2}, - [938] = {.lex_state = 210, .external_lex_state = 4}, - [939] = {.lex_state = 210, .external_lex_state = 26}, - [940] = {.lex_state = 210, .external_lex_state = 26}, - [941] = {.lex_state = 210, .external_lex_state = 26}, - [942] = {.lex_state = 210, .external_lex_state = 26}, - [943] = {.lex_state = 128, .external_lex_state = 13}, - [944] = {.lex_state = 128, .external_lex_state = 13}, - [945] = {.lex_state = 210, .external_lex_state = 26}, - [946] = {.lex_state = 224, .external_lex_state = 22}, - [947] = {.lex_state = 128}, - [948] = {.lex_state = 210, .external_lex_state = 26}, - [949] = {.lex_state = 224, .external_lex_state = 22}, - [950] = {.lex_state = 128}, - [951] = {.lex_state = 210, .external_lex_state = 26}, - [952] = {.lex_state = 210, .external_lex_state = 26}, - [953] = {.lex_state = 176, .external_lex_state = 19}, - [954] = {.lex_state = 128}, - [955] = {.lex_state = 176, .external_lex_state = 19}, - [956] = {.lex_state = 128}, - [957] = {.lex_state = 249, .external_lex_state = 31}, - [958] = {.lex_state = 176, .external_lex_state = 19}, - [959] = {.lex_state = 249, .external_lex_state = 31}, - [960] = {.lex_state = 249, .external_lex_state = 31}, - [961] = {.lex_state = 128, .external_lex_state = 21}, - [962] = {.lex_state = 249, .external_lex_state = 31}, - [963] = {.lex_state = 249, .external_lex_state = 31}, - [964] = {.lex_state = 249, .external_lex_state = 31}, - [965] = {.lex_state = 128, .external_lex_state = 21}, - [966] = {.lex_state = 237, .external_lex_state = 27}, - [967] = {.lex_state = 128}, - [968] = {.lex_state = 237, .external_lex_state = 27}, - [969] = {.lex_state = 128}, - [970] = {.lex_state = 249, .external_lex_state = 31}, - [971] = {.lex_state = 237, .external_lex_state = 27}, - [972] = {.lex_state = 249, .external_lex_state = 31}, - [973] = {.lex_state = 249, .external_lex_state = 31}, - [974] = {.lex_state = 128, .external_lex_state = 21}, - [975] = {.lex_state = 249, .external_lex_state = 31}, - [976] = {.lex_state = 249, .external_lex_state = 31}, - [977] = {.lex_state = 249, .external_lex_state = 31}, - [978] = {.lex_state = 128, .external_lex_state = 21}, - [979] = {.lex_state = 240, .external_lex_state = 28}, - [980] = {.lex_state = 240, .external_lex_state = 28}, - [981] = {.lex_state = 240, .external_lex_state = 28}, - [982] = {.lex_state = 240, .external_lex_state = 28}, - [983] = {.lex_state = 128, .external_lex_state = 13}, - [984] = {.lex_state = 128, .external_lex_state = 13}, - [985] = {.lex_state = 240, .external_lex_state = 28}, - [986] = {.lex_state = 224, .external_lex_state = 22}, - [987] = {.lex_state = 128}, - [988] = {.lex_state = 240, .external_lex_state = 28}, - [989] = {.lex_state = 224, .external_lex_state = 22}, - [990] = {.lex_state = 128}, - [991] = {.lex_state = 240, .external_lex_state = 28}, - [992] = {.lex_state = 240, .external_lex_state = 28}, - [993] = {.lex_state = 181, .external_lex_state = 7}, - [994] = {.lex_state = 216, .external_lex_state = 2}, - [995] = {.lex_state = 242, .external_lex_state = 2}, - [996] = {.lex_state = 242, .external_lex_state = 2}, - [997] = {.lex_state = 181, .external_lex_state = 7}, - [998] = {.lex_state = 128}, - [999] = {.lex_state = 147, .external_lex_state = 4}, - [1000] = {.lex_state = 261, .external_lex_state = 2}, - [1001] = {.lex_state = 237}, - [1002] = {.lex_state = 255, .external_lex_state = 33}, - [1003] = {.lex_state = 261, .external_lex_state = 2}, - [1004] = {.lex_state = 237}, - [1005] = {.lex_state = 255, .external_lex_state = 33}, - [1006] = {.lex_state = 181, .external_lex_state = 7}, - [1007] = {.lex_state = 244, .external_lex_state = 4}, - [1008] = {.lex_state = 244, .external_lex_state = 4}, - [1009] = {.lex_state = 128, .external_lex_state = 21}, - [1010] = {.lex_state = 128, .external_lex_state = 21}, - [1011] = {.lex_state = 224, .external_lex_state = 22}, - [1012] = {.lex_state = 178, .external_lex_state = 11}, - [1013] = {.lex_state = 224, .external_lex_state = 22}, - [1014] = {.lex_state = 178, .external_lex_state = 11}, - [1015] = {.lex_state = 128, .external_lex_state = 13}, - [1016] = {.lex_state = 224, .external_lex_state = 22}, - [1017] = {.lex_state = 178, .external_lex_state = 11}, - [1018] = {.lex_state = 224, .external_lex_state = 22}, - [1019] = {.lex_state = 178, .external_lex_state = 11}, - [1020] = {.lex_state = 128, .external_lex_state = 13}, - [1021] = {.lex_state = 181, .external_lex_state = 7}, - [1022] = {.lex_state = 244, .external_lex_state = 4}, - [1023] = {.lex_state = 181, .external_lex_state = 7}, - [1024] = {.lex_state = 257, .external_lex_state = 11}, - [1025] = {.lex_state = 257, .external_lex_state = 11}, - [1026] = {.lex_state = 181, .external_lex_state = 7}, - [1027] = {.lex_state = 147, .external_lex_state = 4}, - [1028] = {.lex_state = 257, .external_lex_state = 11}, - [1029] = {.lex_state = 264, .external_lex_state = 11}, - [1030] = {.lex_state = 154}, - [1031] = {.lex_state = 264, .external_lex_state = 11}, - [1032] = {.lex_state = 264, .external_lex_state = 11}, - [1033] = {.lex_state = 264, .external_lex_state = 11}, - [1034] = {.lex_state = 161, .external_lex_state = 13}, - [1035] = {.lex_state = 128, .external_lex_state = 13}, - [1036] = {.lex_state = 128, .external_lex_state = 13}, - [1037] = {.lex_state = 128}, - [1038] = {.lex_state = 192, .external_lex_state = 2}, - [1039] = {.lex_state = 128}, - [1040] = {.lex_state = 200, .external_lex_state = 2}, - [1041] = {.lex_state = 128}, - [1042] = {.lex_state = 192, .external_lex_state = 2}, - [1043] = {.lex_state = 257, .external_lex_state = 11}, - [1044] = {.lex_state = 176, .external_lex_state = 19}, - [1045] = {.lex_state = 247, .external_lex_state = 18}, - [1046] = {.lex_state = 147, .external_lex_state = 4}, - [1047] = {.lex_state = 264, .external_lex_state = 11}, - [1048] = {.lex_state = 264, .external_lex_state = 11}, - [1049] = {.lex_state = 181, .external_lex_state = 30}, - [1050] = {.lex_state = 181, .external_lex_state = 30}, - [1051] = {.lex_state = 204, .external_lex_state = 24}, - [1052] = {.lex_state = 181, .external_lex_state = 30}, - [1053] = {.lex_state = 181, .external_lex_state = 30}, - [1054] = {.lex_state = 151, .external_lex_state = 30}, - [1055] = {.lex_state = 181, .external_lex_state = 5}, - [1056] = {.lex_state = 181, .external_lex_state = 30}, - [1057] = {.lex_state = 128, .external_lex_state = 13}, - [1058] = {.lex_state = 128, .external_lex_state = 13}, - [1059] = {.lex_state = 181, .external_lex_state = 30}, - [1060] = {.lex_state = 224, .external_lex_state = 22}, - [1061] = {.lex_state = 128}, - [1062] = {.lex_state = 181, .external_lex_state = 30}, - [1063] = {.lex_state = 224, .external_lex_state = 22}, - [1064] = {.lex_state = 128}, - [1065] = {.lex_state = 181, .external_lex_state = 30}, - [1066] = {.lex_state = 181, .external_lex_state = 30}, - [1067] = {.lex_state = 128, .external_lex_state = 21}, - [1068] = {.lex_state = 128, .external_lex_state = 21}, - [1069] = {.lex_state = 224, .external_lex_state = 22}, - [1070] = {.lex_state = 170, .external_lex_state = 12}, - [1071] = {.lex_state = 224, .external_lex_state = 22}, - [1072] = {.lex_state = 170, .external_lex_state = 12}, - [1073] = {.lex_state = 128, .external_lex_state = 13}, - [1074] = {.lex_state = 224, .external_lex_state = 22}, - [1075] = {.lex_state = 170, .external_lex_state = 12}, - [1076] = {.lex_state = 224, .external_lex_state = 22}, - [1077] = {.lex_state = 170, .external_lex_state = 12}, - [1078] = {.lex_state = 128, .external_lex_state = 13}, - [1079] = {.lex_state = 128, .external_lex_state = 21}, - [1080] = {.lex_state = 128, .external_lex_state = 21}, - [1081] = {.lex_state = 224, .external_lex_state = 22}, - [1082] = {.lex_state = 154}, - [1083] = {.lex_state = 224, .external_lex_state = 22}, - [1084] = {.lex_state = 154}, - [1085] = {.lex_state = 128, .external_lex_state = 13}, - [1086] = {.lex_state = 224, .external_lex_state = 22}, - [1087] = {.lex_state = 154}, - [1088] = {.lex_state = 224, .external_lex_state = 22}, - [1089] = {.lex_state = 154}, - [1090] = {.lex_state = 128, .external_lex_state = 13}, - [1091] = {.lex_state = 128, .external_lex_state = 13}, - [1092] = {.lex_state = 128, .external_lex_state = 13}, - [1093] = {.lex_state = 172, .external_lex_state = 3}, - [1094] = {.lex_state = 249, .external_lex_state = 31}, - [1095] = {.lex_state = 172, .external_lex_state = 3}, - [1096] = {.lex_state = 172, .external_lex_state = 3}, - [1097] = {.lex_state = 172, .external_lex_state = 3}, - [1098] = {.lex_state = 192, .external_lex_state = 12}, - [1099] = {.lex_state = 192, .external_lex_state = 12}, - [1100] = {.lex_state = 192, .external_lex_state = 12}, - [1101] = {.lex_state = 192, .external_lex_state = 2}, - [1102] = {.lex_state = 192, .external_lex_state = 12}, - [1103] = {.lex_state = 128, .external_lex_state = 13}, - [1104] = {.lex_state = 128, .external_lex_state = 13}, - [1105] = {.lex_state = 192, .external_lex_state = 12}, - [1106] = {.lex_state = 224, .external_lex_state = 22}, - [1107] = {.lex_state = 128}, - [1108] = {.lex_state = 192, .external_lex_state = 12}, - [1109] = {.lex_state = 224, .external_lex_state = 22}, - [1110] = {.lex_state = 128}, - [1111] = {.lex_state = 192, .external_lex_state = 12}, - [1112] = {.lex_state = 192, .external_lex_state = 12}, - [1113] = {.lex_state = 128}, - [1114] = {.lex_state = 128}, - [1115] = {.lex_state = 128}, - [1116] = {.lex_state = 128}, - [1117] = {.lex_state = 128}, - [1118] = {.lex_state = 128}, - [1119] = {.lex_state = 244, .external_lex_state = 4}, - [1120] = {.lex_state = 244, .external_lex_state = 4}, - [1121] = {.lex_state = 128}, - [1122] = {.lex_state = 244, .external_lex_state = 4}, - [1123] = {.lex_state = 244, .external_lex_state = 4}, - [1124] = {.lex_state = 251, .external_lex_state = 23}, - [1125] = {.lex_state = 259, .external_lex_state = 23}, - [1126] = {.lex_state = 147, .external_lex_state = 4}, - [1127] = {.lex_state = 266, .external_lex_state = 33}, - [1128] = {.lex_state = 154}, - [1129] = {.lex_state = 161}, - [1130] = {.lex_state = 161}, - [1131] = {.lex_state = 118, .external_lex_state = 2}, - [1132] = {.lex_state = 118, .external_lex_state = 2}, - [1133] = {.lex_state = 118, .external_lex_state = 2}, - [1134] = {.lex_state = 266, .external_lex_state = 33}, - [1135] = {.lex_state = 128}, - [1136] = {.lex_state = 128}, - [1137] = {.lex_state = 147, .external_lex_state = 4}, - [1138] = {.lex_state = 188, .external_lex_state = 34}, - [1139] = {.lex_state = 226, .external_lex_state = 15}, - [1140] = {.lex_state = 210, .external_lex_state = 4}, - [1141] = {.lex_state = 226, .external_lex_state = 34}, - [1142] = {.lex_state = 154}, - [1143] = {.lex_state = 226, .external_lex_state = 34}, - [1144] = {.lex_state = 226, .external_lex_state = 34}, - [1145] = {.lex_state = 226, .external_lex_state = 34}, - [1146] = {.lex_state = 161, .external_lex_state = 13}, - [1147] = {.lex_state = 128, .external_lex_state = 13}, - [1148] = {.lex_state = 128, .external_lex_state = 13}, - [1149] = {.lex_state = 128}, - [1150] = {.lex_state = 192, .external_lex_state = 2}, - [1151] = {.lex_state = 128}, - [1152] = {.lex_state = 200, .external_lex_state = 2}, - [1153] = {.lex_state = 128}, - [1154] = {.lex_state = 192, .external_lex_state = 2}, - [1155] = {.lex_state = 188, .external_lex_state = 34}, - [1156] = {.lex_state = 128, .external_lex_state = 21}, - [1157] = {.lex_state = 128, .external_lex_state = 21}, - [1158] = {.lex_state = 224, .external_lex_state = 22}, - [1159] = {.lex_state = 185, .external_lex_state = 14}, - [1160] = {.lex_state = 224, .external_lex_state = 22}, - [1161] = {.lex_state = 185, .external_lex_state = 14}, - [1162] = {.lex_state = 128, .external_lex_state = 13}, - [1163] = {.lex_state = 224, .external_lex_state = 22}, - [1164] = {.lex_state = 185, .external_lex_state = 14}, - [1165] = {.lex_state = 224, .external_lex_state = 22}, - [1166] = {.lex_state = 185, .external_lex_state = 14}, - [1167] = {.lex_state = 128, .external_lex_state = 13}, - [1168] = {.lex_state = 128}, - [1169] = {.lex_state = 228, .external_lex_state = 32}, - [1170] = {.lex_state = 228, .external_lex_state = 32}, - [1171] = {.lex_state = 230, .external_lex_state = 32}, - [1172] = {.lex_state = 228, .external_lex_state = 32}, - [1173] = {.lex_state = 128, .external_lex_state = 13}, - [1174] = {.lex_state = 128, .external_lex_state = 13}, - [1175] = {.lex_state = 228, .external_lex_state = 32}, - [1176] = {.lex_state = 224, .external_lex_state = 22}, - [1177] = {.lex_state = 128}, - [1178] = {.lex_state = 228, .external_lex_state = 32}, - [1179] = {.lex_state = 224, .external_lex_state = 22}, - [1180] = {.lex_state = 128}, - [1181] = {.lex_state = 228, .external_lex_state = 32}, - [1182] = {.lex_state = 228, .external_lex_state = 32}, - [1183] = {.lex_state = 228, .external_lex_state = 23}, - [1184] = {.lex_state = 200, .external_lex_state = 12}, - [1185] = {.lex_state = 253, .external_lex_state = 23}, - [1186] = {.lex_state = 147, .external_lex_state = 4}, - [1187] = {.lex_state = 268, .external_lex_state = 33}, - [1188] = {.lex_state = 268, .external_lex_state = 33}, - [1189] = {.lex_state = 196, .external_lex_state = 34}, - [1190] = {.lex_state = 196, .external_lex_state = 34}, - [1191] = {.lex_state = 232, .external_lex_state = 32}, - [1192] = {.lex_state = 204, .external_lex_state = 24}, - [1193] = {.lex_state = 128}, - [1194] = {.lex_state = 204, .external_lex_state = 24}, - [1195] = {.lex_state = 128}, - [1196] = {.lex_state = 249, .external_lex_state = 31}, - [1197] = {.lex_state = 204, .external_lex_state = 24}, - [1198] = {.lex_state = 249, .external_lex_state = 31}, - [1199] = {.lex_state = 249, .external_lex_state = 31}, - [1200] = {.lex_state = 128, .external_lex_state = 21}, - [1201] = {.lex_state = 249, .external_lex_state = 31}, - [1202] = {.lex_state = 249, .external_lex_state = 31}, - [1203] = {.lex_state = 249, .external_lex_state = 31}, - [1204] = {.lex_state = 128, .external_lex_state = 21}, - [1205] = {.lex_state = 128, .external_lex_state = 13}, - [1206] = {.lex_state = 128, .external_lex_state = 13}, - [1207] = {.lex_state = 234, .external_lex_state = 25}, - [1208] = {.lex_state = 224, .external_lex_state = 22}, - [1209] = {.lex_state = 128}, - [1210] = {.lex_state = 234, .external_lex_state = 25}, - [1211] = {.lex_state = 224, .external_lex_state = 22}, - [1212] = {.lex_state = 128}, - [1213] = {.lex_state = 170, .external_lex_state = 2}, - [1214] = {.lex_state = 210, .external_lex_state = 26}, - [1215] = {.lex_state = 128}, - [1216] = {.lex_state = 210, .external_lex_state = 26}, - [1217] = {.lex_state = 128}, - [1218] = {.lex_state = 249, .external_lex_state = 31}, - [1219] = {.lex_state = 210, .external_lex_state = 26}, - [1220] = {.lex_state = 249, .external_lex_state = 31}, - [1221] = {.lex_state = 249, .external_lex_state = 31}, - [1222] = {.lex_state = 128, .external_lex_state = 21}, - [1223] = {.lex_state = 249, .external_lex_state = 31}, - [1224] = {.lex_state = 249, .external_lex_state = 31}, - [1225] = {.lex_state = 249, .external_lex_state = 31}, - [1226] = {.lex_state = 128, .external_lex_state = 21}, - [1227] = {.lex_state = 128, .external_lex_state = 21}, - [1228] = {.lex_state = 128, .external_lex_state = 21}, - [1229] = {.lex_state = 224, .external_lex_state = 22}, - [1230] = {.lex_state = 176, .external_lex_state = 19}, - [1231] = {.lex_state = 224, .external_lex_state = 22}, - [1232] = {.lex_state = 176, .external_lex_state = 19}, - [1233] = {.lex_state = 128, .external_lex_state = 13}, - [1234] = {.lex_state = 224, .external_lex_state = 22}, - [1235] = {.lex_state = 176, .external_lex_state = 19}, - [1236] = {.lex_state = 224, .external_lex_state = 22}, - [1237] = {.lex_state = 176, .external_lex_state = 19}, - [1238] = {.lex_state = 128, .external_lex_state = 13}, - [1239] = {.lex_state = 128, .external_lex_state = 21}, - [1240] = {.lex_state = 128, .external_lex_state = 21}, - [1241] = {.lex_state = 224, .external_lex_state = 22}, - [1242] = {.lex_state = 237, .external_lex_state = 27}, - [1243] = {.lex_state = 224, .external_lex_state = 22}, - [1244] = {.lex_state = 237, .external_lex_state = 27}, - [1245] = {.lex_state = 128, .external_lex_state = 13}, - [1246] = {.lex_state = 224, .external_lex_state = 22}, - [1247] = {.lex_state = 237, .external_lex_state = 27}, - [1248] = {.lex_state = 224, .external_lex_state = 22}, - [1249] = {.lex_state = 237, .external_lex_state = 27}, - [1250] = {.lex_state = 128, .external_lex_state = 13}, - [1251] = {.lex_state = 240, .external_lex_state = 28}, - [1252] = {.lex_state = 128}, - [1253] = {.lex_state = 240, .external_lex_state = 28}, - [1254] = {.lex_state = 128}, - [1255] = {.lex_state = 249, .external_lex_state = 31}, - [1256] = {.lex_state = 240, .external_lex_state = 28}, - [1257] = {.lex_state = 249, .external_lex_state = 31}, - [1258] = {.lex_state = 249, .external_lex_state = 31}, - [1259] = {.lex_state = 128, .external_lex_state = 21}, - [1260] = {.lex_state = 249, .external_lex_state = 31}, - [1261] = {.lex_state = 249, .external_lex_state = 31}, - [1262] = {.lex_state = 249, .external_lex_state = 31}, - [1263] = {.lex_state = 128, .external_lex_state = 21}, - [1264] = {.lex_state = 216, .external_lex_state = 2}, - [1265] = {.lex_state = 181, .external_lex_state = 7}, - [1266] = {.lex_state = 255, .external_lex_state = 33}, - [1267] = {.lex_state = 255, .external_lex_state = 33}, - [1268] = {.lex_state = 237}, - [1269] = {.lex_state = 244, .external_lex_state = 4}, - [1270] = {.lex_state = 261, .external_lex_state = 2}, - [1271] = {.lex_state = 151, .external_lex_state = 7}, - [1272] = {.lex_state = 168, .external_lex_state = 9}, - [1273] = {.lex_state = 261, .external_lex_state = 2}, - [1274] = {.lex_state = 261, .external_lex_state = 2}, - [1275] = {.lex_state = 237}, - [1276] = {.lex_state = 255, .external_lex_state = 33}, - [1277] = {.lex_state = 244, .external_lex_state = 4}, - [1278] = {.lex_state = 261, .external_lex_state = 2}, - [1279] = {.lex_state = 261, .external_lex_state = 2}, - [1280] = {.lex_state = 181, .external_lex_state = 7}, - [1281] = {.lex_state = 128, .external_lex_state = 13}, - [1282] = {.lex_state = 128, .external_lex_state = 13}, - [1283] = {.lex_state = 178, .external_lex_state = 11}, - [1284] = {.lex_state = 178, .external_lex_state = 11}, - [1285] = {.lex_state = 178, .external_lex_state = 11}, - [1286] = {.lex_state = 178, .external_lex_state = 11}, - [1287] = {.lex_state = 181, .external_lex_state = 7}, - [1288] = {.lex_state = 264, .external_lex_state = 11}, - [1289] = {.lex_state = 264, .external_lex_state = 11}, - [1290] = {.lex_state = 257, .external_lex_state = 11}, - [1291] = {.lex_state = 264, .external_lex_state = 11}, - [1292] = {.lex_state = 128, .external_lex_state = 13}, - [1293] = {.lex_state = 128, .external_lex_state = 13}, - [1294] = {.lex_state = 264, .external_lex_state = 11}, - [1295] = {.lex_state = 224, .external_lex_state = 22}, - [1296] = {.lex_state = 128}, - [1297] = {.lex_state = 264, .external_lex_state = 11}, - [1298] = {.lex_state = 224, .external_lex_state = 22}, - [1299] = {.lex_state = 128}, - [1300] = {.lex_state = 264, .external_lex_state = 11}, - [1301] = {.lex_state = 264, .external_lex_state = 11}, - [1302] = {.lex_state = 264, .external_lex_state = 11}, - [1303] = {.lex_state = 264, .external_lex_state = 11}, - [1304] = {.lex_state = 264, .external_lex_state = 11}, - [1305] = {.lex_state = 264, .external_lex_state = 11}, - [1306] = {.lex_state = 181, .external_lex_state = 30}, - [1307] = {.lex_state = 181, .external_lex_state = 30}, - [1308] = {.lex_state = 128}, - [1309] = {.lex_state = 181, .external_lex_state = 30}, - [1310] = {.lex_state = 128}, - [1311] = {.lex_state = 249, .external_lex_state = 31}, - [1312] = {.lex_state = 181, .external_lex_state = 30}, - [1313] = {.lex_state = 249, .external_lex_state = 31}, - [1314] = {.lex_state = 249, .external_lex_state = 31}, - [1315] = {.lex_state = 128, .external_lex_state = 21}, - [1316] = {.lex_state = 249, .external_lex_state = 31}, - [1317] = {.lex_state = 249, .external_lex_state = 31}, - [1318] = {.lex_state = 249, .external_lex_state = 31}, - [1319] = {.lex_state = 128, .external_lex_state = 21}, - [1320] = {.lex_state = 128, .external_lex_state = 13}, - [1321] = {.lex_state = 128, .external_lex_state = 13}, - [1322] = {.lex_state = 170, .external_lex_state = 12}, - [1323] = {.lex_state = 170, .external_lex_state = 12}, - [1324] = {.lex_state = 170, .external_lex_state = 12}, - [1325] = {.lex_state = 170, .external_lex_state = 12}, - [1326] = {.lex_state = 128, .external_lex_state = 13}, - [1327] = {.lex_state = 128, .external_lex_state = 13}, - [1328] = {.lex_state = 154}, - [1329] = {.lex_state = 154}, - [1330] = {.lex_state = 154}, - [1331] = {.lex_state = 154}, - [1332] = {.lex_state = 172, .external_lex_state = 3}, - [1333] = {.lex_state = 172, .external_lex_state = 3}, - [1334] = {.lex_state = 192, .external_lex_state = 12}, - [1335] = {.lex_state = 128}, - [1336] = {.lex_state = 192, .external_lex_state = 12}, - [1337] = {.lex_state = 128}, - [1338] = {.lex_state = 249, .external_lex_state = 31}, - [1339] = {.lex_state = 192, .external_lex_state = 12}, - [1340] = {.lex_state = 249, .external_lex_state = 31}, - [1341] = {.lex_state = 249, .external_lex_state = 31}, - [1342] = {.lex_state = 128, .external_lex_state = 21}, - [1343] = {.lex_state = 249, .external_lex_state = 31}, - [1344] = {.lex_state = 249, .external_lex_state = 31}, - [1345] = {.lex_state = 249, .external_lex_state = 31}, - [1346] = {.lex_state = 128, .external_lex_state = 21}, - [1347] = {.lex_state = 128}, - [1348] = {.lex_state = 128}, - [1349] = {.lex_state = 128}, - [1350] = {.lex_state = 128}, - [1351] = {.lex_state = 244, .external_lex_state = 4}, - [1352] = {.lex_state = 128}, - [1353] = {.lex_state = 244, .external_lex_state = 4}, - [1354] = {.lex_state = 128}, - [1355] = {.lex_state = 266, .external_lex_state = 33}, - [1356] = {.lex_state = 266, .external_lex_state = 33}, - [1357] = {.lex_state = 128}, - [1358] = {.lex_state = 147, .external_lex_state = 4}, - [1359] = {.lex_state = 266, .external_lex_state = 33}, - [1360] = {.lex_state = 270, .external_lex_state = 33}, - [1361] = {.lex_state = 154}, - [1362] = {.lex_state = 270, .external_lex_state = 33}, - [1363] = {.lex_state = 270, .external_lex_state = 33}, - [1364] = {.lex_state = 270, .external_lex_state = 33}, - [1365] = {.lex_state = 161, .external_lex_state = 13}, - [1366] = {.lex_state = 128, .external_lex_state = 13}, - [1367] = {.lex_state = 128, .external_lex_state = 13}, - [1368] = {.lex_state = 128}, - [1369] = {.lex_state = 192, .external_lex_state = 2}, - [1370] = {.lex_state = 128}, - [1371] = {.lex_state = 200, .external_lex_state = 2}, - [1372] = {.lex_state = 128}, - [1373] = {.lex_state = 192, .external_lex_state = 2}, - [1374] = {.lex_state = 266, .external_lex_state = 33}, - [1375] = {.lex_state = 226, .external_lex_state = 34}, - [1376] = {.lex_state = 226, .external_lex_state = 34}, - [1377] = {.lex_state = 188, .external_lex_state = 34}, - [1378] = {.lex_state = 226, .external_lex_state = 15}, - [1379] = {.lex_state = 226, .external_lex_state = 34}, - [1380] = {.lex_state = 128, .external_lex_state = 13}, - [1381] = {.lex_state = 128, .external_lex_state = 13}, - [1382] = {.lex_state = 226, .external_lex_state = 34}, - [1383] = {.lex_state = 224, .external_lex_state = 22}, - [1384] = {.lex_state = 128}, - [1385] = {.lex_state = 226, .external_lex_state = 34}, - [1386] = {.lex_state = 224, .external_lex_state = 22}, - [1387] = {.lex_state = 128}, - [1388] = {.lex_state = 226, .external_lex_state = 34}, - [1389] = {.lex_state = 226, .external_lex_state = 34}, - [1390] = {.lex_state = 128, .external_lex_state = 13}, - [1391] = {.lex_state = 128, .external_lex_state = 13}, - [1392] = {.lex_state = 185, .external_lex_state = 14}, - [1393] = {.lex_state = 185, .external_lex_state = 14}, - [1394] = {.lex_state = 185, .external_lex_state = 14}, - [1395] = {.lex_state = 185, .external_lex_state = 14}, - [1396] = {.lex_state = 228, .external_lex_state = 32}, - [1397] = {.lex_state = 128}, - [1398] = {.lex_state = 228, .external_lex_state = 32}, - [1399] = {.lex_state = 128}, - [1400] = {.lex_state = 249, .external_lex_state = 31}, - [1401] = {.lex_state = 228, .external_lex_state = 32}, - [1402] = {.lex_state = 249, .external_lex_state = 31}, - [1403] = {.lex_state = 249, .external_lex_state = 31}, - [1404] = {.lex_state = 128, .external_lex_state = 21}, - [1405] = {.lex_state = 249, .external_lex_state = 31}, - [1406] = {.lex_state = 249, .external_lex_state = 31}, - [1407] = {.lex_state = 249, .external_lex_state = 31}, - [1408] = {.lex_state = 128, .external_lex_state = 21}, - [1409] = {.lex_state = 268, .external_lex_state = 33}, - [1410] = {.lex_state = 268, .external_lex_state = 33}, - [1411] = {.lex_state = 268, .external_lex_state = 33}, - [1412] = {.lex_state = 268, .external_lex_state = 33}, - [1413] = {.lex_state = 196, .external_lex_state = 34}, - [1414] = {.lex_state = 128, .external_lex_state = 21}, - [1415] = {.lex_state = 128, .external_lex_state = 21}, - [1416] = {.lex_state = 224, .external_lex_state = 22}, - [1417] = {.lex_state = 204, .external_lex_state = 24}, - [1418] = {.lex_state = 224, .external_lex_state = 22}, - [1419] = {.lex_state = 204, .external_lex_state = 24}, - [1420] = {.lex_state = 128, .external_lex_state = 13}, - [1421] = {.lex_state = 224, .external_lex_state = 22}, - [1422] = {.lex_state = 204, .external_lex_state = 24}, - [1423] = {.lex_state = 224, .external_lex_state = 22}, - [1424] = {.lex_state = 204, .external_lex_state = 24}, - [1425] = {.lex_state = 128, .external_lex_state = 13}, - [1426] = {.lex_state = 234, .external_lex_state = 25}, - [1427] = {.lex_state = 128}, - [1428] = {.lex_state = 234, .external_lex_state = 25}, - [1429] = {.lex_state = 128}, - [1430] = {.lex_state = 249, .external_lex_state = 31}, - [1431] = {.lex_state = 234, .external_lex_state = 25}, - [1432] = {.lex_state = 249, .external_lex_state = 31}, - [1433] = {.lex_state = 249, .external_lex_state = 31}, - [1434] = {.lex_state = 128, .external_lex_state = 21}, - [1435] = {.lex_state = 249, .external_lex_state = 31}, - [1436] = {.lex_state = 249, .external_lex_state = 31}, - [1437] = {.lex_state = 249, .external_lex_state = 31}, - [1438] = {.lex_state = 128, .external_lex_state = 21}, - [1439] = {.lex_state = 128, .external_lex_state = 21}, - [1440] = {.lex_state = 128, .external_lex_state = 21}, - [1441] = {.lex_state = 224, .external_lex_state = 22}, - [1442] = {.lex_state = 210, .external_lex_state = 26}, - [1443] = {.lex_state = 224, .external_lex_state = 22}, - [1444] = {.lex_state = 210, .external_lex_state = 26}, - [1445] = {.lex_state = 128, .external_lex_state = 13}, - [1446] = {.lex_state = 224, .external_lex_state = 22}, - [1447] = {.lex_state = 210, .external_lex_state = 26}, - [1448] = {.lex_state = 224, .external_lex_state = 22}, - [1449] = {.lex_state = 210, .external_lex_state = 26}, - [1450] = {.lex_state = 128, .external_lex_state = 13}, - [1451] = {.lex_state = 128, .external_lex_state = 13}, - [1452] = {.lex_state = 128, .external_lex_state = 13}, - [1453] = {.lex_state = 176, .external_lex_state = 19}, - [1454] = {.lex_state = 176, .external_lex_state = 19}, - [1455] = {.lex_state = 176, .external_lex_state = 19}, - [1456] = {.lex_state = 176, .external_lex_state = 19}, - [1457] = {.lex_state = 128, .external_lex_state = 13}, - [1458] = {.lex_state = 128, .external_lex_state = 13}, - [1459] = {.lex_state = 237, .external_lex_state = 27}, - [1460] = {.lex_state = 237, .external_lex_state = 27}, - [1461] = {.lex_state = 237, .external_lex_state = 27}, - [1462] = {.lex_state = 237, .external_lex_state = 27}, - [1463] = {.lex_state = 128, .external_lex_state = 21}, - [1464] = {.lex_state = 128, .external_lex_state = 21}, - [1465] = {.lex_state = 224, .external_lex_state = 22}, - [1466] = {.lex_state = 240, .external_lex_state = 28}, - [1467] = {.lex_state = 224, .external_lex_state = 22}, - [1468] = {.lex_state = 240, .external_lex_state = 28}, - [1469] = {.lex_state = 128, .external_lex_state = 13}, - [1470] = {.lex_state = 224, .external_lex_state = 22}, - [1471] = {.lex_state = 240, .external_lex_state = 28}, - [1472] = {.lex_state = 224, .external_lex_state = 22}, - [1473] = {.lex_state = 240, .external_lex_state = 28}, - [1474] = {.lex_state = 128, .external_lex_state = 13}, - [1475] = {.lex_state = 261, .external_lex_state = 2}, - [1476] = {.lex_state = 244, .external_lex_state = 4}, - [1477] = {.lex_state = 261, .external_lex_state = 2}, - [1478] = {.lex_state = 261, .external_lex_state = 2}, - [1479] = {.lex_state = 244, .external_lex_state = 4}, - [1480] = {.lex_state = 261, .external_lex_state = 2}, - [1481] = {.lex_state = 178, .external_lex_state = 11}, - [1482] = {.lex_state = 178, .external_lex_state = 11}, - [1483] = {.lex_state = 264, .external_lex_state = 11}, - [1484] = {.lex_state = 128}, - [1485] = {.lex_state = 264, .external_lex_state = 11}, - [1486] = {.lex_state = 128}, - [1487] = {.lex_state = 249, .external_lex_state = 31}, - [1488] = {.lex_state = 264, .external_lex_state = 11}, - [1489] = {.lex_state = 249, .external_lex_state = 31}, - [1490] = {.lex_state = 249, .external_lex_state = 31}, - [1491] = {.lex_state = 128, .external_lex_state = 21}, - [1492] = {.lex_state = 249, .external_lex_state = 31}, - [1493] = {.lex_state = 249, .external_lex_state = 31}, - [1494] = {.lex_state = 249, .external_lex_state = 31}, - [1495] = {.lex_state = 128, .external_lex_state = 21}, - [1496] = {.lex_state = 264, .external_lex_state = 11}, - [1497] = {.lex_state = 128, .external_lex_state = 21}, - [1498] = {.lex_state = 128, .external_lex_state = 21}, - [1499] = {.lex_state = 224, .external_lex_state = 22}, - [1500] = {.lex_state = 181, .external_lex_state = 30}, - [1501] = {.lex_state = 224, .external_lex_state = 22}, - [1502] = {.lex_state = 181, .external_lex_state = 30}, - [1503] = {.lex_state = 128, .external_lex_state = 13}, - [1504] = {.lex_state = 224, .external_lex_state = 22}, - [1505] = {.lex_state = 181, .external_lex_state = 30}, - [1506] = {.lex_state = 224, .external_lex_state = 22}, - [1507] = {.lex_state = 181, .external_lex_state = 30}, - [1508] = {.lex_state = 128, .external_lex_state = 13}, - [1509] = {.lex_state = 170, .external_lex_state = 12}, - [1510] = {.lex_state = 170, .external_lex_state = 12}, - [1511] = {.lex_state = 154}, - [1512] = {.lex_state = 154}, - [1513] = {.lex_state = 128, .external_lex_state = 21}, - [1514] = {.lex_state = 128, .external_lex_state = 21}, - [1515] = {.lex_state = 224, .external_lex_state = 22}, - [1516] = {.lex_state = 192, .external_lex_state = 12}, - [1517] = {.lex_state = 224, .external_lex_state = 22}, - [1518] = {.lex_state = 192, .external_lex_state = 12}, - [1519] = {.lex_state = 128, .external_lex_state = 13}, - [1520] = {.lex_state = 224, .external_lex_state = 22}, - [1521] = {.lex_state = 192, .external_lex_state = 12}, - [1522] = {.lex_state = 224, .external_lex_state = 22}, - [1523] = {.lex_state = 192, .external_lex_state = 12}, - [1524] = {.lex_state = 128, .external_lex_state = 13}, - [1525] = {.lex_state = 128}, - [1526] = {.lex_state = 128}, - [1527] = {.lex_state = 128}, - [1528] = {.lex_state = 270, .external_lex_state = 33}, - [1529] = {.lex_state = 270, .external_lex_state = 33}, - [1530] = {.lex_state = 266, .external_lex_state = 33}, - [1531] = {.lex_state = 270, .external_lex_state = 33}, - [1532] = {.lex_state = 128, .external_lex_state = 13}, - [1533] = {.lex_state = 128, .external_lex_state = 13}, - [1534] = {.lex_state = 270, .external_lex_state = 33}, - [1535] = {.lex_state = 224, .external_lex_state = 22}, - [1536] = {.lex_state = 128}, - [1537] = {.lex_state = 270, .external_lex_state = 33}, - [1538] = {.lex_state = 224, .external_lex_state = 22}, - [1539] = {.lex_state = 128}, - [1540] = {.lex_state = 270, .external_lex_state = 33}, - [1541] = {.lex_state = 270, .external_lex_state = 33}, - [1542] = {.lex_state = 226, .external_lex_state = 34}, - [1543] = {.lex_state = 128}, - [1544] = {.lex_state = 226, .external_lex_state = 34}, - [1545] = {.lex_state = 128}, - [1546] = {.lex_state = 249, .external_lex_state = 31}, - [1547] = {.lex_state = 226, .external_lex_state = 34}, - [1548] = {.lex_state = 249, .external_lex_state = 31}, - [1549] = {.lex_state = 249, .external_lex_state = 31}, - [1550] = {.lex_state = 128, .external_lex_state = 21}, - [1551] = {.lex_state = 249, .external_lex_state = 31}, - [1552] = {.lex_state = 249, .external_lex_state = 31}, - [1553] = {.lex_state = 249, .external_lex_state = 31}, - [1554] = {.lex_state = 128, .external_lex_state = 21}, - [1555] = {.lex_state = 185, .external_lex_state = 14}, - [1556] = {.lex_state = 185, .external_lex_state = 14}, - [1557] = {.lex_state = 128, .external_lex_state = 21}, - [1558] = {.lex_state = 128, .external_lex_state = 21}, - [1559] = {.lex_state = 224, .external_lex_state = 22}, - [1560] = {.lex_state = 228, .external_lex_state = 32}, - [1561] = {.lex_state = 224, .external_lex_state = 22}, - [1562] = {.lex_state = 228, .external_lex_state = 32}, - [1563] = {.lex_state = 128, .external_lex_state = 13}, - [1564] = {.lex_state = 224, .external_lex_state = 22}, - [1565] = {.lex_state = 228, .external_lex_state = 32}, - [1566] = {.lex_state = 224, .external_lex_state = 22}, - [1567] = {.lex_state = 228, .external_lex_state = 32}, - [1568] = {.lex_state = 128, .external_lex_state = 13}, - [1569] = {.lex_state = 268, .external_lex_state = 33}, - [1570] = {.lex_state = 128, .external_lex_state = 13}, - [1571] = {.lex_state = 128, .external_lex_state = 13}, - [1572] = {.lex_state = 204, .external_lex_state = 24}, - [1573] = {.lex_state = 204, .external_lex_state = 24}, - [1574] = {.lex_state = 204, .external_lex_state = 24}, - [1575] = {.lex_state = 204, .external_lex_state = 24}, - [1576] = {.lex_state = 128, .external_lex_state = 21}, - [1577] = {.lex_state = 128, .external_lex_state = 21}, - [1578] = {.lex_state = 224, .external_lex_state = 22}, - [1579] = {.lex_state = 234, .external_lex_state = 25}, - [1580] = {.lex_state = 224, .external_lex_state = 22}, - [1581] = {.lex_state = 234, .external_lex_state = 25}, - [1582] = {.lex_state = 128, .external_lex_state = 13}, - [1583] = {.lex_state = 224, .external_lex_state = 22}, - [1584] = {.lex_state = 234, .external_lex_state = 25}, - [1585] = {.lex_state = 224, .external_lex_state = 22}, - [1586] = {.lex_state = 234, .external_lex_state = 25}, - [1587] = {.lex_state = 128, .external_lex_state = 13}, - [1588] = {.lex_state = 128, .external_lex_state = 13}, - [1589] = {.lex_state = 128, .external_lex_state = 13}, - [1590] = {.lex_state = 210, .external_lex_state = 26}, - [1591] = {.lex_state = 210, .external_lex_state = 26}, - [1592] = {.lex_state = 210, .external_lex_state = 26}, - [1593] = {.lex_state = 210, .external_lex_state = 26}, - [1594] = {.lex_state = 176, .external_lex_state = 19}, - [1595] = {.lex_state = 176, .external_lex_state = 19}, - [1596] = {.lex_state = 237, .external_lex_state = 27}, - [1597] = {.lex_state = 237, .external_lex_state = 27}, - [1598] = {.lex_state = 128, .external_lex_state = 13}, - [1599] = {.lex_state = 128, .external_lex_state = 13}, - [1600] = {.lex_state = 240, .external_lex_state = 28}, - [1601] = {.lex_state = 240, .external_lex_state = 28}, - [1602] = {.lex_state = 240, .external_lex_state = 28}, - [1603] = {.lex_state = 240, .external_lex_state = 28}, - [1604] = {.lex_state = 244, .external_lex_state = 4}, - [1605] = {.lex_state = 244, .external_lex_state = 4}, - [1606] = {.lex_state = 128, .external_lex_state = 21}, - [1607] = {.lex_state = 128, .external_lex_state = 21}, - [1608] = {.lex_state = 224, .external_lex_state = 22}, - [1609] = {.lex_state = 264, .external_lex_state = 11}, - [1610] = {.lex_state = 224, .external_lex_state = 22}, - [1611] = {.lex_state = 264, .external_lex_state = 11}, - [1612] = {.lex_state = 128, .external_lex_state = 13}, - [1613] = {.lex_state = 224, .external_lex_state = 22}, - [1614] = {.lex_state = 264, .external_lex_state = 11}, - [1615] = {.lex_state = 224, .external_lex_state = 22}, - [1616] = {.lex_state = 264, .external_lex_state = 11}, - [1617] = {.lex_state = 128, .external_lex_state = 13}, - [1618] = {.lex_state = 128, .external_lex_state = 13}, - [1619] = {.lex_state = 128, .external_lex_state = 13}, - [1620] = {.lex_state = 181, .external_lex_state = 30}, - [1621] = {.lex_state = 181, .external_lex_state = 30}, - [1622] = {.lex_state = 181, .external_lex_state = 30}, - [1623] = {.lex_state = 181, .external_lex_state = 30}, - [1624] = {.lex_state = 128, .external_lex_state = 13}, - [1625] = {.lex_state = 128, .external_lex_state = 13}, - [1626] = {.lex_state = 192, .external_lex_state = 12}, - [1627] = {.lex_state = 192, .external_lex_state = 12}, - [1628] = {.lex_state = 192, .external_lex_state = 12}, - [1629] = {.lex_state = 192, .external_lex_state = 12}, - [1630] = {.lex_state = 270, .external_lex_state = 33}, - [1631] = {.lex_state = 128}, - [1632] = {.lex_state = 270, .external_lex_state = 33}, - [1633] = {.lex_state = 128}, - [1634] = {.lex_state = 249, .external_lex_state = 31}, - [1635] = {.lex_state = 270, .external_lex_state = 33}, - [1636] = {.lex_state = 249, .external_lex_state = 31}, - [1637] = {.lex_state = 249, .external_lex_state = 31}, - [1638] = {.lex_state = 128, .external_lex_state = 21}, - [1639] = {.lex_state = 249, .external_lex_state = 31}, - [1640] = {.lex_state = 249, .external_lex_state = 31}, - [1641] = {.lex_state = 249, .external_lex_state = 31}, - [1642] = {.lex_state = 128, .external_lex_state = 21}, - [1643] = {.lex_state = 128, .external_lex_state = 21}, - [1644] = {.lex_state = 128, .external_lex_state = 21}, - [1645] = {.lex_state = 224, .external_lex_state = 22}, - [1646] = {.lex_state = 226, .external_lex_state = 34}, - [1647] = {.lex_state = 224, .external_lex_state = 22}, - [1648] = {.lex_state = 226, .external_lex_state = 34}, - [1649] = {.lex_state = 128, .external_lex_state = 13}, - [1650] = {.lex_state = 224, .external_lex_state = 22}, - [1651] = {.lex_state = 226, .external_lex_state = 34}, - [1652] = {.lex_state = 224, .external_lex_state = 22}, - [1653] = {.lex_state = 226, .external_lex_state = 34}, - [1654] = {.lex_state = 128, .external_lex_state = 13}, - [1655] = {.lex_state = 128, .external_lex_state = 13}, - [1656] = {.lex_state = 128, .external_lex_state = 13}, - [1657] = {.lex_state = 228, .external_lex_state = 32}, - [1658] = {.lex_state = 228, .external_lex_state = 32}, - [1659] = {.lex_state = 228, .external_lex_state = 32}, - [1660] = {.lex_state = 228, .external_lex_state = 32}, - [1661] = {.lex_state = 204, .external_lex_state = 24}, - [1662] = {.lex_state = 204, .external_lex_state = 24}, - [1663] = {.lex_state = 128, .external_lex_state = 13}, - [1664] = {.lex_state = 128, .external_lex_state = 13}, - [1665] = {.lex_state = 234, .external_lex_state = 25}, - [1666] = {.lex_state = 234, .external_lex_state = 25}, - [1667] = {.lex_state = 234, .external_lex_state = 25}, - [1668] = {.lex_state = 234, .external_lex_state = 25}, - [1669] = {.lex_state = 210, .external_lex_state = 26}, - [1670] = {.lex_state = 210, .external_lex_state = 26}, - [1671] = {.lex_state = 240, .external_lex_state = 28}, - [1672] = {.lex_state = 240, .external_lex_state = 28}, - [1673] = {.lex_state = 128, .external_lex_state = 13}, - [1674] = {.lex_state = 128, .external_lex_state = 13}, - [1675] = {.lex_state = 264, .external_lex_state = 11}, - [1676] = {.lex_state = 264, .external_lex_state = 11}, - [1677] = {.lex_state = 264, .external_lex_state = 11}, - [1678] = {.lex_state = 264, .external_lex_state = 11}, - [1679] = {.lex_state = 181, .external_lex_state = 30}, - [1680] = {.lex_state = 181, .external_lex_state = 30}, - [1681] = {.lex_state = 192, .external_lex_state = 12}, - [1682] = {.lex_state = 192, .external_lex_state = 12}, - [1683] = {.lex_state = 128, .external_lex_state = 21}, - [1684] = {.lex_state = 128, .external_lex_state = 21}, - [1685] = {.lex_state = 224, .external_lex_state = 22}, - [1686] = {.lex_state = 270, .external_lex_state = 33}, - [1687] = {.lex_state = 224, .external_lex_state = 22}, - [1688] = {.lex_state = 270, .external_lex_state = 33}, - [1689] = {.lex_state = 128, .external_lex_state = 13}, - [1690] = {.lex_state = 224, .external_lex_state = 22}, - [1691] = {.lex_state = 270, .external_lex_state = 33}, - [1692] = {.lex_state = 224, .external_lex_state = 22}, - [1693] = {.lex_state = 270, .external_lex_state = 33}, - [1694] = {.lex_state = 128, .external_lex_state = 13}, - [1695] = {.lex_state = 128, .external_lex_state = 13}, - [1696] = {.lex_state = 128, .external_lex_state = 13}, - [1697] = {.lex_state = 226, .external_lex_state = 34}, - [1698] = {.lex_state = 226, .external_lex_state = 34}, - [1699] = {.lex_state = 226, .external_lex_state = 34}, - [1700] = {.lex_state = 226, .external_lex_state = 34}, - [1701] = {.lex_state = 228, .external_lex_state = 32}, - [1702] = {.lex_state = 228, .external_lex_state = 32}, - [1703] = {.lex_state = 234, .external_lex_state = 25}, - [1704] = {.lex_state = 234, .external_lex_state = 25}, - [1705] = {.lex_state = 264, .external_lex_state = 11}, - [1706] = {.lex_state = 264, .external_lex_state = 11}, - [1707] = {.lex_state = 128, .external_lex_state = 13}, - [1708] = {.lex_state = 128, .external_lex_state = 13}, - [1709] = {.lex_state = 270, .external_lex_state = 33}, - [1710] = {.lex_state = 270, .external_lex_state = 33}, - [1711] = {.lex_state = 270, .external_lex_state = 33}, - [1712] = {.lex_state = 270, .external_lex_state = 33}, - [1713] = {.lex_state = 226, .external_lex_state = 34}, - [1714] = {.lex_state = 226, .external_lex_state = 34}, - [1715] = {.lex_state = 270, .external_lex_state = 33}, - [1716] = {.lex_state = 270, .external_lex_state = 33}, + [1] = {.lex_state = 51, .external_lex_state = 2}, + [2] = {.lex_state = 51}, + [3] = {.lex_state = 112}, + [4] = {.lex_state = 133}, + [5] = {.lex_state = 51, .external_lex_state = 2}, + [6] = {.lex_state = 51, .external_lex_state = 2}, + [7] = {.lex_state = 136}, + [8] = {.lex_state = 136}, + [9] = {.lex_state = 51, .external_lex_state = 2}, + [10] = {.lex_state = 138, .external_lex_state = 3}, + [11] = {.lex_state = 136}, + [12] = {.lex_state = 144, .external_lex_state = 4}, + [13] = {.lex_state = 146}, + [14] = {.lex_state = 144, .external_lex_state = 4}, + [15] = {.lex_state = 153}, + [16] = {.lex_state = 156, .external_lex_state = 5}, + [17] = {.lex_state = 51, .external_lex_state = 2}, + [18] = {.lex_state = 51, .external_lex_state = 2}, + [19] = {.lex_state = 51, .external_lex_state = 2}, + [20] = {.lex_state = 158, .external_lex_state = 4}, + [21] = {.lex_state = 51}, + [22] = {.lex_state = 160, .external_lex_state = 2}, + [23] = {.lex_state = 163, .external_lex_state = 6}, + [24] = {.lex_state = 144, .external_lex_state = 7}, + [25] = {.lex_state = 165, .external_lex_state = 8}, + [26] = {.lex_state = 112}, + [27] = {.lex_state = 136, .external_lex_state = 2}, + [28] = {.lex_state = 167, .external_lex_state = 7}, + [29] = {.lex_state = 51, .external_lex_state = 2}, + [30] = {.lex_state = 136, .external_lex_state = 2}, + [31] = {.lex_state = 136}, + [32] = {.lex_state = 169, .external_lex_state = 9}, + [33] = {.lex_state = 136}, + [34] = {.lex_state = 173, .external_lex_state = 8}, + [35] = {.lex_state = 112}, + [36] = {.lex_state = 112}, + [37] = {.lex_state = 163, .external_lex_state = 6}, + [38] = {.lex_state = 165, .external_lex_state = 8}, + [39] = {.lex_state = 112}, + [40] = {.lex_state = 175, .external_lex_state = 10}, + [41] = {.lex_state = 146}, + [42] = {.lex_state = 175, .external_lex_state = 10}, + [43] = {.lex_state = 153}, + [44] = {.lex_state = 156, .external_lex_state = 5}, + [45] = {.lex_state = 51, .external_lex_state = 2}, + [46] = {.lex_state = 51, .external_lex_state = 2}, + [47] = {.lex_state = 51, .external_lex_state = 2}, + [48] = {.lex_state = 175, .external_lex_state = 6}, + [49] = {.lex_state = 112}, + [50] = {.lex_state = 112}, + [51] = {.lex_state = 136}, + [52] = {.lex_state = 178, .external_lex_state = 3}, + [53] = {.lex_state = 167, .external_lex_state = 4}, + [54] = {.lex_state = 146}, + [55] = {.lex_state = 167, .external_lex_state = 4}, + [56] = {.lex_state = 153}, + [57] = {.lex_state = 156, .external_lex_state = 5}, + [58] = {.lex_state = 51, .external_lex_state = 2}, + [59] = {.lex_state = 51, .external_lex_state = 2}, + [60] = {.lex_state = 51, .external_lex_state = 2}, + [61] = {.lex_state = 180, .external_lex_state = 4}, + [62] = {.lex_state = 163, .external_lex_state = 6}, + [63] = {.lex_state = 167, .external_lex_state = 7}, + [64] = {.lex_state = 173, .external_lex_state = 8}, + [65] = {.lex_state = 112}, + [66] = {.lex_state = 51, .external_lex_state = 2}, + [67] = {.lex_state = 136, .external_lex_state = 2}, + [68] = {.lex_state = 112}, + [69] = {.lex_state = 178, .external_lex_state = 3}, + [70] = {.lex_state = 178, .external_lex_state = 3}, + [71] = {.lex_state = 112}, + [72] = {.lex_state = 138, .external_lex_state = 3}, + [73] = {.lex_state = 136, .external_lex_state = 11}, + [74] = {.lex_state = 146}, + [75] = {.lex_state = 136, .external_lex_state = 11}, + [76] = {.lex_state = 153}, + [77] = {.lex_state = 156, .external_lex_state = 5}, + [78] = {.lex_state = 51, .external_lex_state = 2}, + [79] = {.lex_state = 51, .external_lex_state = 2}, + [80] = {.lex_state = 51, .external_lex_state = 2}, + [81] = {.lex_state = 136, .external_lex_state = 2}, + [82] = {.lex_state = 136}, + [83] = {.lex_state = 144, .external_lex_state = 4}, + [84] = {.lex_state = 144, .external_lex_state = 4}, + [85] = {.lex_state = 146, .external_lex_state = 12}, + [86] = {.lex_state = 153}, + [87] = {.lex_state = 156, .external_lex_state = 5}, + [88] = {.lex_state = 51, .external_lex_state = 2}, + [89] = {.lex_state = 51, .external_lex_state = 2}, + [90] = {.lex_state = 146}, + [91] = {.lex_state = 144, .external_lex_state = 4}, + [92] = {.lex_state = 144, .external_lex_state = 4}, + [93] = {.lex_state = 112}, + [94] = {.lex_state = 112, .external_lex_state = 13}, + [95] = {.lex_state = 153, .external_lex_state = 5}, + [96] = {.lex_state = 112, .external_lex_state = 13}, + [97] = {.lex_state = 112, .external_lex_state = 13}, + [98] = {.lex_state = 112}, + [99] = {.lex_state = 133}, + [100] = {.lex_state = 51, .external_lex_state = 2}, + [101] = {.lex_state = 51, .external_lex_state = 2}, + [102] = {.lex_state = 136}, + [103] = {.lex_state = 136}, + [104] = {.lex_state = 51, .external_lex_state = 2}, + [105] = {.lex_state = 182, .external_lex_state = 5}, + [106] = {.lex_state = 184, .external_lex_state = 14}, + [107] = {.lex_state = 146}, + [108] = {.lex_state = 184, .external_lex_state = 14}, + [109] = {.lex_state = 153}, + [110] = {.lex_state = 156, .external_lex_state = 5}, + [111] = {.lex_state = 51, .external_lex_state = 2}, + [112] = {.lex_state = 51, .external_lex_state = 2}, + [113] = {.lex_state = 51, .external_lex_state = 2}, + [114] = {.lex_state = 187, .external_lex_state = 14}, + [115] = {.lex_state = 112}, + [116] = {.lex_state = 184, .external_lex_state = 15}, + [117] = {.lex_state = 189, .external_lex_state = 2}, + [118] = {.lex_state = 112}, + [119] = {.lex_state = 184, .external_lex_state = 15}, + [120] = {.lex_state = 136, .external_lex_state = 2}, + [121] = {.lex_state = 112}, + [122] = {.lex_state = 136}, + [123] = {.lex_state = 191, .external_lex_state = 5}, + [124] = {.lex_state = 193, .external_lex_state = 14}, + [125] = {.lex_state = 146}, + [126] = {.lex_state = 193, .external_lex_state = 14}, + [127] = {.lex_state = 153}, + [128] = {.lex_state = 156, .external_lex_state = 5}, + [129] = {.lex_state = 51, .external_lex_state = 2}, + [130] = {.lex_state = 51, .external_lex_state = 2}, + [131] = {.lex_state = 51, .external_lex_state = 2}, + [132] = {.lex_state = 195, .external_lex_state = 14}, + [133] = {.lex_state = 112}, + [134] = {.lex_state = 193, .external_lex_state = 15}, + [135] = {.lex_state = 197, .external_lex_state = 2}, + [136] = {.lex_state = 112}, + [137] = {.lex_state = 136, .external_lex_state = 2}, + [138] = {.lex_state = 112}, + [139] = {.lex_state = 189, .external_lex_state = 2}, + [140] = {.lex_state = 112}, + [141] = {.lex_state = 51, .external_lex_state = 2}, + [142] = {.lex_state = 160, .external_lex_state = 2}, + [143] = {.lex_state = 51, .external_lex_state = 2}, + [144] = {.lex_state = 51}, + [145] = {.lex_state = 136}, + [146] = {.lex_state = 199, .external_lex_state = 16}, + [147] = {.lex_state = 136}, + [148] = {.lex_state = 144, .external_lex_state = 4}, + [149] = {.lex_state = 144, .external_lex_state = 4}, + [150] = {.lex_state = 201, .external_lex_state = 7}, + [151] = {.lex_state = 167, .external_lex_state = 7}, + [152] = {.lex_state = 144, .external_lex_state = 7}, + [153] = {.lex_state = 205, .external_lex_state = 7}, + [154] = {.lex_state = 51, .external_lex_state = 2}, + [155] = {.lex_state = 112}, + [156] = {.lex_state = 144, .external_lex_state = 7}, + [157] = {.lex_state = 112}, + [158] = {.lex_state = 136, .external_lex_state = 2}, + [159] = {.lex_state = 136, .external_lex_state = 11}, + [160] = {.lex_state = 136, .external_lex_state = 11}, + [161] = {.lex_state = 136, .external_lex_state = 2}, + [162] = {.lex_state = 173, .external_lex_state = 8}, + [163] = {.lex_state = 207}, + [164] = {.lex_state = 165, .external_lex_state = 17}, + [165] = {.lex_state = 146}, + [166] = {.lex_state = 165, .external_lex_state = 17}, + [167] = {.lex_state = 153}, + [168] = {.lex_state = 156, .external_lex_state = 5}, + [169] = {.lex_state = 51, .external_lex_state = 2}, + [170] = {.lex_state = 51, .external_lex_state = 2}, + [171] = {.lex_state = 51, .external_lex_state = 2}, + [172] = {.lex_state = 209, .external_lex_state = 18}, + [173] = {.lex_state = 146}, + [174] = {.lex_state = 209, .external_lex_state = 18}, + [175] = {.lex_state = 153}, + [176] = {.lex_state = 156, .external_lex_state = 5}, + [177] = {.lex_state = 51, .external_lex_state = 2}, + [178] = {.lex_state = 51, .external_lex_state = 2}, + [179] = {.lex_state = 51, .external_lex_state = 2}, + [180] = {.lex_state = 209, .external_lex_state = 18}, + [181] = {.lex_state = 136}, + [182] = {.lex_state = 211, .external_lex_state = 2}, + [183] = {.lex_state = 163, .external_lex_state = 6}, + [184] = {.lex_state = 112}, + [185] = {.lex_state = 217, .external_lex_state = 2}, + [186] = {.lex_state = 136}, + [187] = {.lex_state = 175, .external_lex_state = 6}, + [188] = {.lex_state = 112}, + [189] = {.lex_state = 175, .external_lex_state = 10}, + [190] = {.lex_state = 175, .external_lex_state = 10}, + [191] = {.lex_state = 146}, + [192] = {.lex_state = 175, .external_lex_state = 6}, + [193] = {.lex_state = 112}, + [194] = {.lex_state = 175, .external_lex_state = 10}, + [195] = {.lex_state = 175, .external_lex_state = 10}, + [196] = {.lex_state = 112}, + [197] = {.lex_state = 112, .external_lex_state = 13}, + [198] = {.lex_state = 153, .external_lex_state = 5}, + [199] = {.lex_state = 112, .external_lex_state = 13}, + [200] = {.lex_state = 112, .external_lex_state = 13}, + [201] = {.lex_state = 112}, + [202] = {.lex_state = 189, .external_lex_state = 2}, + [203] = {.lex_state = 112}, + [204] = {.lex_state = 197, .external_lex_state = 2}, + [205] = {.lex_state = 112}, + [206] = {.lex_state = 189, .external_lex_state = 2}, + [207] = {.lex_state = 112}, + [208] = {.lex_state = 227, .external_lex_state = 19}, + [209] = {.lex_state = 229, .external_lex_state = 7}, + [210] = {.lex_state = 169, .external_lex_state = 9}, + [211] = {.lex_state = 112}, + [212] = {.lex_state = 112}, + [213] = {.lex_state = 112}, + [214] = {.lex_state = 178, .external_lex_state = 3}, + [215] = {.lex_state = 136}, + [216] = {.lex_state = 167, .external_lex_state = 4}, + [217] = {.lex_state = 167, .external_lex_state = 4}, + [218] = {.lex_state = 146}, + [219] = {.lex_state = 167, .external_lex_state = 4}, + [220] = {.lex_state = 167, .external_lex_state = 4}, + [221] = {.lex_state = 112}, + [222] = {.lex_state = 112, .external_lex_state = 13}, + [223] = {.lex_state = 153, .external_lex_state = 5}, + [224] = {.lex_state = 112, .external_lex_state = 13}, + [225] = {.lex_state = 112, .external_lex_state = 13}, + [226] = {.lex_state = 112}, + [227] = {.lex_state = 189, .external_lex_state = 2}, + [228] = {.lex_state = 112}, + [229] = {.lex_state = 197, .external_lex_state = 2}, + [230] = {.lex_state = 112}, + [231] = {.lex_state = 189, .external_lex_state = 2}, + [232] = {.lex_state = 112}, + [233] = {.lex_state = 51, .external_lex_state = 2}, + [234] = {.lex_state = 163, .external_lex_state = 6}, + [235] = {.lex_state = 232, .external_lex_state = 2}, + [236] = {.lex_state = 51, .external_lex_state = 2}, + [237] = {.lex_state = 51}, + [238] = {.lex_state = 136}, + [239] = {.lex_state = 136}, + [240] = {.lex_state = 167, .external_lex_state = 4}, + [241] = {.lex_state = 167, .external_lex_state = 4}, + [242] = {.lex_state = 167, .external_lex_state = 7}, + [243] = {.lex_state = 201, .external_lex_state = 7}, + [244] = {.lex_state = 163, .external_lex_state = 6}, + [245] = {.lex_state = 173, .external_lex_state = 8}, + [246] = {.lex_state = 51, .external_lex_state = 2}, + [247] = {.lex_state = 167, .external_lex_state = 7}, + [248] = {.lex_state = 169, .external_lex_state = 9}, + [249] = {.lex_state = 178, .external_lex_state = 3}, + [250] = {.lex_state = 138, .external_lex_state = 3}, + [251] = {.lex_state = 136}, + [252] = {.lex_state = 136, .external_lex_state = 11}, + [253] = {.lex_state = 136, .external_lex_state = 11}, + [254] = {.lex_state = 146}, + [255] = {.lex_state = 136, .external_lex_state = 11}, + [256] = {.lex_state = 136, .external_lex_state = 11}, + [257] = {.lex_state = 112}, + [258] = {.lex_state = 112, .external_lex_state = 13}, + [259] = {.lex_state = 153, .external_lex_state = 5}, + [260] = {.lex_state = 112, .external_lex_state = 13}, + [261] = {.lex_state = 112, .external_lex_state = 13}, + [262] = {.lex_state = 112}, + [263] = {.lex_state = 189, .external_lex_state = 2}, + [264] = {.lex_state = 112}, + [265] = {.lex_state = 197, .external_lex_state = 2}, + [266] = {.lex_state = 112}, + [267] = {.lex_state = 189, .external_lex_state = 2}, + [268] = {.lex_state = 144, .external_lex_state = 4}, + [269] = {.lex_state = 144, .external_lex_state = 4}, + [270] = {.lex_state = 146}, + [271] = {.lex_state = 146, .external_lex_state = 12}, + [272] = {.lex_state = 146, .external_lex_state = 12}, + [273] = {.lex_state = 112}, + [274] = {.lex_state = 112, .external_lex_state = 13}, + [275] = {.lex_state = 153, .external_lex_state = 5}, + [276] = {.lex_state = 112, .external_lex_state = 13}, + [277] = {.lex_state = 112, .external_lex_state = 13}, + [278] = {.lex_state = 112}, + [279] = {.lex_state = 189, .external_lex_state = 2}, + [280] = {.lex_state = 112}, + [281] = {.lex_state = 197, .external_lex_state = 2}, + [282] = {.lex_state = 144, .external_lex_state = 4}, + [283] = {.lex_state = 146}, + [284] = {.lex_state = 234, .external_lex_state = 13}, + [285] = {.lex_state = 136}, + [286] = {.lex_state = 144, .external_lex_state = 4}, + [287] = {.lex_state = 234, .external_lex_state = 13}, + [288] = {.lex_state = 112}, + [289] = {.lex_state = 112, .external_lex_state = 13}, + [290] = {.lex_state = 112, .external_lex_state = 13}, + [291] = {.lex_state = 112, .external_lex_state = 13}, + [292] = {.lex_state = 144, .external_lex_state = 4}, + [293] = {.lex_state = 234, .external_lex_state = 13}, + [294] = {.lex_state = 144, .external_lex_state = 4}, + [295] = {.lex_state = 169, .external_lex_state = 9}, + [296] = {.lex_state = 189, .external_lex_state = 2}, + [297] = {.lex_state = 112}, + [298] = {.lex_state = 112}, + [299] = {.lex_state = 112}, + [300] = {.lex_state = 175, .external_lex_state = 10}, + [301] = {.lex_state = 175, .external_lex_state = 10}, + [302] = {.lex_state = 175, .external_lex_state = 6}, + [303] = {.lex_state = 112}, + [304] = {.lex_state = 163, .external_lex_state = 6}, + [305] = {.lex_state = 173, .external_lex_state = 8}, + [306] = {.lex_state = 51, .external_lex_state = 2}, + [307] = {.lex_state = 112}, + [308] = {.lex_state = 236, .external_lex_state = 5}, + [309] = {.lex_state = 236, .external_lex_state = 5}, + [310] = {.lex_state = 112}, + [311] = {.lex_state = 182, .external_lex_state = 5}, + [312] = {.lex_state = 136}, + [313] = {.lex_state = 184, .external_lex_state = 14}, + [314] = {.lex_state = 184, .external_lex_state = 14}, + [315] = {.lex_state = 146}, + [316] = {.lex_state = 184, .external_lex_state = 14}, + [317] = {.lex_state = 184, .external_lex_state = 14}, + [318] = {.lex_state = 112}, + [319] = {.lex_state = 112, .external_lex_state = 13}, + [320] = {.lex_state = 153, .external_lex_state = 5}, + [321] = {.lex_state = 112, .external_lex_state = 13}, + [322] = {.lex_state = 112, .external_lex_state = 13}, + [323] = {.lex_state = 112}, + [324] = {.lex_state = 189, .external_lex_state = 2}, + [325] = {.lex_state = 112}, + [326] = {.lex_state = 197, .external_lex_state = 2}, + [327] = {.lex_state = 112}, + [328] = {.lex_state = 189, .external_lex_state = 2}, + [329] = {.lex_state = 112}, + [330] = {.lex_state = 51, .external_lex_state = 2}, + [331] = {.lex_state = 144, .external_lex_state = 4}, + [332] = {.lex_state = 51, .external_lex_state = 2}, + [333] = {.lex_state = 51}, + [334] = {.lex_state = 136}, + [335] = {.lex_state = 199, .external_lex_state = 16}, + [336] = {.lex_state = 136}, + [337] = {.lex_state = 184, .external_lex_state = 14}, + [338] = {.lex_state = 184, .external_lex_state = 14}, + [339] = {.lex_state = 238, .external_lex_state = 15}, + [340] = {.lex_state = 184, .external_lex_state = 15}, + [341] = {.lex_state = 184, .external_lex_state = 15}, + [342] = {.lex_state = 240, .external_lex_state = 15}, + [343] = {.lex_state = 184, .external_lex_state = 15}, + [344] = {.lex_state = 169, .external_lex_state = 9}, + [345] = {.lex_state = 112}, + [346] = {.lex_state = 112}, + [347] = {.lex_state = 112}, + [348] = {.lex_state = 191, .external_lex_state = 5}, + [349] = {.lex_state = 136}, + [350] = {.lex_state = 193, .external_lex_state = 14}, + [351] = {.lex_state = 193, .external_lex_state = 14}, + [352] = {.lex_state = 146}, + [353] = {.lex_state = 193, .external_lex_state = 14}, + [354] = {.lex_state = 193, .external_lex_state = 14}, + [355] = {.lex_state = 112}, + [356] = {.lex_state = 112, .external_lex_state = 13}, + [357] = {.lex_state = 153, .external_lex_state = 5}, + [358] = {.lex_state = 112, .external_lex_state = 13}, + [359] = {.lex_state = 112, .external_lex_state = 13}, + [360] = {.lex_state = 112}, + [361] = {.lex_state = 189, .external_lex_state = 2}, + [362] = {.lex_state = 112}, + [363] = {.lex_state = 197, .external_lex_state = 2}, + [364] = {.lex_state = 112}, + [365] = {.lex_state = 189, .external_lex_state = 2}, + [366] = {.lex_state = 112}, + [367] = {.lex_state = 51, .external_lex_state = 2}, + [368] = {.lex_state = 51, .external_lex_state = 2}, + [369] = {.lex_state = 51}, + [370] = {.lex_state = 136}, + [371] = {.lex_state = 136}, + [372] = {.lex_state = 193, .external_lex_state = 14}, + [373] = {.lex_state = 193, .external_lex_state = 14}, + [374] = {.lex_state = 193, .external_lex_state = 15}, + [375] = {.lex_state = 242, .external_lex_state = 15}, + [376] = {.lex_state = 193, .external_lex_state = 15}, + [377] = {.lex_state = 144, .external_lex_state = 4}, + [378] = {.lex_state = 112}, + [379] = {.lex_state = 163, .external_lex_state = 6}, + [380] = {.lex_state = 173, .external_lex_state = 8}, + [381] = {.lex_state = 163, .external_lex_state = 6}, + [382] = {.lex_state = 165, .external_lex_state = 8}, + [383] = {.lex_state = 136}, + [384] = {.lex_state = 205, .external_lex_state = 4}, + [385] = {.lex_state = 146}, + [386] = {.lex_state = 205, .external_lex_state = 4}, + [387] = {.lex_state = 153}, + [388] = {.lex_state = 156, .external_lex_state = 5}, + [389] = {.lex_state = 51, .external_lex_state = 2}, + [390] = {.lex_state = 51, .external_lex_state = 2}, + [391] = {.lex_state = 51, .external_lex_state = 2}, + [392] = {.lex_state = 201, .external_lex_state = 7}, + [393] = {.lex_state = 201, .external_lex_state = 7}, + [394] = {.lex_state = 244, .external_lex_state = 20}, + [395] = {.lex_state = 201, .external_lex_state = 7}, + [396] = {.lex_state = 205, .external_lex_state = 4}, + [397] = {.lex_state = 205, .external_lex_state = 4}, + [398] = {.lex_state = 201, .external_lex_state = 7}, + [399] = {.lex_state = 144, .external_lex_state = 7}, + [400] = {.lex_state = 205, .external_lex_state = 7}, + [401] = {.lex_state = 205, .external_lex_state = 7}, + [402] = {.lex_state = 169, .external_lex_state = 9}, + [403] = {.lex_state = 136, .external_lex_state = 2}, + [404] = {.lex_state = 144, .external_lex_state = 7}, + [405] = {.lex_state = 173, .external_lex_state = 8}, + [406] = {.lex_state = 207, .external_lex_state = 12}, + [407] = {.lex_state = 146}, + [408] = {.lex_state = 207, .external_lex_state = 12}, + [409] = {.lex_state = 153}, + [410] = {.lex_state = 156, .external_lex_state = 5}, + [411] = {.lex_state = 51, .external_lex_state = 2}, + [412] = {.lex_state = 51, .external_lex_state = 2}, + [413] = {.lex_state = 51, .external_lex_state = 2}, + [414] = {.lex_state = 207}, + [415] = {.lex_state = 207}, + [416] = {.lex_state = 136}, + [417] = {.lex_state = 165, .external_lex_state = 17}, + [418] = {.lex_state = 165, .external_lex_state = 17}, + [419] = {.lex_state = 146}, + [420] = {.lex_state = 165, .external_lex_state = 17}, + [421] = {.lex_state = 165, .external_lex_state = 17}, + [422] = {.lex_state = 112}, + [423] = {.lex_state = 112, .external_lex_state = 13}, + [424] = {.lex_state = 153, .external_lex_state = 5}, + [425] = {.lex_state = 112, .external_lex_state = 13}, + [426] = {.lex_state = 112, .external_lex_state = 13}, + [427] = {.lex_state = 112}, + [428] = {.lex_state = 189, .external_lex_state = 2}, + [429] = {.lex_state = 112}, + [430] = {.lex_state = 197, .external_lex_state = 2}, + [431] = {.lex_state = 112}, + [432] = {.lex_state = 189, .external_lex_state = 2}, + [433] = {.lex_state = 247, .external_lex_state = 21}, + [434] = {.lex_state = 249, .external_lex_state = 12}, + [435] = {.lex_state = 209, .external_lex_state = 18}, + [436] = {.lex_state = 209, .external_lex_state = 18}, + [437] = {.lex_state = 146}, + [438] = {.lex_state = 247, .external_lex_state = 21}, + [439] = {.lex_state = 249, .external_lex_state = 12}, + [440] = {.lex_state = 209, .external_lex_state = 18}, + [441] = {.lex_state = 209, .external_lex_state = 18}, + [442] = {.lex_state = 112}, + [443] = {.lex_state = 112, .external_lex_state = 13}, + [444] = {.lex_state = 153, .external_lex_state = 5}, + [445] = {.lex_state = 112, .external_lex_state = 13}, + [446] = {.lex_state = 112, .external_lex_state = 13}, + [447] = {.lex_state = 112}, + [448] = {.lex_state = 189, .external_lex_state = 2}, + [449] = {.lex_state = 112}, + [450] = {.lex_state = 197, .external_lex_state = 2}, + [451] = {.lex_state = 112}, + [452] = {.lex_state = 189, .external_lex_state = 2}, + [453] = {.lex_state = 112, .external_lex_state = 21}, + [454] = {.lex_state = 251, .external_lex_state = 10}, + [455] = {.lex_state = 146}, + [456] = {.lex_state = 251, .external_lex_state = 10}, + [457] = {.lex_state = 153}, + [458] = {.lex_state = 156, .external_lex_state = 5}, + [459] = {.lex_state = 51, .external_lex_state = 2}, + [460] = {.lex_state = 51, .external_lex_state = 2}, + [461] = {.lex_state = 51, .external_lex_state = 2}, + [462] = {.lex_state = 251, .external_lex_state = 6}, + [463] = {.lex_state = 251, .external_lex_state = 6}, + [464] = {.lex_state = 163, .external_lex_state = 6}, + [465] = {.lex_state = 211, .external_lex_state = 2}, + [466] = {.lex_state = 163, .external_lex_state = 6}, + [467] = {.lex_state = 165, .external_lex_state = 8}, + [468] = {.lex_state = 211, .external_lex_state = 2}, + [469] = {.lex_state = 163, .external_lex_state = 6}, + [470] = {.lex_state = 51, .external_lex_state = 2}, + [471] = {.lex_state = 253, .external_lex_state = 2}, + [472] = {.lex_state = 217, .external_lex_state = 2}, + [473] = {.lex_state = 163, .external_lex_state = 6}, + [474] = {.lex_state = 112}, + [475] = {.lex_state = 112}, + [476] = {.lex_state = 165, .external_lex_state = 8}, + [477] = {.lex_state = 217, .external_lex_state = 2}, + [478] = {.lex_state = 112}, + [479] = {.lex_state = 175, .external_lex_state = 10}, + [480] = {.lex_state = 255}, + [481] = {.lex_state = 175, .external_lex_state = 6}, + [482] = {.lex_state = 175, .external_lex_state = 10}, + [483] = {.lex_state = 175, .external_lex_state = 10}, + [484] = {.lex_state = 255}, + [485] = {.lex_state = 175, .external_lex_state = 6}, + [486] = {.lex_state = 234, .external_lex_state = 13}, + [487] = {.lex_state = 175, .external_lex_state = 10}, + [488] = {.lex_state = 234, .external_lex_state = 13}, + [489] = {.lex_state = 112}, + [490] = {.lex_state = 112, .external_lex_state = 13}, + [491] = {.lex_state = 112, .external_lex_state = 13}, + [492] = {.lex_state = 112, .external_lex_state = 13}, + [493] = {.lex_state = 175, .external_lex_state = 10}, + [494] = {.lex_state = 234, .external_lex_state = 13}, + [495] = {.lex_state = 175, .external_lex_state = 10}, + [496] = {.lex_state = 175, .external_lex_state = 10}, + [497] = {.lex_state = 175, .external_lex_state = 10}, + [498] = {.lex_state = 112}, + [499] = {.lex_state = 261, .external_lex_state = 7}, + [500] = {.lex_state = 227, .external_lex_state = 19}, + [501] = {.lex_state = 163, .external_lex_state = 6}, + [502] = {.lex_state = 165, .external_lex_state = 8}, + [503] = {.lex_state = 227, .external_lex_state = 19}, + [504] = {.lex_state = 51}, + [505] = {.lex_state = 136}, + [506] = {.lex_state = 163, .external_lex_state = 6}, + [507] = {.lex_state = 173, .external_lex_state = 17}, + [508] = {.lex_state = 146}, + [509] = {.lex_state = 173, .external_lex_state = 17}, + [510] = {.lex_state = 153}, + [511] = {.lex_state = 156, .external_lex_state = 5}, + [512] = {.lex_state = 51, .external_lex_state = 2}, + [513] = {.lex_state = 51, .external_lex_state = 2}, + [514] = {.lex_state = 51, .external_lex_state = 2}, + [515] = {.lex_state = 112}, + [516] = {.lex_state = 261, .external_lex_state = 7}, + [517] = {.lex_state = 169, .external_lex_state = 9}, + [518] = {.lex_state = 178, .external_lex_state = 3}, + [519] = {.lex_state = 167, .external_lex_state = 4}, + [520] = {.lex_state = 167, .external_lex_state = 4}, + [521] = {.lex_state = 167, .external_lex_state = 4}, + [522] = {.lex_state = 234, .external_lex_state = 13}, + [523] = {.lex_state = 167, .external_lex_state = 4}, + [524] = {.lex_state = 234, .external_lex_state = 13}, + [525] = {.lex_state = 112}, + [526] = {.lex_state = 112, .external_lex_state = 13}, + [527] = {.lex_state = 112, .external_lex_state = 13}, + [528] = {.lex_state = 112, .external_lex_state = 13}, + [529] = {.lex_state = 167, .external_lex_state = 4}, + [530] = {.lex_state = 234, .external_lex_state = 13}, + [531] = {.lex_state = 167, .external_lex_state = 4}, + [532] = {.lex_state = 167, .external_lex_state = 4}, + [533] = {.lex_state = 167, .external_lex_state = 4}, + [534] = {.lex_state = 112}, + [535] = {.lex_state = 163, .external_lex_state = 6}, + [536] = {.lex_state = 163, .external_lex_state = 6}, + [537] = {.lex_state = 173, .external_lex_state = 8}, + [538] = {.lex_state = 136}, + [539] = {.lex_state = 201, .external_lex_state = 4}, + [540] = {.lex_state = 146}, + [541] = {.lex_state = 201, .external_lex_state = 4}, + [542] = {.lex_state = 153}, + [543] = {.lex_state = 156, .external_lex_state = 5}, + [544] = {.lex_state = 51, .external_lex_state = 2}, + [545] = {.lex_state = 51, .external_lex_state = 2}, + [546] = {.lex_state = 51, .external_lex_state = 2}, + [547] = {.lex_state = 201, .external_lex_state = 4}, + [548] = {.lex_state = 201, .external_lex_state = 4}, + [549] = {.lex_state = 167, .external_lex_state = 7}, + [550] = {.lex_state = 201, .external_lex_state = 7}, + [551] = {.lex_state = 201, .external_lex_state = 7}, + [552] = {.lex_state = 232, .external_lex_state = 2}, + [553] = {.lex_state = 167, .external_lex_state = 7}, + [554] = {.lex_state = 178, .external_lex_state = 3}, + [555] = {.lex_state = 207}, + [556] = {.lex_state = 138, .external_lex_state = 22}, + [557] = {.lex_state = 146}, + [558] = {.lex_state = 138, .external_lex_state = 22}, + [559] = {.lex_state = 153}, + [560] = {.lex_state = 156, .external_lex_state = 5}, + [561] = {.lex_state = 51, .external_lex_state = 2}, + [562] = {.lex_state = 51, .external_lex_state = 2}, + [563] = {.lex_state = 51, .external_lex_state = 2}, + [564] = {.lex_state = 136, .external_lex_state = 11}, + [565] = {.lex_state = 136, .external_lex_state = 11}, + [566] = {.lex_state = 136, .external_lex_state = 11}, + [567] = {.lex_state = 234, .external_lex_state = 13}, + [568] = {.lex_state = 136, .external_lex_state = 11}, + [569] = {.lex_state = 234, .external_lex_state = 13}, + [570] = {.lex_state = 112}, + [571] = {.lex_state = 112, .external_lex_state = 13}, + [572] = {.lex_state = 112, .external_lex_state = 13}, + [573] = {.lex_state = 112, .external_lex_state = 13}, + [574] = {.lex_state = 136, .external_lex_state = 11}, + [575] = {.lex_state = 234, .external_lex_state = 13}, + [576] = {.lex_state = 136, .external_lex_state = 11}, + [577] = {.lex_state = 136, .external_lex_state = 11}, + [578] = {.lex_state = 136, .external_lex_state = 11}, + [579] = {.lex_state = 234, .external_lex_state = 13}, + [580] = {.lex_state = 146, .external_lex_state = 12}, + [581] = {.lex_state = 234, .external_lex_state = 13}, + [582] = {.lex_state = 112}, + [583] = {.lex_state = 112, .external_lex_state = 13}, + [584] = {.lex_state = 112, .external_lex_state = 13}, + [585] = {.lex_state = 112, .external_lex_state = 13}, + [586] = {.lex_state = 146, .external_lex_state = 12}, + [587] = {.lex_state = 234, .external_lex_state = 13}, + [588] = {.lex_state = 146, .external_lex_state = 12}, + [589] = {.lex_state = 146, .external_lex_state = 12}, + [590] = {.lex_state = 144, .external_lex_state = 4}, + [591] = {.lex_state = 263, .external_lex_state = 23}, + [592] = {.lex_state = 146}, + [593] = {.lex_state = 263, .external_lex_state = 23}, + [594] = {.lex_state = 153}, + [595] = {.lex_state = 156, .external_lex_state = 5}, + [596] = {.lex_state = 51, .external_lex_state = 2}, + [597] = {.lex_state = 51, .external_lex_state = 2}, + [598] = {.lex_state = 51, .external_lex_state = 2}, + [599] = {.lex_state = 112, .external_lex_state = 13}, + [600] = {.lex_state = 209, .external_lex_state = 18}, + [601] = {.lex_state = 209, .external_lex_state = 18}, + [602] = {.lex_state = 209, .external_lex_state = 18}, + [603] = {.lex_state = 144, .external_lex_state = 4}, + [604] = {.lex_state = 263, .external_lex_state = 23}, + [605] = {.lex_state = 263, .external_lex_state = 23}, + [606] = {.lex_state = 112, .external_lex_state = 13}, + [607] = {.lex_state = 234, .external_lex_state = 13}, + [608] = {.lex_state = 144, .external_lex_state = 4}, + [609] = {.lex_state = 234, .external_lex_state = 13}, + [610] = {.lex_state = 144, .external_lex_state = 4}, + [611] = {.lex_state = 234, .external_lex_state = 13}, + [612] = {.lex_state = 144, .external_lex_state = 4}, + [613] = {.lex_state = 263, .external_lex_state = 23}, + [614] = {.lex_state = 263, .external_lex_state = 23}, + [615] = {.lex_state = 112, .external_lex_state = 13}, + [616] = {.lex_state = 189, .external_lex_state = 2}, + [617] = {.lex_state = 207}, + [618] = {.lex_state = 189, .external_lex_state = 11}, + [619] = {.lex_state = 146}, + [620] = {.lex_state = 189, .external_lex_state = 11}, + [621] = {.lex_state = 153}, + [622] = {.lex_state = 156, .external_lex_state = 5}, + [623] = {.lex_state = 51, .external_lex_state = 2}, + [624] = {.lex_state = 51, .external_lex_state = 2}, + [625] = {.lex_state = 51, .external_lex_state = 2}, + [626] = {.lex_state = 136}, + [627] = {.lex_state = 211, .external_lex_state = 2}, + [628] = {.lex_state = 112}, + [629] = {.lex_state = 217, .external_lex_state = 2}, + [630] = {.lex_state = 175, .external_lex_state = 6}, + [631] = {.lex_state = 112}, + [632] = {.lex_state = 175, .external_lex_state = 6}, + [633] = {.lex_state = 112}, + [634] = {.lex_state = 112}, + [635] = {.lex_state = 227, .external_lex_state = 19}, + [636] = {.lex_state = 265, .external_lex_state = 15}, + [637] = {.lex_state = 112}, + [638] = {.lex_state = 232, .external_lex_state = 2}, + [639] = {.lex_state = 163, .external_lex_state = 6}, + [640] = {.lex_state = 173, .external_lex_state = 8}, + [641] = {.lex_state = 169, .external_lex_state = 9}, + [642] = {.lex_state = 236, .external_lex_state = 5}, + [643] = {.lex_state = 182, .external_lex_state = 5}, + [644] = {.lex_state = 184, .external_lex_state = 14}, + [645] = {.lex_state = 184, .external_lex_state = 14}, + [646] = {.lex_state = 184, .external_lex_state = 14}, + [647] = {.lex_state = 234, .external_lex_state = 13}, + [648] = {.lex_state = 184, .external_lex_state = 14}, + [649] = {.lex_state = 234, .external_lex_state = 13}, + [650] = {.lex_state = 112}, + [651] = {.lex_state = 112, .external_lex_state = 13}, + [652] = {.lex_state = 112, .external_lex_state = 13}, + [653] = {.lex_state = 112, .external_lex_state = 13}, + [654] = {.lex_state = 184, .external_lex_state = 14}, + [655] = {.lex_state = 234, .external_lex_state = 13}, + [656] = {.lex_state = 184, .external_lex_state = 14}, + [657] = {.lex_state = 184, .external_lex_state = 14}, + [658] = {.lex_state = 184, .external_lex_state = 14}, + [659] = {.lex_state = 112}, + [660] = {.lex_state = 112}, + [661] = {.lex_state = 189, .external_lex_state = 2}, + [662] = {.lex_state = 112}, + [663] = {.lex_state = 189, .external_lex_state = 2}, + [664] = {.lex_state = 136}, + [665] = {.lex_state = 240, .external_lex_state = 14}, + [666] = {.lex_state = 146}, + [667] = {.lex_state = 240, .external_lex_state = 14}, + [668] = {.lex_state = 153}, + [669] = {.lex_state = 156, .external_lex_state = 5}, + [670] = {.lex_state = 51, .external_lex_state = 2}, + [671] = {.lex_state = 51, .external_lex_state = 2}, + [672] = {.lex_state = 51, .external_lex_state = 2}, + [673] = {.lex_state = 238, .external_lex_state = 15}, + [674] = {.lex_state = 238, .external_lex_state = 15}, + [675] = {.lex_state = 244, .external_lex_state = 20}, + [676] = {.lex_state = 238, .external_lex_state = 15}, + [677] = {.lex_state = 240, .external_lex_state = 14}, + [678] = {.lex_state = 240, .external_lex_state = 14}, + [679] = {.lex_state = 238, .external_lex_state = 15}, + [680] = {.lex_state = 184, .external_lex_state = 15}, + [681] = {.lex_state = 240, .external_lex_state = 15}, + [682] = {.lex_state = 240, .external_lex_state = 15}, + [683] = {.lex_state = 184, .external_lex_state = 15}, + [684] = {.lex_state = 197, .external_lex_state = 11}, + [685] = {.lex_state = 146}, + [686] = {.lex_state = 197, .external_lex_state = 11}, + [687] = {.lex_state = 153}, + [688] = {.lex_state = 156, .external_lex_state = 5}, + [689] = {.lex_state = 51, .external_lex_state = 2}, + [690] = {.lex_state = 51, .external_lex_state = 2}, + [691] = {.lex_state = 51, .external_lex_state = 2}, + [692] = {.lex_state = 112}, + [693] = {.lex_state = 267, .external_lex_state = 15}, + [694] = {.lex_state = 169, .external_lex_state = 9}, + [695] = {.lex_state = 191, .external_lex_state = 5}, + [696] = {.lex_state = 193, .external_lex_state = 14}, + [697] = {.lex_state = 193, .external_lex_state = 14}, + [698] = {.lex_state = 193, .external_lex_state = 14}, + [699] = {.lex_state = 234, .external_lex_state = 13}, + [700] = {.lex_state = 193, .external_lex_state = 14}, + [701] = {.lex_state = 234, .external_lex_state = 13}, + [702] = {.lex_state = 112}, + [703] = {.lex_state = 112, .external_lex_state = 13}, + [704] = {.lex_state = 112, .external_lex_state = 13}, + [705] = {.lex_state = 112, .external_lex_state = 13}, + [706] = {.lex_state = 193, .external_lex_state = 14}, + [707] = {.lex_state = 234, .external_lex_state = 13}, + [708] = {.lex_state = 193, .external_lex_state = 14}, + [709] = {.lex_state = 193, .external_lex_state = 14}, + [710] = {.lex_state = 193, .external_lex_state = 14}, + [711] = {.lex_state = 112}, + [712] = {.lex_state = 197, .external_lex_state = 2}, + [713] = {.lex_state = 112}, + [714] = {.lex_state = 197, .external_lex_state = 2}, + [715] = {.lex_state = 136}, + [716] = {.lex_state = 242, .external_lex_state = 14}, + [717] = {.lex_state = 146}, + [718] = {.lex_state = 242, .external_lex_state = 14}, + [719] = {.lex_state = 153}, + [720] = {.lex_state = 156, .external_lex_state = 5}, + [721] = {.lex_state = 51, .external_lex_state = 2}, + [722] = {.lex_state = 51, .external_lex_state = 2}, + [723] = {.lex_state = 51, .external_lex_state = 2}, + [724] = {.lex_state = 242, .external_lex_state = 14}, + [725] = {.lex_state = 242, .external_lex_state = 14}, + [726] = {.lex_state = 193, .external_lex_state = 15}, + [727] = {.lex_state = 242, .external_lex_state = 15}, + [728] = {.lex_state = 242, .external_lex_state = 15}, + [729] = {.lex_state = 193, .external_lex_state = 15}, + [730] = {.lex_state = 229, .external_lex_state = 7}, + [731] = {.lex_state = 205, .external_lex_state = 4}, + [732] = {.lex_state = 205, .external_lex_state = 4}, + [733] = {.lex_state = 201, .external_lex_state = 7}, + [734] = {.lex_state = 136}, + [735] = {.lex_state = 205, .external_lex_state = 4}, + [736] = {.lex_state = 205, .external_lex_state = 4}, + [737] = {.lex_state = 146}, + [738] = {.lex_state = 205, .external_lex_state = 4}, + [739] = {.lex_state = 205, .external_lex_state = 4}, + [740] = {.lex_state = 112}, + [741] = {.lex_state = 112, .external_lex_state = 13}, + [742] = {.lex_state = 153, .external_lex_state = 5}, + [743] = {.lex_state = 112, .external_lex_state = 13}, + [744] = {.lex_state = 112, .external_lex_state = 13}, + [745] = {.lex_state = 112}, + [746] = {.lex_state = 189, .external_lex_state = 2}, + [747] = {.lex_state = 112}, + [748] = {.lex_state = 197, .external_lex_state = 2}, + [749] = {.lex_state = 112}, + [750] = {.lex_state = 189, .external_lex_state = 2}, + [751] = {.lex_state = 244, .external_lex_state = 20}, + [752] = {.lex_state = 201, .external_lex_state = 7}, + [753] = {.lex_state = 153}, + [754] = {.lex_state = 156, .external_lex_state = 5}, + [755] = {.lex_state = 244, .external_lex_state = 20}, + [756] = {.lex_state = 136, .external_lex_state = 2}, + [757] = {.lex_state = 207}, + [758] = {.lex_state = 136, .external_lex_state = 11}, + [759] = {.lex_state = 136, .external_lex_state = 11}, + [760] = {.lex_state = 205, .external_lex_state = 7}, + [761] = {.lex_state = 136}, + [762] = {.lex_state = 207, .external_lex_state = 12}, + [763] = {.lex_state = 207, .external_lex_state = 12}, + [764] = {.lex_state = 146}, + [765] = {.lex_state = 207, .external_lex_state = 12}, + [766] = {.lex_state = 207, .external_lex_state = 12}, + [767] = {.lex_state = 112}, + [768] = {.lex_state = 112, .external_lex_state = 13}, + [769] = {.lex_state = 153, .external_lex_state = 5}, + [770] = {.lex_state = 112, .external_lex_state = 13}, + [771] = {.lex_state = 112, .external_lex_state = 13}, + [772] = {.lex_state = 112}, + [773] = {.lex_state = 189, .external_lex_state = 2}, + [774] = {.lex_state = 112}, + [775] = {.lex_state = 197, .external_lex_state = 2}, + [776] = {.lex_state = 112}, + [777] = {.lex_state = 189, .external_lex_state = 2}, + [778] = {.lex_state = 173, .external_lex_state = 8}, + [779] = {.lex_state = 207}, + [780] = {.lex_state = 165, .external_lex_state = 17}, + [781] = {.lex_state = 165, .external_lex_state = 17}, + [782] = {.lex_state = 165, .external_lex_state = 17}, + [783] = {.lex_state = 234, .external_lex_state = 13}, + [784] = {.lex_state = 165, .external_lex_state = 17}, + [785] = {.lex_state = 234, .external_lex_state = 13}, + [786] = {.lex_state = 112}, + [787] = {.lex_state = 112, .external_lex_state = 13}, + [788] = {.lex_state = 112, .external_lex_state = 13}, + [789] = {.lex_state = 112, .external_lex_state = 13}, + [790] = {.lex_state = 165, .external_lex_state = 17}, + [791] = {.lex_state = 234, .external_lex_state = 13}, + [792] = {.lex_state = 165, .external_lex_state = 17}, + [793] = {.lex_state = 165, .external_lex_state = 17}, + [794] = {.lex_state = 165, .external_lex_state = 17}, + [795] = {.lex_state = 249, .external_lex_state = 12}, + [796] = {.lex_state = 209, .external_lex_state = 18}, + [797] = {.lex_state = 112, .external_lex_state = 13}, + [798] = {.lex_state = 136}, + [799] = {.lex_state = 209, .external_lex_state = 18}, + [800] = {.lex_state = 209, .external_lex_state = 18}, + [801] = {.lex_state = 249, .external_lex_state = 12}, + [802] = {.lex_state = 112, .external_lex_state = 13}, + [803] = {.lex_state = 234, .external_lex_state = 13}, + [804] = {.lex_state = 209, .external_lex_state = 18}, + [805] = {.lex_state = 234, .external_lex_state = 13}, + [806] = {.lex_state = 112}, + [807] = {.lex_state = 112, .external_lex_state = 13}, + [808] = {.lex_state = 112, .external_lex_state = 13}, + [809] = {.lex_state = 112, .external_lex_state = 13}, + [810] = {.lex_state = 209, .external_lex_state = 18}, + [811] = {.lex_state = 234, .external_lex_state = 13}, + [812] = {.lex_state = 209, .external_lex_state = 18}, + [813] = {.lex_state = 209, .external_lex_state = 18}, + [814] = {.lex_state = 209, .external_lex_state = 18}, + [815] = {.lex_state = 136}, + [816] = {.lex_state = 251, .external_lex_state = 10}, + [817] = {.lex_state = 251, .external_lex_state = 10}, + [818] = {.lex_state = 146}, + [819] = {.lex_state = 251, .external_lex_state = 10}, + [820] = {.lex_state = 251, .external_lex_state = 10}, + [821] = {.lex_state = 112}, + [822] = {.lex_state = 112, .external_lex_state = 13}, + [823] = {.lex_state = 153, .external_lex_state = 5}, + [824] = {.lex_state = 112, .external_lex_state = 13}, + [825] = {.lex_state = 112, .external_lex_state = 13}, + [826] = {.lex_state = 112}, + [827] = {.lex_state = 189, .external_lex_state = 2}, + [828] = {.lex_state = 112}, + [829] = {.lex_state = 197, .external_lex_state = 2}, + [830] = {.lex_state = 112}, + [831] = {.lex_state = 189, .external_lex_state = 2}, + [832] = {.lex_state = 112}, + [833] = {.lex_state = 251, .external_lex_state = 6}, + [834] = {.lex_state = 211, .external_lex_state = 2}, + [835] = {.lex_state = 163, .external_lex_state = 6}, + [836] = {.lex_state = 211, .external_lex_state = 2}, + [837] = {.lex_state = 112}, + [838] = {.lex_state = 253, .external_lex_state = 2}, + [839] = {.lex_state = 163, .external_lex_state = 6}, + [840] = {.lex_state = 165, .external_lex_state = 8}, + [841] = {.lex_state = 253, .external_lex_state = 2}, + [842] = {.lex_state = 217, .external_lex_state = 2}, + [843] = {.lex_state = 163, .external_lex_state = 6}, + [844] = {.lex_state = 112}, + [845] = {.lex_state = 217, .external_lex_state = 2}, + [846] = {.lex_state = 112}, + [847] = {.lex_state = 112}, + [848] = {.lex_state = 163, .external_lex_state = 6}, + [849] = {.lex_state = 269, .external_lex_state = 12}, + [850] = {.lex_state = 146}, + [851] = {.lex_state = 269, .external_lex_state = 12}, + [852] = {.lex_state = 153}, + [853] = {.lex_state = 156, .external_lex_state = 5}, + [854] = {.lex_state = 51, .external_lex_state = 2}, + [855] = {.lex_state = 51, .external_lex_state = 2}, + [856] = {.lex_state = 51, .external_lex_state = 2}, + [857] = {.lex_state = 255}, + [858] = {.lex_state = 133}, + [859] = {.lex_state = 255}, + [860] = {.lex_state = 255}, + [861] = {.lex_state = 163, .external_lex_state = 6}, + [862] = {.lex_state = 255}, + [863] = {.lex_state = 255}, + [864] = {.lex_state = 175, .external_lex_state = 10}, + [865] = {.lex_state = 263, .external_lex_state = 23}, + [866] = {.lex_state = 263, .external_lex_state = 23}, + [867] = {.lex_state = 112, .external_lex_state = 13}, + [868] = {.lex_state = 175, .external_lex_state = 10}, + [869] = {.lex_state = 263, .external_lex_state = 23}, + [870] = {.lex_state = 263, .external_lex_state = 23}, + [871] = {.lex_state = 112, .external_lex_state = 13}, + [872] = {.lex_state = 234, .external_lex_state = 13}, + [873] = {.lex_state = 175, .external_lex_state = 10}, + [874] = {.lex_state = 234, .external_lex_state = 13}, + [875] = {.lex_state = 175, .external_lex_state = 10}, + [876] = {.lex_state = 234, .external_lex_state = 13}, + [877] = {.lex_state = 175, .external_lex_state = 10}, + [878] = {.lex_state = 263, .external_lex_state = 23}, + [879] = {.lex_state = 263, .external_lex_state = 23}, + [880] = {.lex_state = 112, .external_lex_state = 13}, + [881] = {.lex_state = 229, .external_lex_state = 7}, + [882] = {.lex_state = 227, .external_lex_state = 19}, + [883] = {.lex_state = 261, .external_lex_state = 7}, + [884] = {.lex_state = 227, .external_lex_state = 19}, + [885] = {.lex_state = 136}, + [886] = {.lex_state = 271, .external_lex_state = 10}, + [887] = {.lex_state = 146}, + [888] = {.lex_state = 271, .external_lex_state = 10}, + [889] = {.lex_state = 153}, + [890] = {.lex_state = 156, .external_lex_state = 5}, + [891] = {.lex_state = 51, .external_lex_state = 2}, + [892] = {.lex_state = 51, .external_lex_state = 2}, + [893] = {.lex_state = 51, .external_lex_state = 2}, + [894] = {.lex_state = 163, .external_lex_state = 6}, + [895] = {.lex_state = 136}, + [896] = {.lex_state = 173, .external_lex_state = 17}, + [897] = {.lex_state = 173, .external_lex_state = 17}, + [898] = {.lex_state = 146}, + [899] = {.lex_state = 173, .external_lex_state = 17}, + [900] = {.lex_state = 173, .external_lex_state = 17}, + [901] = {.lex_state = 112}, + [902] = {.lex_state = 112, .external_lex_state = 13}, + [903] = {.lex_state = 153, .external_lex_state = 5}, + [904] = {.lex_state = 112, .external_lex_state = 13}, + [905] = {.lex_state = 112, .external_lex_state = 13}, + [906] = {.lex_state = 112}, + [907] = {.lex_state = 189, .external_lex_state = 2}, + [908] = {.lex_state = 112}, + [909] = {.lex_state = 197, .external_lex_state = 2}, + [910] = {.lex_state = 112}, + [911] = {.lex_state = 189, .external_lex_state = 2}, + [912] = {.lex_state = 112}, + [913] = {.lex_state = 51}, + [914] = {.lex_state = 136}, + [915] = {.lex_state = 178, .external_lex_state = 22}, + [916] = {.lex_state = 146}, + [917] = {.lex_state = 178, .external_lex_state = 22}, + [918] = {.lex_state = 153}, + [919] = {.lex_state = 156, .external_lex_state = 5}, + [920] = {.lex_state = 51, .external_lex_state = 2}, + [921] = {.lex_state = 51, .external_lex_state = 2}, + [922] = {.lex_state = 51, .external_lex_state = 2}, + [923] = {.lex_state = 167, .external_lex_state = 4}, + [924] = {.lex_state = 263, .external_lex_state = 23}, + [925] = {.lex_state = 263, .external_lex_state = 23}, + [926] = {.lex_state = 112, .external_lex_state = 13}, + [927] = {.lex_state = 167, .external_lex_state = 4}, + [928] = {.lex_state = 263, .external_lex_state = 23}, + [929] = {.lex_state = 263, .external_lex_state = 23}, + [930] = {.lex_state = 112, .external_lex_state = 13}, + [931] = {.lex_state = 234, .external_lex_state = 13}, + [932] = {.lex_state = 167, .external_lex_state = 4}, + [933] = {.lex_state = 234, .external_lex_state = 13}, + [934] = {.lex_state = 167, .external_lex_state = 4}, + [935] = {.lex_state = 234, .external_lex_state = 13}, + [936] = {.lex_state = 167, .external_lex_state = 4}, + [937] = {.lex_state = 263, .external_lex_state = 23}, + [938] = {.lex_state = 263, .external_lex_state = 23}, + [939] = {.lex_state = 112, .external_lex_state = 13}, + [940] = {.lex_state = 261, .external_lex_state = 7}, + [941] = {.lex_state = 201, .external_lex_state = 4}, + [942] = {.lex_state = 201, .external_lex_state = 4}, + [943] = {.lex_state = 136}, + [944] = {.lex_state = 201, .external_lex_state = 4}, + [945] = {.lex_state = 201, .external_lex_state = 4}, + [946] = {.lex_state = 146}, + [947] = {.lex_state = 201, .external_lex_state = 4}, + [948] = {.lex_state = 201, .external_lex_state = 4}, + [949] = {.lex_state = 112}, + [950] = {.lex_state = 112, .external_lex_state = 13}, + [951] = {.lex_state = 153, .external_lex_state = 5}, + [952] = {.lex_state = 112, .external_lex_state = 13}, + [953] = {.lex_state = 112, .external_lex_state = 13}, + [954] = {.lex_state = 112}, + [955] = {.lex_state = 189, .external_lex_state = 2}, + [956] = {.lex_state = 112}, + [957] = {.lex_state = 197, .external_lex_state = 2}, + [958] = {.lex_state = 112}, + [959] = {.lex_state = 189, .external_lex_state = 2}, + [960] = {.lex_state = 163, .external_lex_state = 6}, + [961] = {.lex_state = 201, .external_lex_state = 7}, + [962] = {.lex_state = 178, .external_lex_state = 3}, + [963] = {.lex_state = 207}, + [964] = {.lex_state = 136}, + [965] = {.lex_state = 138, .external_lex_state = 22}, + [966] = {.lex_state = 138, .external_lex_state = 22}, + [967] = {.lex_state = 146}, + [968] = {.lex_state = 138, .external_lex_state = 22}, + [969] = {.lex_state = 138, .external_lex_state = 22}, + [970] = {.lex_state = 112}, + [971] = {.lex_state = 112, .external_lex_state = 13}, + [972] = {.lex_state = 153, .external_lex_state = 5}, + [973] = {.lex_state = 112, .external_lex_state = 13}, + [974] = {.lex_state = 112, .external_lex_state = 13}, + [975] = {.lex_state = 112}, + [976] = {.lex_state = 189, .external_lex_state = 2}, + [977] = {.lex_state = 112}, + [978] = {.lex_state = 197, .external_lex_state = 2}, + [979] = {.lex_state = 112}, + [980] = {.lex_state = 189, .external_lex_state = 2}, + [981] = {.lex_state = 136, .external_lex_state = 11}, + [982] = {.lex_state = 263, .external_lex_state = 23}, + [983] = {.lex_state = 263, .external_lex_state = 23}, + [984] = {.lex_state = 112, .external_lex_state = 13}, + [985] = {.lex_state = 136, .external_lex_state = 11}, + [986] = {.lex_state = 263, .external_lex_state = 23}, + [987] = {.lex_state = 263, .external_lex_state = 23}, + [988] = {.lex_state = 112, .external_lex_state = 13}, + [989] = {.lex_state = 234, .external_lex_state = 13}, + [990] = {.lex_state = 136, .external_lex_state = 11}, + [991] = {.lex_state = 234, .external_lex_state = 13}, + [992] = {.lex_state = 136, .external_lex_state = 11}, + [993] = {.lex_state = 234, .external_lex_state = 13}, + [994] = {.lex_state = 136, .external_lex_state = 11}, + [995] = {.lex_state = 263, .external_lex_state = 23}, + [996] = {.lex_state = 263, .external_lex_state = 23}, + [997] = {.lex_state = 112, .external_lex_state = 13}, + [998] = {.lex_state = 146, .external_lex_state = 12}, + [999] = {.lex_state = 263, .external_lex_state = 23}, + [1000] = {.lex_state = 263, .external_lex_state = 23}, + [1001] = {.lex_state = 112, .external_lex_state = 13}, + [1002] = {.lex_state = 146, .external_lex_state = 12}, + [1003] = {.lex_state = 263, .external_lex_state = 23}, + [1004] = {.lex_state = 263, .external_lex_state = 23}, + [1005] = {.lex_state = 112, .external_lex_state = 13}, + [1006] = {.lex_state = 234, .external_lex_state = 13}, + [1007] = {.lex_state = 146, .external_lex_state = 12}, + [1008] = {.lex_state = 234, .external_lex_state = 13}, + [1009] = {.lex_state = 146, .external_lex_state = 12}, + [1010] = {.lex_state = 234, .external_lex_state = 13}, + [1011] = {.lex_state = 146, .external_lex_state = 12}, + [1012] = {.lex_state = 263, .external_lex_state = 23}, + [1013] = {.lex_state = 263, .external_lex_state = 23}, + [1014] = {.lex_state = 112, .external_lex_state = 13}, + [1015] = {.lex_state = 136}, + [1016] = {.lex_state = 144, .external_lex_state = 4}, + [1017] = {.lex_state = 263, .external_lex_state = 23}, + [1018] = {.lex_state = 263, .external_lex_state = 23}, + [1019] = {.lex_state = 146}, + [1020] = {.lex_state = 144, .external_lex_state = 4}, + [1021] = {.lex_state = 263, .external_lex_state = 23}, + [1022] = {.lex_state = 263, .external_lex_state = 23}, + [1023] = {.lex_state = 112}, + [1024] = {.lex_state = 112, .external_lex_state = 13}, + [1025] = {.lex_state = 153, .external_lex_state = 5}, + [1026] = {.lex_state = 112, .external_lex_state = 13}, + [1027] = {.lex_state = 112, .external_lex_state = 13}, + [1028] = {.lex_state = 112}, + [1029] = {.lex_state = 189, .external_lex_state = 2}, + [1030] = {.lex_state = 112}, + [1031] = {.lex_state = 197, .external_lex_state = 2}, + [1032] = {.lex_state = 112}, + [1033] = {.lex_state = 189, .external_lex_state = 2}, + [1034] = {.lex_state = 247, .external_lex_state = 21}, + [1035] = {.lex_state = 273, .external_lex_state = 23}, + [1036] = {.lex_state = 247, .external_lex_state = 21}, + [1037] = {.lex_state = 273, .external_lex_state = 23}, + [1038] = {.lex_state = 112, .external_lex_state = 21}, + [1039] = {.lex_state = 144, .external_lex_state = 4}, + [1040] = {.lex_state = 144, .external_lex_state = 4}, + [1041] = {.lex_state = 263, .external_lex_state = 23}, + [1042] = {.lex_state = 263, .external_lex_state = 23}, + [1043] = {.lex_state = 112, .external_lex_state = 13}, + [1044] = {.lex_state = 144, .external_lex_state = 4}, + [1045] = {.lex_state = 263, .external_lex_state = 23}, + [1046] = {.lex_state = 263, .external_lex_state = 23}, + [1047] = {.lex_state = 112, .external_lex_state = 13}, + [1048] = {.lex_state = 144, .external_lex_state = 4}, + [1049] = {.lex_state = 263, .external_lex_state = 23}, + [1050] = {.lex_state = 263, .external_lex_state = 23}, + [1051] = {.lex_state = 112, .external_lex_state = 13}, + [1052] = {.lex_state = 144, .external_lex_state = 4}, + [1053] = {.lex_state = 144, .external_lex_state = 4}, + [1054] = {.lex_state = 189, .external_lex_state = 2}, + [1055] = {.lex_state = 207}, + [1056] = {.lex_state = 136}, + [1057] = {.lex_state = 189, .external_lex_state = 11}, + [1058] = {.lex_state = 189, .external_lex_state = 11}, + [1059] = {.lex_state = 146}, + [1060] = {.lex_state = 189, .external_lex_state = 11}, + [1061] = {.lex_state = 189, .external_lex_state = 11}, + [1062] = {.lex_state = 112}, + [1063] = {.lex_state = 112, .external_lex_state = 13}, + [1064] = {.lex_state = 153, .external_lex_state = 5}, + [1065] = {.lex_state = 112, .external_lex_state = 13}, + [1066] = {.lex_state = 112, .external_lex_state = 13}, + [1067] = {.lex_state = 112}, + [1068] = {.lex_state = 189, .external_lex_state = 2}, + [1069] = {.lex_state = 112}, + [1070] = {.lex_state = 197, .external_lex_state = 2}, + [1071] = {.lex_state = 112}, + [1072] = {.lex_state = 189, .external_lex_state = 2}, + [1073] = {.lex_state = 251, .external_lex_state = 6}, + [1074] = {.lex_state = 112}, + [1075] = {.lex_state = 211, .external_lex_state = 2}, + [1076] = {.lex_state = 112}, + [1077] = {.lex_state = 112}, + [1078] = {.lex_state = 217, .external_lex_state = 2}, + [1079] = {.lex_state = 112}, + [1080] = {.lex_state = 255}, + [1081] = {.lex_state = 175, .external_lex_state = 6}, + [1082] = {.lex_state = 255}, + [1083] = {.lex_state = 175, .external_lex_state = 6}, + [1084] = {.lex_state = 112}, + [1085] = {.lex_state = 275, .external_lex_state = 15}, + [1086] = {.lex_state = 227, .external_lex_state = 19}, + [1087] = {.lex_state = 51}, + [1088] = {.lex_state = 136}, + [1089] = {.lex_state = 112}, + [1090] = {.lex_state = 112}, + [1091] = {.lex_state = 232, .external_lex_state = 2}, + [1092] = {.lex_state = 236, .external_lex_state = 5}, + [1093] = {.lex_state = 207}, + [1094] = {.lex_state = 182, .external_lex_state = 24}, + [1095] = {.lex_state = 146}, + [1096] = {.lex_state = 182, .external_lex_state = 24}, + [1097] = {.lex_state = 153}, + [1098] = {.lex_state = 156, .external_lex_state = 5}, + [1099] = {.lex_state = 51, .external_lex_state = 2}, + [1100] = {.lex_state = 51, .external_lex_state = 2}, + [1101] = {.lex_state = 51, .external_lex_state = 2}, + [1102] = {.lex_state = 184, .external_lex_state = 14}, + [1103] = {.lex_state = 263, .external_lex_state = 23}, + [1104] = {.lex_state = 263, .external_lex_state = 23}, + [1105] = {.lex_state = 112, .external_lex_state = 13}, + [1106] = {.lex_state = 184, .external_lex_state = 14}, + [1107] = {.lex_state = 263, .external_lex_state = 23}, + [1108] = {.lex_state = 263, .external_lex_state = 23}, + [1109] = {.lex_state = 112, .external_lex_state = 13}, + [1110] = {.lex_state = 234, .external_lex_state = 13}, + [1111] = {.lex_state = 184, .external_lex_state = 14}, + [1112] = {.lex_state = 234, .external_lex_state = 13}, + [1113] = {.lex_state = 184, .external_lex_state = 14}, + [1114] = {.lex_state = 234, .external_lex_state = 13}, + [1115] = {.lex_state = 184, .external_lex_state = 14}, + [1116] = {.lex_state = 263, .external_lex_state = 23}, + [1117] = {.lex_state = 263, .external_lex_state = 23}, + [1118] = {.lex_state = 112, .external_lex_state = 13}, + [1119] = {.lex_state = 265, .external_lex_state = 15}, + [1120] = {.lex_state = 240, .external_lex_state = 14}, + [1121] = {.lex_state = 240, .external_lex_state = 14}, + [1122] = {.lex_state = 238, .external_lex_state = 15}, + [1123] = {.lex_state = 136}, + [1124] = {.lex_state = 240, .external_lex_state = 14}, + [1125] = {.lex_state = 240, .external_lex_state = 14}, + [1126] = {.lex_state = 146}, + [1127] = {.lex_state = 240, .external_lex_state = 14}, + [1128] = {.lex_state = 240, .external_lex_state = 14}, + [1129] = {.lex_state = 112}, + [1130] = {.lex_state = 112, .external_lex_state = 13}, + [1131] = {.lex_state = 153, .external_lex_state = 5}, + [1132] = {.lex_state = 112, .external_lex_state = 13}, + [1133] = {.lex_state = 112, .external_lex_state = 13}, + [1134] = {.lex_state = 112}, + [1135] = {.lex_state = 189, .external_lex_state = 2}, + [1136] = {.lex_state = 112}, + [1137] = {.lex_state = 197, .external_lex_state = 2}, + [1138] = {.lex_state = 112}, + [1139] = {.lex_state = 189, .external_lex_state = 2}, + [1140] = {.lex_state = 238, .external_lex_state = 15}, + [1141] = {.lex_state = 244, .external_lex_state = 20}, + [1142] = {.lex_state = 240, .external_lex_state = 15}, + [1143] = {.lex_state = 136}, + [1144] = {.lex_state = 197, .external_lex_state = 11}, + [1145] = {.lex_state = 197, .external_lex_state = 11}, + [1146] = {.lex_state = 146}, + [1147] = {.lex_state = 197, .external_lex_state = 11}, + [1148] = {.lex_state = 197, .external_lex_state = 11}, + [1149] = {.lex_state = 112}, + [1150] = {.lex_state = 112, .external_lex_state = 13}, + [1151] = {.lex_state = 153, .external_lex_state = 5}, + [1152] = {.lex_state = 112, .external_lex_state = 13}, + [1153] = {.lex_state = 112, .external_lex_state = 13}, + [1154] = {.lex_state = 112}, + [1155] = {.lex_state = 189, .external_lex_state = 2}, + [1156] = {.lex_state = 112}, + [1157] = {.lex_state = 197, .external_lex_state = 2}, + [1158] = {.lex_state = 112}, + [1159] = {.lex_state = 189, .external_lex_state = 2}, + [1160] = {.lex_state = 112}, + [1161] = {.lex_state = 51}, + [1162] = {.lex_state = 136}, + [1163] = {.lex_state = 191, .external_lex_state = 24}, + [1164] = {.lex_state = 146}, + [1165] = {.lex_state = 191, .external_lex_state = 24}, + [1166] = {.lex_state = 153}, + [1167] = {.lex_state = 156, .external_lex_state = 5}, + [1168] = {.lex_state = 51, .external_lex_state = 2}, + [1169] = {.lex_state = 51, .external_lex_state = 2}, + [1170] = {.lex_state = 51, .external_lex_state = 2}, + [1171] = {.lex_state = 193, .external_lex_state = 14}, + [1172] = {.lex_state = 263, .external_lex_state = 23}, + [1173] = {.lex_state = 263, .external_lex_state = 23}, + [1174] = {.lex_state = 112, .external_lex_state = 13}, + [1175] = {.lex_state = 193, .external_lex_state = 14}, + [1176] = {.lex_state = 263, .external_lex_state = 23}, + [1177] = {.lex_state = 263, .external_lex_state = 23}, + [1178] = {.lex_state = 112, .external_lex_state = 13}, + [1179] = {.lex_state = 234, .external_lex_state = 13}, + [1180] = {.lex_state = 193, .external_lex_state = 14}, + [1181] = {.lex_state = 234, .external_lex_state = 13}, + [1182] = {.lex_state = 193, .external_lex_state = 14}, + [1183] = {.lex_state = 234, .external_lex_state = 13}, + [1184] = {.lex_state = 193, .external_lex_state = 14}, + [1185] = {.lex_state = 263, .external_lex_state = 23}, + [1186] = {.lex_state = 263, .external_lex_state = 23}, + [1187] = {.lex_state = 112, .external_lex_state = 13}, + [1188] = {.lex_state = 267, .external_lex_state = 15}, + [1189] = {.lex_state = 242, .external_lex_state = 14}, + [1190] = {.lex_state = 242, .external_lex_state = 14}, + [1191] = {.lex_state = 136}, + [1192] = {.lex_state = 242, .external_lex_state = 14}, + [1193] = {.lex_state = 242, .external_lex_state = 14}, + [1194] = {.lex_state = 146}, + [1195] = {.lex_state = 242, .external_lex_state = 14}, + [1196] = {.lex_state = 242, .external_lex_state = 14}, + [1197] = {.lex_state = 112}, + [1198] = {.lex_state = 112, .external_lex_state = 13}, + [1199] = {.lex_state = 153, .external_lex_state = 5}, + [1200] = {.lex_state = 112, .external_lex_state = 13}, + [1201] = {.lex_state = 112, .external_lex_state = 13}, + [1202] = {.lex_state = 112}, + [1203] = {.lex_state = 189, .external_lex_state = 2}, + [1204] = {.lex_state = 112}, + [1205] = {.lex_state = 197, .external_lex_state = 2}, + [1206] = {.lex_state = 112}, + [1207] = {.lex_state = 189, .external_lex_state = 2}, + [1208] = {.lex_state = 242, .external_lex_state = 15}, + [1209] = {.lex_state = 163, .external_lex_state = 6}, + [1210] = {.lex_state = 205, .external_lex_state = 4}, + [1211] = {.lex_state = 205, .external_lex_state = 4}, + [1212] = {.lex_state = 205, .external_lex_state = 4}, + [1213] = {.lex_state = 234, .external_lex_state = 13}, + [1214] = {.lex_state = 205, .external_lex_state = 4}, + [1215] = {.lex_state = 234, .external_lex_state = 13}, + [1216] = {.lex_state = 112}, + [1217] = {.lex_state = 112, .external_lex_state = 13}, + [1218] = {.lex_state = 112, .external_lex_state = 13}, + [1219] = {.lex_state = 112, .external_lex_state = 13}, + [1220] = {.lex_state = 205, .external_lex_state = 4}, + [1221] = {.lex_state = 234, .external_lex_state = 13}, + [1222] = {.lex_state = 205, .external_lex_state = 4}, + [1223] = {.lex_state = 205, .external_lex_state = 4}, + [1224] = {.lex_state = 205, .external_lex_state = 4}, + [1225] = {.lex_state = 244, .external_lex_state = 20}, + [1226] = {.lex_state = 244, .external_lex_state = 20}, + [1227] = {.lex_state = 112}, + [1228] = {.lex_state = 112, .external_lex_state = 13}, + [1229] = {.lex_state = 153, .external_lex_state = 5}, + [1230] = {.lex_state = 112, .external_lex_state = 13}, + [1231] = {.lex_state = 112, .external_lex_state = 13}, + [1232] = {.lex_state = 201, .external_lex_state = 7}, + [1233] = {.lex_state = 244, .external_lex_state = 20}, + [1234] = {.lex_state = 136, .external_lex_state = 2}, + [1235] = {.lex_state = 207}, + [1236] = {.lex_state = 207, .external_lex_state = 12}, + [1237] = {.lex_state = 207, .external_lex_state = 12}, + [1238] = {.lex_state = 207, .external_lex_state = 12}, + [1239] = {.lex_state = 234, .external_lex_state = 13}, + [1240] = {.lex_state = 207, .external_lex_state = 12}, + [1241] = {.lex_state = 234, .external_lex_state = 13}, + [1242] = {.lex_state = 112}, + [1243] = {.lex_state = 112, .external_lex_state = 13}, + [1244] = {.lex_state = 112, .external_lex_state = 13}, + [1245] = {.lex_state = 112, .external_lex_state = 13}, + [1246] = {.lex_state = 207, .external_lex_state = 12}, + [1247] = {.lex_state = 234, .external_lex_state = 13}, + [1248] = {.lex_state = 207, .external_lex_state = 12}, + [1249] = {.lex_state = 207, .external_lex_state = 12}, + [1250] = {.lex_state = 207, .external_lex_state = 12}, + [1251] = {.lex_state = 165, .external_lex_state = 17}, + [1252] = {.lex_state = 263, .external_lex_state = 23}, + [1253] = {.lex_state = 263, .external_lex_state = 23}, + [1254] = {.lex_state = 112, .external_lex_state = 13}, + [1255] = {.lex_state = 165, .external_lex_state = 17}, + [1256] = {.lex_state = 263, .external_lex_state = 23}, + [1257] = {.lex_state = 263, .external_lex_state = 23}, + [1258] = {.lex_state = 112, .external_lex_state = 13}, + [1259] = {.lex_state = 234, .external_lex_state = 13}, + [1260] = {.lex_state = 165, .external_lex_state = 17}, + [1261] = {.lex_state = 234, .external_lex_state = 13}, + [1262] = {.lex_state = 165, .external_lex_state = 17}, + [1263] = {.lex_state = 234, .external_lex_state = 13}, + [1264] = {.lex_state = 165, .external_lex_state = 17}, + [1265] = {.lex_state = 263, .external_lex_state = 23}, + [1266] = {.lex_state = 263, .external_lex_state = 23}, + [1267] = {.lex_state = 112, .external_lex_state = 13}, + [1268] = {.lex_state = 112, .external_lex_state = 13}, + [1269] = {.lex_state = 112, .external_lex_state = 13}, + [1270] = {.lex_state = 209, .external_lex_state = 18}, + [1271] = {.lex_state = 263, .external_lex_state = 23}, + [1272] = {.lex_state = 263, .external_lex_state = 23}, + [1273] = {.lex_state = 112, .external_lex_state = 13}, + [1274] = {.lex_state = 209, .external_lex_state = 18}, + [1275] = {.lex_state = 263, .external_lex_state = 23}, + [1276] = {.lex_state = 263, .external_lex_state = 23}, + [1277] = {.lex_state = 112, .external_lex_state = 13}, + [1278] = {.lex_state = 234, .external_lex_state = 13}, + [1279] = {.lex_state = 209, .external_lex_state = 18}, + [1280] = {.lex_state = 234, .external_lex_state = 13}, + [1281] = {.lex_state = 209, .external_lex_state = 18}, + [1282] = {.lex_state = 234, .external_lex_state = 13}, + [1283] = {.lex_state = 209, .external_lex_state = 18}, + [1284] = {.lex_state = 263, .external_lex_state = 23}, + [1285] = {.lex_state = 263, .external_lex_state = 23}, + [1286] = {.lex_state = 112, .external_lex_state = 13}, + [1287] = {.lex_state = 251, .external_lex_state = 10}, + [1288] = {.lex_state = 251, .external_lex_state = 10}, + [1289] = {.lex_state = 251, .external_lex_state = 10}, + [1290] = {.lex_state = 234, .external_lex_state = 13}, + [1291] = {.lex_state = 251, .external_lex_state = 10}, + [1292] = {.lex_state = 234, .external_lex_state = 13}, + [1293] = {.lex_state = 112}, + [1294] = {.lex_state = 112, .external_lex_state = 13}, + [1295] = {.lex_state = 112, .external_lex_state = 13}, + [1296] = {.lex_state = 112, .external_lex_state = 13}, + [1297] = {.lex_state = 251, .external_lex_state = 10}, + [1298] = {.lex_state = 234, .external_lex_state = 13}, + [1299] = {.lex_state = 251, .external_lex_state = 10}, + [1300] = {.lex_state = 251, .external_lex_state = 10}, + [1301] = {.lex_state = 251, .external_lex_state = 10}, + [1302] = {.lex_state = 163, .external_lex_state = 6}, + [1303] = {.lex_state = 217, .external_lex_state = 2}, + [1304] = {.lex_state = 253, .external_lex_state = 2}, + [1305] = {.lex_state = 253, .external_lex_state = 2}, + [1306] = {.lex_state = 163, .external_lex_state = 6}, + [1307] = {.lex_state = 112}, + [1308] = {.lex_state = 136}, + [1309] = {.lex_state = 136}, + [1310] = {.lex_state = 160, .external_lex_state = 2}, + [1311] = {.lex_state = 133}, + [1312] = {.lex_state = 269, .external_lex_state = 12}, + [1313] = {.lex_state = 269, .external_lex_state = 12}, + [1314] = {.lex_state = 146}, + [1315] = {.lex_state = 160, .external_lex_state = 2}, + [1316] = {.lex_state = 133}, + [1317] = {.lex_state = 269, .external_lex_state = 12}, + [1318] = {.lex_state = 269, .external_lex_state = 12}, + [1319] = {.lex_state = 112}, + [1320] = {.lex_state = 112, .external_lex_state = 13}, + [1321] = {.lex_state = 153, .external_lex_state = 5}, + [1322] = {.lex_state = 112, .external_lex_state = 13}, + [1323] = {.lex_state = 112, .external_lex_state = 13}, + [1324] = {.lex_state = 112}, + [1325] = {.lex_state = 189, .external_lex_state = 2}, + [1326] = {.lex_state = 112}, + [1327] = {.lex_state = 197, .external_lex_state = 2}, + [1328] = {.lex_state = 112}, + [1329] = {.lex_state = 189, .external_lex_state = 2}, + [1330] = {.lex_state = 163, .external_lex_state = 6}, + [1331] = {.lex_state = 255}, + [1332] = {.lex_state = 255}, + [1333] = {.lex_state = 163, .external_lex_state = 6}, + [1334] = {.lex_state = 255}, + [1335] = {.lex_state = 175, .external_lex_state = 10}, + [1336] = {.lex_state = 175, .external_lex_state = 10}, + [1337] = {.lex_state = 175, .external_lex_state = 10}, + [1338] = {.lex_state = 175, .external_lex_state = 10}, + [1339] = {.lex_state = 263, .external_lex_state = 23}, + [1340] = {.lex_state = 263, .external_lex_state = 23}, + [1341] = {.lex_state = 112, .external_lex_state = 13}, + [1342] = {.lex_state = 175, .external_lex_state = 10}, + [1343] = {.lex_state = 263, .external_lex_state = 23}, + [1344] = {.lex_state = 263, .external_lex_state = 23}, + [1345] = {.lex_state = 112, .external_lex_state = 13}, + [1346] = {.lex_state = 175, .external_lex_state = 10}, + [1347] = {.lex_state = 263, .external_lex_state = 23}, + [1348] = {.lex_state = 263, .external_lex_state = 23}, + [1349] = {.lex_state = 112, .external_lex_state = 13}, + [1350] = {.lex_state = 175, .external_lex_state = 10}, + [1351] = {.lex_state = 175, .external_lex_state = 10}, + [1352] = {.lex_state = 163, .external_lex_state = 6}, + [1353] = {.lex_state = 271, .external_lex_state = 10}, + [1354] = {.lex_state = 271, .external_lex_state = 10}, + [1355] = {.lex_state = 163, .external_lex_state = 6}, + [1356] = {.lex_state = 136}, + [1357] = {.lex_state = 271, .external_lex_state = 10}, + [1358] = {.lex_state = 271, .external_lex_state = 10}, + [1359] = {.lex_state = 146}, + [1360] = {.lex_state = 271, .external_lex_state = 10}, + [1361] = {.lex_state = 271, .external_lex_state = 10}, + [1362] = {.lex_state = 112}, + [1363] = {.lex_state = 112, .external_lex_state = 13}, + [1364] = {.lex_state = 153, .external_lex_state = 5}, + [1365] = {.lex_state = 112, .external_lex_state = 13}, + [1366] = {.lex_state = 112, .external_lex_state = 13}, + [1367] = {.lex_state = 112}, + [1368] = {.lex_state = 189, .external_lex_state = 2}, + [1369] = {.lex_state = 112}, + [1370] = {.lex_state = 197, .external_lex_state = 2}, + [1371] = {.lex_state = 112}, + [1372] = {.lex_state = 189, .external_lex_state = 2}, + [1373] = {.lex_state = 173, .external_lex_state = 17}, + [1374] = {.lex_state = 173, .external_lex_state = 17}, + [1375] = {.lex_state = 173, .external_lex_state = 17}, + [1376] = {.lex_state = 234, .external_lex_state = 13}, + [1377] = {.lex_state = 173, .external_lex_state = 17}, + [1378] = {.lex_state = 234, .external_lex_state = 13}, + [1379] = {.lex_state = 112}, + [1380] = {.lex_state = 112, .external_lex_state = 13}, + [1381] = {.lex_state = 112, .external_lex_state = 13}, + [1382] = {.lex_state = 112, .external_lex_state = 13}, + [1383] = {.lex_state = 173, .external_lex_state = 17}, + [1384] = {.lex_state = 234, .external_lex_state = 13}, + [1385] = {.lex_state = 173, .external_lex_state = 17}, + [1386] = {.lex_state = 173, .external_lex_state = 17}, + [1387] = {.lex_state = 173, .external_lex_state = 17}, + [1388] = {.lex_state = 261, .external_lex_state = 7}, + [1389] = {.lex_state = 136}, + [1390] = {.lex_state = 163, .external_lex_state = 10}, + [1391] = {.lex_state = 146}, + [1392] = {.lex_state = 163, .external_lex_state = 10}, + [1393] = {.lex_state = 153}, + [1394] = {.lex_state = 156, .external_lex_state = 5}, + [1395] = {.lex_state = 51, .external_lex_state = 2}, + [1396] = {.lex_state = 51, .external_lex_state = 2}, + [1397] = {.lex_state = 51, .external_lex_state = 2}, + [1398] = {.lex_state = 136}, + [1399] = {.lex_state = 178, .external_lex_state = 22}, + [1400] = {.lex_state = 178, .external_lex_state = 22}, + [1401] = {.lex_state = 146}, + [1402] = {.lex_state = 178, .external_lex_state = 22}, + [1403] = {.lex_state = 178, .external_lex_state = 22}, + [1404] = {.lex_state = 112}, + [1405] = {.lex_state = 112, .external_lex_state = 13}, + [1406] = {.lex_state = 153, .external_lex_state = 5}, + [1407] = {.lex_state = 112, .external_lex_state = 13}, + [1408] = {.lex_state = 112, .external_lex_state = 13}, + [1409] = {.lex_state = 112}, + [1410] = {.lex_state = 189, .external_lex_state = 2}, + [1411] = {.lex_state = 112}, + [1412] = {.lex_state = 197, .external_lex_state = 2}, + [1413] = {.lex_state = 112}, + [1414] = {.lex_state = 189, .external_lex_state = 2}, + [1415] = {.lex_state = 167, .external_lex_state = 4}, + [1416] = {.lex_state = 167, .external_lex_state = 4}, + [1417] = {.lex_state = 167, .external_lex_state = 4}, + [1418] = {.lex_state = 167, .external_lex_state = 4}, + [1419] = {.lex_state = 263, .external_lex_state = 23}, + [1420] = {.lex_state = 263, .external_lex_state = 23}, + [1421] = {.lex_state = 112, .external_lex_state = 13}, + [1422] = {.lex_state = 167, .external_lex_state = 4}, + [1423] = {.lex_state = 263, .external_lex_state = 23}, + [1424] = {.lex_state = 263, .external_lex_state = 23}, + [1425] = {.lex_state = 112, .external_lex_state = 13}, + [1426] = {.lex_state = 167, .external_lex_state = 4}, + [1427] = {.lex_state = 263, .external_lex_state = 23}, + [1428] = {.lex_state = 263, .external_lex_state = 23}, + [1429] = {.lex_state = 112, .external_lex_state = 13}, + [1430] = {.lex_state = 167, .external_lex_state = 4}, + [1431] = {.lex_state = 167, .external_lex_state = 4}, + [1432] = {.lex_state = 201, .external_lex_state = 4}, + [1433] = {.lex_state = 201, .external_lex_state = 4}, + [1434] = {.lex_state = 201, .external_lex_state = 4}, + [1435] = {.lex_state = 234, .external_lex_state = 13}, + [1436] = {.lex_state = 201, .external_lex_state = 4}, + [1437] = {.lex_state = 234, .external_lex_state = 13}, + [1438] = {.lex_state = 112}, + [1439] = {.lex_state = 112, .external_lex_state = 13}, + [1440] = {.lex_state = 112, .external_lex_state = 13}, + [1441] = {.lex_state = 112, .external_lex_state = 13}, + [1442] = {.lex_state = 201, .external_lex_state = 4}, + [1443] = {.lex_state = 234, .external_lex_state = 13}, + [1444] = {.lex_state = 201, .external_lex_state = 4}, + [1445] = {.lex_state = 201, .external_lex_state = 4}, + [1446] = {.lex_state = 201, .external_lex_state = 4}, + [1447] = {.lex_state = 178, .external_lex_state = 3}, + [1448] = {.lex_state = 138, .external_lex_state = 22}, + [1449] = {.lex_state = 138, .external_lex_state = 22}, + [1450] = {.lex_state = 138, .external_lex_state = 22}, + [1451] = {.lex_state = 234, .external_lex_state = 13}, + [1452] = {.lex_state = 138, .external_lex_state = 22}, + [1453] = {.lex_state = 234, .external_lex_state = 13}, + [1454] = {.lex_state = 112}, + [1455] = {.lex_state = 112, .external_lex_state = 13}, + [1456] = {.lex_state = 112, .external_lex_state = 13}, + [1457] = {.lex_state = 112, .external_lex_state = 13}, + [1458] = {.lex_state = 138, .external_lex_state = 22}, + [1459] = {.lex_state = 234, .external_lex_state = 13}, + [1460] = {.lex_state = 138, .external_lex_state = 22}, + [1461] = {.lex_state = 138, .external_lex_state = 22}, + [1462] = {.lex_state = 138, .external_lex_state = 22}, + [1463] = {.lex_state = 136, .external_lex_state = 11}, + [1464] = {.lex_state = 136, .external_lex_state = 11}, + [1465] = {.lex_state = 136, .external_lex_state = 11}, + [1466] = {.lex_state = 136, .external_lex_state = 11}, + [1467] = {.lex_state = 263, .external_lex_state = 23}, + [1468] = {.lex_state = 263, .external_lex_state = 23}, + [1469] = {.lex_state = 112, .external_lex_state = 13}, + [1470] = {.lex_state = 136, .external_lex_state = 11}, + [1471] = {.lex_state = 263, .external_lex_state = 23}, + [1472] = {.lex_state = 263, .external_lex_state = 23}, + [1473] = {.lex_state = 112, .external_lex_state = 13}, + [1474] = {.lex_state = 136, .external_lex_state = 11}, + [1475] = {.lex_state = 263, .external_lex_state = 23}, + [1476] = {.lex_state = 263, .external_lex_state = 23}, + [1477] = {.lex_state = 112, .external_lex_state = 13}, + [1478] = {.lex_state = 136, .external_lex_state = 11}, + [1479] = {.lex_state = 136, .external_lex_state = 11}, + [1480] = {.lex_state = 146, .external_lex_state = 12}, + [1481] = {.lex_state = 146, .external_lex_state = 12}, + [1482] = {.lex_state = 146, .external_lex_state = 12}, + [1483] = {.lex_state = 146, .external_lex_state = 12}, + [1484] = {.lex_state = 263, .external_lex_state = 23}, + [1485] = {.lex_state = 263, .external_lex_state = 23}, + [1486] = {.lex_state = 112, .external_lex_state = 13}, + [1487] = {.lex_state = 146, .external_lex_state = 12}, + [1488] = {.lex_state = 263, .external_lex_state = 23}, + [1489] = {.lex_state = 263, .external_lex_state = 23}, + [1490] = {.lex_state = 112, .external_lex_state = 13}, + [1491] = {.lex_state = 146, .external_lex_state = 12}, + [1492] = {.lex_state = 263, .external_lex_state = 23}, + [1493] = {.lex_state = 263, .external_lex_state = 23}, + [1494] = {.lex_state = 112, .external_lex_state = 13}, + [1495] = {.lex_state = 146, .external_lex_state = 12}, + [1496] = {.lex_state = 146, .external_lex_state = 12}, + [1497] = {.lex_state = 263, .external_lex_state = 23}, + [1498] = {.lex_state = 263, .external_lex_state = 23}, + [1499] = {.lex_state = 263, .external_lex_state = 23}, + [1500] = {.lex_state = 234, .external_lex_state = 13}, + [1501] = {.lex_state = 263, .external_lex_state = 23}, + [1502] = {.lex_state = 234, .external_lex_state = 13}, + [1503] = {.lex_state = 112}, + [1504] = {.lex_state = 112, .external_lex_state = 13}, + [1505] = {.lex_state = 112, .external_lex_state = 13}, + [1506] = {.lex_state = 112, .external_lex_state = 13}, + [1507] = {.lex_state = 263, .external_lex_state = 23}, + [1508] = {.lex_state = 234, .external_lex_state = 13}, + [1509] = {.lex_state = 263, .external_lex_state = 23}, + [1510] = {.lex_state = 263, .external_lex_state = 23}, + [1511] = {.lex_state = 263, .external_lex_state = 23}, + [1512] = {.lex_state = 273, .external_lex_state = 23}, + [1513] = {.lex_state = 273, .external_lex_state = 23}, + [1514] = {.lex_state = 144, .external_lex_state = 4}, + [1515] = {.lex_state = 144, .external_lex_state = 4}, + [1516] = {.lex_state = 144, .external_lex_state = 4}, + [1517] = {.lex_state = 144, .external_lex_state = 4}, + [1518] = {.lex_state = 144, .external_lex_state = 4}, + [1519] = {.lex_state = 144, .external_lex_state = 4}, + [1520] = {.lex_state = 189, .external_lex_state = 2}, + [1521] = {.lex_state = 189, .external_lex_state = 11}, + [1522] = {.lex_state = 189, .external_lex_state = 11}, + [1523] = {.lex_state = 189, .external_lex_state = 11}, + [1524] = {.lex_state = 234, .external_lex_state = 13}, + [1525] = {.lex_state = 189, .external_lex_state = 11}, + [1526] = {.lex_state = 234, .external_lex_state = 13}, + [1527] = {.lex_state = 112}, + [1528] = {.lex_state = 112, .external_lex_state = 13}, + [1529] = {.lex_state = 112, .external_lex_state = 13}, + [1530] = {.lex_state = 112, .external_lex_state = 13}, + [1531] = {.lex_state = 189, .external_lex_state = 11}, + [1532] = {.lex_state = 234, .external_lex_state = 13}, + [1533] = {.lex_state = 189, .external_lex_state = 11}, + [1534] = {.lex_state = 189, .external_lex_state = 11}, + [1535] = {.lex_state = 189, .external_lex_state = 11}, + [1536] = {.lex_state = 112}, + [1537] = {.lex_state = 112}, + [1538] = {.lex_state = 112}, + [1539] = {.lex_state = 112}, + [1540] = {.lex_state = 112}, + [1541] = {.lex_state = 112}, + [1542] = {.lex_state = 255}, + [1543] = {.lex_state = 255}, + [1544] = {.lex_state = 112}, + [1545] = {.lex_state = 255}, + [1546] = {.lex_state = 255}, + [1547] = {.lex_state = 265, .external_lex_state = 15}, + [1548] = {.lex_state = 275, .external_lex_state = 15}, + [1549] = {.lex_state = 136}, + [1550] = {.lex_state = 277, .external_lex_state = 12}, + [1551] = {.lex_state = 146}, + [1552] = {.lex_state = 277, .external_lex_state = 12}, + [1553] = {.lex_state = 153}, + [1554] = {.lex_state = 156, .external_lex_state = 5}, + [1555] = {.lex_state = 51, .external_lex_state = 2}, + [1556] = {.lex_state = 51, .external_lex_state = 2}, + [1557] = {.lex_state = 51, .external_lex_state = 2}, + [1558] = {.lex_state = 112}, + [1559] = {.lex_state = 112}, + [1560] = {.lex_state = 236, .external_lex_state = 5}, + [1561] = {.lex_state = 207}, + [1562] = {.lex_state = 136}, + [1563] = {.lex_state = 182, .external_lex_state = 24}, + [1564] = {.lex_state = 182, .external_lex_state = 24}, + [1565] = {.lex_state = 146}, + [1566] = {.lex_state = 182, .external_lex_state = 24}, + [1567] = {.lex_state = 182, .external_lex_state = 24}, + [1568] = {.lex_state = 112}, + [1569] = {.lex_state = 112, .external_lex_state = 13}, + [1570] = {.lex_state = 153, .external_lex_state = 5}, + [1571] = {.lex_state = 112, .external_lex_state = 13}, + [1572] = {.lex_state = 112, .external_lex_state = 13}, + [1573] = {.lex_state = 112}, + [1574] = {.lex_state = 189, .external_lex_state = 2}, + [1575] = {.lex_state = 112}, + [1576] = {.lex_state = 197, .external_lex_state = 2}, + [1577] = {.lex_state = 112}, + [1578] = {.lex_state = 189, .external_lex_state = 2}, + [1579] = {.lex_state = 184, .external_lex_state = 14}, + [1580] = {.lex_state = 184, .external_lex_state = 14}, + [1581] = {.lex_state = 184, .external_lex_state = 14}, + [1582] = {.lex_state = 184, .external_lex_state = 14}, + [1583] = {.lex_state = 263, .external_lex_state = 23}, + [1584] = {.lex_state = 263, .external_lex_state = 23}, + [1585] = {.lex_state = 112, .external_lex_state = 13}, + [1586] = {.lex_state = 184, .external_lex_state = 14}, + [1587] = {.lex_state = 263, .external_lex_state = 23}, + [1588] = {.lex_state = 263, .external_lex_state = 23}, + [1589] = {.lex_state = 112, .external_lex_state = 13}, + [1590] = {.lex_state = 184, .external_lex_state = 14}, + [1591] = {.lex_state = 263, .external_lex_state = 23}, + [1592] = {.lex_state = 263, .external_lex_state = 23}, + [1593] = {.lex_state = 112, .external_lex_state = 13}, + [1594] = {.lex_state = 184, .external_lex_state = 14}, + [1595] = {.lex_state = 184, .external_lex_state = 14}, + [1596] = {.lex_state = 112}, + [1597] = {.lex_state = 240, .external_lex_state = 14}, + [1598] = {.lex_state = 240, .external_lex_state = 14}, + [1599] = {.lex_state = 240, .external_lex_state = 14}, + [1600] = {.lex_state = 234, .external_lex_state = 13}, + [1601] = {.lex_state = 240, .external_lex_state = 14}, + [1602] = {.lex_state = 234, .external_lex_state = 13}, + [1603] = {.lex_state = 112}, + [1604] = {.lex_state = 112, .external_lex_state = 13}, + [1605] = {.lex_state = 112, .external_lex_state = 13}, + [1606] = {.lex_state = 112, .external_lex_state = 13}, + [1607] = {.lex_state = 240, .external_lex_state = 14}, + [1608] = {.lex_state = 234, .external_lex_state = 13}, + [1609] = {.lex_state = 240, .external_lex_state = 14}, + [1610] = {.lex_state = 240, .external_lex_state = 14}, + [1611] = {.lex_state = 240, .external_lex_state = 14}, + [1612] = {.lex_state = 238, .external_lex_state = 15}, + [1613] = {.lex_state = 197, .external_lex_state = 11}, + [1614] = {.lex_state = 197, .external_lex_state = 11}, + [1615] = {.lex_state = 197, .external_lex_state = 11}, + [1616] = {.lex_state = 234, .external_lex_state = 13}, + [1617] = {.lex_state = 197, .external_lex_state = 11}, + [1618] = {.lex_state = 234, .external_lex_state = 13}, + [1619] = {.lex_state = 112}, + [1620] = {.lex_state = 112, .external_lex_state = 13}, + [1621] = {.lex_state = 112, .external_lex_state = 13}, + [1622] = {.lex_state = 112, .external_lex_state = 13}, + [1623] = {.lex_state = 197, .external_lex_state = 11}, + [1624] = {.lex_state = 234, .external_lex_state = 13}, + [1625] = {.lex_state = 197, .external_lex_state = 11}, + [1626] = {.lex_state = 197, .external_lex_state = 11}, + [1627] = {.lex_state = 197, .external_lex_state = 11}, + [1628] = {.lex_state = 267, .external_lex_state = 15}, + [1629] = {.lex_state = 136}, + [1630] = {.lex_state = 279, .external_lex_state = 12}, + [1631] = {.lex_state = 146}, + [1632] = {.lex_state = 279, .external_lex_state = 12}, + [1633] = {.lex_state = 153}, + [1634] = {.lex_state = 156, .external_lex_state = 5}, + [1635] = {.lex_state = 51, .external_lex_state = 2}, + [1636] = {.lex_state = 51, .external_lex_state = 2}, + [1637] = {.lex_state = 51, .external_lex_state = 2}, + [1638] = {.lex_state = 136}, + [1639] = {.lex_state = 191, .external_lex_state = 24}, + [1640] = {.lex_state = 191, .external_lex_state = 24}, + [1641] = {.lex_state = 146}, + [1642] = {.lex_state = 191, .external_lex_state = 24}, + [1643] = {.lex_state = 191, .external_lex_state = 24}, + [1644] = {.lex_state = 112}, + [1645] = {.lex_state = 112, .external_lex_state = 13}, + [1646] = {.lex_state = 153, .external_lex_state = 5}, + [1647] = {.lex_state = 112, .external_lex_state = 13}, + [1648] = {.lex_state = 112, .external_lex_state = 13}, + [1649] = {.lex_state = 112}, + [1650] = {.lex_state = 189, .external_lex_state = 2}, + [1651] = {.lex_state = 112}, + [1652] = {.lex_state = 197, .external_lex_state = 2}, + [1653] = {.lex_state = 112}, + [1654] = {.lex_state = 189, .external_lex_state = 2}, + [1655] = {.lex_state = 193, .external_lex_state = 14}, + [1656] = {.lex_state = 193, .external_lex_state = 14}, + [1657] = {.lex_state = 193, .external_lex_state = 14}, + [1658] = {.lex_state = 193, .external_lex_state = 14}, + [1659] = {.lex_state = 263, .external_lex_state = 23}, + [1660] = {.lex_state = 263, .external_lex_state = 23}, + [1661] = {.lex_state = 112, .external_lex_state = 13}, + [1662] = {.lex_state = 193, .external_lex_state = 14}, + [1663] = {.lex_state = 263, .external_lex_state = 23}, + [1664] = {.lex_state = 263, .external_lex_state = 23}, + [1665] = {.lex_state = 112, .external_lex_state = 13}, + [1666] = {.lex_state = 193, .external_lex_state = 14}, + [1667] = {.lex_state = 263, .external_lex_state = 23}, + [1668] = {.lex_state = 263, .external_lex_state = 23}, + [1669] = {.lex_state = 112, .external_lex_state = 13}, + [1670] = {.lex_state = 193, .external_lex_state = 14}, + [1671] = {.lex_state = 193, .external_lex_state = 14}, + [1672] = {.lex_state = 242, .external_lex_state = 14}, + [1673] = {.lex_state = 242, .external_lex_state = 14}, + [1674] = {.lex_state = 242, .external_lex_state = 14}, + [1675] = {.lex_state = 234, .external_lex_state = 13}, + [1676] = {.lex_state = 242, .external_lex_state = 14}, + [1677] = {.lex_state = 234, .external_lex_state = 13}, + [1678] = {.lex_state = 112}, + [1679] = {.lex_state = 112, .external_lex_state = 13}, + [1680] = {.lex_state = 112, .external_lex_state = 13}, + [1681] = {.lex_state = 112, .external_lex_state = 13}, + [1682] = {.lex_state = 242, .external_lex_state = 14}, + [1683] = {.lex_state = 234, .external_lex_state = 13}, + [1684] = {.lex_state = 242, .external_lex_state = 14}, + [1685] = {.lex_state = 242, .external_lex_state = 14}, + [1686] = {.lex_state = 242, .external_lex_state = 14}, + [1687] = {.lex_state = 205, .external_lex_state = 4}, + [1688] = {.lex_state = 263, .external_lex_state = 23}, + [1689] = {.lex_state = 263, .external_lex_state = 23}, + [1690] = {.lex_state = 112, .external_lex_state = 13}, + [1691] = {.lex_state = 205, .external_lex_state = 4}, + [1692] = {.lex_state = 263, .external_lex_state = 23}, + [1693] = {.lex_state = 263, .external_lex_state = 23}, + [1694] = {.lex_state = 112, .external_lex_state = 13}, + [1695] = {.lex_state = 234, .external_lex_state = 13}, + [1696] = {.lex_state = 205, .external_lex_state = 4}, + [1697] = {.lex_state = 234, .external_lex_state = 13}, + [1698] = {.lex_state = 205, .external_lex_state = 4}, + [1699] = {.lex_state = 234, .external_lex_state = 13}, + [1700] = {.lex_state = 205, .external_lex_state = 4}, + [1701] = {.lex_state = 263, .external_lex_state = 23}, + [1702] = {.lex_state = 263, .external_lex_state = 23}, + [1703] = {.lex_state = 112, .external_lex_state = 13}, + [1704] = {.lex_state = 234, .external_lex_state = 13}, + [1705] = {.lex_state = 244, .external_lex_state = 20}, + [1706] = {.lex_state = 234, .external_lex_state = 13}, + [1707] = {.lex_state = 112}, + [1708] = {.lex_state = 112, .external_lex_state = 13}, + [1709] = {.lex_state = 112, .external_lex_state = 13}, + [1710] = {.lex_state = 112, .external_lex_state = 13}, + [1711] = {.lex_state = 244, .external_lex_state = 20}, + [1712] = {.lex_state = 234, .external_lex_state = 13}, + [1713] = {.lex_state = 244, .external_lex_state = 20}, + [1714] = {.lex_state = 136, .external_lex_state = 2}, + [1715] = {.lex_state = 207, .external_lex_state = 12}, + [1716] = {.lex_state = 263, .external_lex_state = 23}, + [1717] = {.lex_state = 263, .external_lex_state = 23}, + [1718] = {.lex_state = 112, .external_lex_state = 13}, + [1719] = {.lex_state = 207, .external_lex_state = 12}, + [1720] = {.lex_state = 263, .external_lex_state = 23}, + [1721] = {.lex_state = 263, .external_lex_state = 23}, + [1722] = {.lex_state = 112, .external_lex_state = 13}, + [1723] = {.lex_state = 234, .external_lex_state = 13}, + [1724] = {.lex_state = 207, .external_lex_state = 12}, + [1725] = {.lex_state = 234, .external_lex_state = 13}, + [1726] = {.lex_state = 207, .external_lex_state = 12}, + [1727] = {.lex_state = 234, .external_lex_state = 13}, + [1728] = {.lex_state = 207, .external_lex_state = 12}, + [1729] = {.lex_state = 263, .external_lex_state = 23}, + [1730] = {.lex_state = 263, .external_lex_state = 23}, + [1731] = {.lex_state = 112, .external_lex_state = 13}, + [1732] = {.lex_state = 165, .external_lex_state = 17}, + [1733] = {.lex_state = 165, .external_lex_state = 17}, + [1734] = {.lex_state = 165, .external_lex_state = 17}, + [1735] = {.lex_state = 165, .external_lex_state = 17}, + [1736] = {.lex_state = 263, .external_lex_state = 23}, + [1737] = {.lex_state = 263, .external_lex_state = 23}, + [1738] = {.lex_state = 112, .external_lex_state = 13}, + [1739] = {.lex_state = 165, .external_lex_state = 17}, + [1740] = {.lex_state = 263, .external_lex_state = 23}, + [1741] = {.lex_state = 263, .external_lex_state = 23}, + [1742] = {.lex_state = 112, .external_lex_state = 13}, + [1743] = {.lex_state = 165, .external_lex_state = 17}, + [1744] = {.lex_state = 263, .external_lex_state = 23}, + [1745] = {.lex_state = 263, .external_lex_state = 23}, + [1746] = {.lex_state = 112, .external_lex_state = 13}, + [1747] = {.lex_state = 165, .external_lex_state = 17}, + [1748] = {.lex_state = 165, .external_lex_state = 17}, + [1749] = {.lex_state = 209, .external_lex_state = 18}, + [1750] = {.lex_state = 209, .external_lex_state = 18}, + [1751] = {.lex_state = 209, .external_lex_state = 18}, + [1752] = {.lex_state = 209, .external_lex_state = 18}, + [1753] = {.lex_state = 263, .external_lex_state = 23}, + [1754] = {.lex_state = 263, .external_lex_state = 23}, + [1755] = {.lex_state = 112, .external_lex_state = 13}, + [1756] = {.lex_state = 209, .external_lex_state = 18}, + [1757] = {.lex_state = 263, .external_lex_state = 23}, + [1758] = {.lex_state = 263, .external_lex_state = 23}, + [1759] = {.lex_state = 112, .external_lex_state = 13}, + [1760] = {.lex_state = 209, .external_lex_state = 18}, + [1761] = {.lex_state = 263, .external_lex_state = 23}, + [1762] = {.lex_state = 263, .external_lex_state = 23}, + [1763] = {.lex_state = 112, .external_lex_state = 13}, + [1764] = {.lex_state = 209, .external_lex_state = 18}, + [1765] = {.lex_state = 209, .external_lex_state = 18}, + [1766] = {.lex_state = 251, .external_lex_state = 10}, + [1767] = {.lex_state = 263, .external_lex_state = 23}, + [1768] = {.lex_state = 263, .external_lex_state = 23}, + [1769] = {.lex_state = 112, .external_lex_state = 13}, + [1770] = {.lex_state = 251, .external_lex_state = 10}, + [1771] = {.lex_state = 263, .external_lex_state = 23}, + [1772] = {.lex_state = 263, .external_lex_state = 23}, + [1773] = {.lex_state = 112, .external_lex_state = 13}, + [1774] = {.lex_state = 234, .external_lex_state = 13}, + [1775] = {.lex_state = 251, .external_lex_state = 10}, + [1776] = {.lex_state = 234, .external_lex_state = 13}, + [1777] = {.lex_state = 251, .external_lex_state = 10}, + [1778] = {.lex_state = 234, .external_lex_state = 13}, + [1779] = {.lex_state = 251, .external_lex_state = 10}, + [1780] = {.lex_state = 263, .external_lex_state = 23}, + [1781] = {.lex_state = 263, .external_lex_state = 23}, + [1782] = {.lex_state = 112, .external_lex_state = 13}, + [1783] = {.lex_state = 217, .external_lex_state = 2}, + [1784] = {.lex_state = 163, .external_lex_state = 6}, + [1785] = {.lex_state = 269, .external_lex_state = 12}, + [1786] = {.lex_state = 269, .external_lex_state = 12}, + [1787] = {.lex_state = 269, .external_lex_state = 12}, + [1788] = {.lex_state = 133}, + [1789] = {.lex_state = 255}, + [1790] = {.lex_state = 160, .external_lex_state = 2}, + [1791] = {.lex_state = 160, .external_lex_state = 2}, + [1792] = {.lex_state = 133}, + [1793] = {.lex_state = 269, .external_lex_state = 12}, + [1794] = {.lex_state = 269, .external_lex_state = 12}, + [1795] = {.lex_state = 255}, + [1796] = {.lex_state = 160, .external_lex_state = 2}, + [1797] = {.lex_state = 160, .external_lex_state = 2}, + [1798] = {.lex_state = 234, .external_lex_state = 13}, + [1799] = {.lex_state = 269, .external_lex_state = 12}, + [1800] = {.lex_state = 234, .external_lex_state = 13}, + [1801] = {.lex_state = 112}, + [1802] = {.lex_state = 112, .external_lex_state = 13}, + [1803] = {.lex_state = 112, .external_lex_state = 13}, + [1804] = {.lex_state = 112, .external_lex_state = 13}, + [1805] = {.lex_state = 269, .external_lex_state = 12}, + [1806] = {.lex_state = 234, .external_lex_state = 13}, + [1807] = {.lex_state = 269, .external_lex_state = 12}, + [1808] = {.lex_state = 269, .external_lex_state = 12}, + [1809] = {.lex_state = 269, .external_lex_state = 12}, + [1810] = {.lex_state = 163, .external_lex_state = 6}, + [1811] = {.lex_state = 163, .external_lex_state = 6}, + [1812] = {.lex_state = 175, .external_lex_state = 10}, + [1813] = {.lex_state = 175, .external_lex_state = 10}, + [1814] = {.lex_state = 175, .external_lex_state = 10}, + [1815] = {.lex_state = 175, .external_lex_state = 10}, + [1816] = {.lex_state = 175, .external_lex_state = 10}, + [1817] = {.lex_state = 175, .external_lex_state = 10}, + [1818] = {.lex_state = 271, .external_lex_state = 10}, + [1819] = {.lex_state = 271, .external_lex_state = 10}, + [1820] = {.lex_state = 271, .external_lex_state = 10}, + [1821] = {.lex_state = 234, .external_lex_state = 13}, + [1822] = {.lex_state = 271, .external_lex_state = 10}, + [1823] = {.lex_state = 234, .external_lex_state = 13}, + [1824] = {.lex_state = 112}, + [1825] = {.lex_state = 112, .external_lex_state = 13}, + [1826] = {.lex_state = 112, .external_lex_state = 13}, + [1827] = {.lex_state = 112, .external_lex_state = 13}, + [1828] = {.lex_state = 271, .external_lex_state = 10}, + [1829] = {.lex_state = 234, .external_lex_state = 13}, + [1830] = {.lex_state = 271, .external_lex_state = 10}, + [1831] = {.lex_state = 271, .external_lex_state = 10}, + [1832] = {.lex_state = 271, .external_lex_state = 10}, + [1833] = {.lex_state = 173, .external_lex_state = 17}, + [1834] = {.lex_state = 263, .external_lex_state = 23}, + [1835] = {.lex_state = 263, .external_lex_state = 23}, + [1836] = {.lex_state = 112, .external_lex_state = 13}, + [1837] = {.lex_state = 173, .external_lex_state = 17}, + [1838] = {.lex_state = 263, .external_lex_state = 23}, + [1839] = {.lex_state = 263, .external_lex_state = 23}, + [1840] = {.lex_state = 112, .external_lex_state = 13}, + [1841] = {.lex_state = 234, .external_lex_state = 13}, + [1842] = {.lex_state = 173, .external_lex_state = 17}, + [1843] = {.lex_state = 234, .external_lex_state = 13}, + [1844] = {.lex_state = 173, .external_lex_state = 17}, + [1845] = {.lex_state = 234, .external_lex_state = 13}, + [1846] = {.lex_state = 173, .external_lex_state = 17}, + [1847] = {.lex_state = 263, .external_lex_state = 23}, + [1848] = {.lex_state = 263, .external_lex_state = 23}, + [1849] = {.lex_state = 112, .external_lex_state = 13}, + [1850] = {.lex_state = 163, .external_lex_state = 10}, + [1851] = {.lex_state = 163, .external_lex_state = 10}, + [1852] = {.lex_state = 136}, + [1853] = {.lex_state = 163, .external_lex_state = 10}, + [1854] = {.lex_state = 163, .external_lex_state = 10}, + [1855] = {.lex_state = 146}, + [1856] = {.lex_state = 163, .external_lex_state = 10}, + [1857] = {.lex_state = 163, .external_lex_state = 10}, + [1858] = {.lex_state = 112}, + [1859] = {.lex_state = 112, .external_lex_state = 13}, + [1860] = {.lex_state = 153, .external_lex_state = 5}, + [1861] = {.lex_state = 112, .external_lex_state = 13}, + [1862] = {.lex_state = 112, .external_lex_state = 13}, + [1863] = {.lex_state = 112}, + [1864] = {.lex_state = 189, .external_lex_state = 2}, + [1865] = {.lex_state = 112}, + [1866] = {.lex_state = 197, .external_lex_state = 2}, + [1867] = {.lex_state = 112}, + [1868] = {.lex_state = 189, .external_lex_state = 2}, + [1869] = {.lex_state = 178, .external_lex_state = 22}, + [1870] = {.lex_state = 178, .external_lex_state = 22}, + [1871] = {.lex_state = 178, .external_lex_state = 22}, + [1872] = {.lex_state = 234, .external_lex_state = 13}, + [1873] = {.lex_state = 178, .external_lex_state = 22}, + [1874] = {.lex_state = 234, .external_lex_state = 13}, + [1875] = {.lex_state = 112}, + [1876] = {.lex_state = 112, .external_lex_state = 13}, + [1877] = {.lex_state = 112, .external_lex_state = 13}, + [1878] = {.lex_state = 112, .external_lex_state = 13}, + [1879] = {.lex_state = 178, .external_lex_state = 22}, + [1880] = {.lex_state = 234, .external_lex_state = 13}, + [1881] = {.lex_state = 178, .external_lex_state = 22}, + [1882] = {.lex_state = 178, .external_lex_state = 22}, + [1883] = {.lex_state = 178, .external_lex_state = 22}, + [1884] = {.lex_state = 167, .external_lex_state = 4}, + [1885] = {.lex_state = 167, .external_lex_state = 4}, + [1886] = {.lex_state = 167, .external_lex_state = 4}, + [1887] = {.lex_state = 167, .external_lex_state = 4}, + [1888] = {.lex_state = 167, .external_lex_state = 4}, + [1889] = {.lex_state = 167, .external_lex_state = 4}, + [1890] = {.lex_state = 201, .external_lex_state = 4}, + [1891] = {.lex_state = 263, .external_lex_state = 23}, + [1892] = {.lex_state = 263, .external_lex_state = 23}, + [1893] = {.lex_state = 112, .external_lex_state = 13}, + [1894] = {.lex_state = 201, .external_lex_state = 4}, + [1895] = {.lex_state = 263, .external_lex_state = 23}, + [1896] = {.lex_state = 263, .external_lex_state = 23}, + [1897] = {.lex_state = 112, .external_lex_state = 13}, + [1898] = {.lex_state = 234, .external_lex_state = 13}, + [1899] = {.lex_state = 201, .external_lex_state = 4}, + [1900] = {.lex_state = 234, .external_lex_state = 13}, + [1901] = {.lex_state = 201, .external_lex_state = 4}, + [1902] = {.lex_state = 234, .external_lex_state = 13}, + [1903] = {.lex_state = 201, .external_lex_state = 4}, + [1904] = {.lex_state = 263, .external_lex_state = 23}, + [1905] = {.lex_state = 263, .external_lex_state = 23}, + [1906] = {.lex_state = 112, .external_lex_state = 13}, + [1907] = {.lex_state = 138, .external_lex_state = 22}, + [1908] = {.lex_state = 263, .external_lex_state = 23}, + [1909] = {.lex_state = 263, .external_lex_state = 23}, + [1910] = {.lex_state = 112, .external_lex_state = 13}, + [1911] = {.lex_state = 138, .external_lex_state = 22}, + [1912] = {.lex_state = 263, .external_lex_state = 23}, + [1913] = {.lex_state = 263, .external_lex_state = 23}, + [1914] = {.lex_state = 112, .external_lex_state = 13}, + [1915] = {.lex_state = 234, .external_lex_state = 13}, + [1916] = {.lex_state = 138, .external_lex_state = 22}, + [1917] = {.lex_state = 234, .external_lex_state = 13}, + [1918] = {.lex_state = 138, .external_lex_state = 22}, + [1919] = {.lex_state = 234, .external_lex_state = 13}, + [1920] = {.lex_state = 138, .external_lex_state = 22}, + [1921] = {.lex_state = 263, .external_lex_state = 23}, + [1922] = {.lex_state = 263, .external_lex_state = 23}, + [1923] = {.lex_state = 112, .external_lex_state = 13}, + [1924] = {.lex_state = 136, .external_lex_state = 11}, + [1925] = {.lex_state = 136, .external_lex_state = 11}, + [1926] = {.lex_state = 136, .external_lex_state = 11}, + [1927] = {.lex_state = 136, .external_lex_state = 11}, + [1928] = {.lex_state = 136, .external_lex_state = 11}, + [1929] = {.lex_state = 136, .external_lex_state = 11}, + [1930] = {.lex_state = 146, .external_lex_state = 12}, + [1931] = {.lex_state = 146, .external_lex_state = 12}, + [1932] = {.lex_state = 146, .external_lex_state = 12}, + [1933] = {.lex_state = 146, .external_lex_state = 12}, + [1934] = {.lex_state = 146, .external_lex_state = 12}, + [1935] = {.lex_state = 146, .external_lex_state = 12}, + [1936] = {.lex_state = 263, .external_lex_state = 23}, + [1937] = {.lex_state = 263, .external_lex_state = 23}, + [1938] = {.lex_state = 263, .external_lex_state = 23}, + [1939] = {.lex_state = 112, .external_lex_state = 13}, + [1940] = {.lex_state = 263, .external_lex_state = 23}, + [1941] = {.lex_state = 263, .external_lex_state = 23}, + [1942] = {.lex_state = 263, .external_lex_state = 23}, + [1943] = {.lex_state = 112, .external_lex_state = 13}, + [1944] = {.lex_state = 234, .external_lex_state = 13}, + [1945] = {.lex_state = 263, .external_lex_state = 23}, + [1946] = {.lex_state = 234, .external_lex_state = 13}, + [1947] = {.lex_state = 263, .external_lex_state = 23}, + [1948] = {.lex_state = 234, .external_lex_state = 13}, + [1949] = {.lex_state = 263, .external_lex_state = 23}, + [1950] = {.lex_state = 263, .external_lex_state = 23}, + [1951] = {.lex_state = 263, .external_lex_state = 23}, + [1952] = {.lex_state = 112, .external_lex_state = 13}, + [1953] = {.lex_state = 189, .external_lex_state = 11}, + [1954] = {.lex_state = 263, .external_lex_state = 23}, + [1955] = {.lex_state = 263, .external_lex_state = 23}, + [1956] = {.lex_state = 112, .external_lex_state = 13}, + [1957] = {.lex_state = 189, .external_lex_state = 11}, + [1958] = {.lex_state = 263, .external_lex_state = 23}, + [1959] = {.lex_state = 263, .external_lex_state = 23}, + [1960] = {.lex_state = 112, .external_lex_state = 13}, + [1961] = {.lex_state = 234, .external_lex_state = 13}, + [1962] = {.lex_state = 189, .external_lex_state = 11}, + [1963] = {.lex_state = 234, .external_lex_state = 13}, + [1964] = {.lex_state = 189, .external_lex_state = 11}, + [1965] = {.lex_state = 234, .external_lex_state = 13}, + [1966] = {.lex_state = 189, .external_lex_state = 11}, + [1967] = {.lex_state = 263, .external_lex_state = 23}, + [1968] = {.lex_state = 263, .external_lex_state = 23}, + [1969] = {.lex_state = 112, .external_lex_state = 13}, + [1970] = {.lex_state = 112}, + [1971] = {.lex_state = 112}, + [1972] = {.lex_state = 112}, + [1973] = {.lex_state = 112}, + [1974] = {.lex_state = 255}, + [1975] = {.lex_state = 112}, + [1976] = {.lex_state = 255}, + [1977] = {.lex_state = 112}, + [1978] = {.lex_state = 277, .external_lex_state = 12}, + [1979] = {.lex_state = 277, .external_lex_state = 12}, + [1980] = {.lex_state = 112}, + [1981] = {.lex_state = 136}, + [1982] = {.lex_state = 277, .external_lex_state = 12}, + [1983] = {.lex_state = 277, .external_lex_state = 12}, + [1984] = {.lex_state = 146}, + [1985] = {.lex_state = 277, .external_lex_state = 12}, + [1986] = {.lex_state = 277, .external_lex_state = 12}, + [1987] = {.lex_state = 112}, + [1988] = {.lex_state = 112, .external_lex_state = 13}, + [1989] = {.lex_state = 153, .external_lex_state = 5}, + [1990] = {.lex_state = 112, .external_lex_state = 13}, + [1991] = {.lex_state = 112, .external_lex_state = 13}, + [1992] = {.lex_state = 112}, + [1993] = {.lex_state = 189, .external_lex_state = 2}, + [1994] = {.lex_state = 112}, + [1995] = {.lex_state = 197, .external_lex_state = 2}, + [1996] = {.lex_state = 112}, + [1997] = {.lex_state = 189, .external_lex_state = 2}, + [1998] = {.lex_state = 236, .external_lex_state = 5}, + [1999] = {.lex_state = 182, .external_lex_state = 24}, + [2000] = {.lex_state = 182, .external_lex_state = 24}, + [2001] = {.lex_state = 182, .external_lex_state = 24}, + [2002] = {.lex_state = 234, .external_lex_state = 13}, + [2003] = {.lex_state = 182, .external_lex_state = 24}, + [2004] = {.lex_state = 234, .external_lex_state = 13}, + [2005] = {.lex_state = 112}, + [2006] = {.lex_state = 112, .external_lex_state = 13}, + [2007] = {.lex_state = 112, .external_lex_state = 13}, + [2008] = {.lex_state = 112, .external_lex_state = 13}, + [2009] = {.lex_state = 182, .external_lex_state = 24}, + [2010] = {.lex_state = 234, .external_lex_state = 13}, + [2011] = {.lex_state = 182, .external_lex_state = 24}, + [2012] = {.lex_state = 182, .external_lex_state = 24}, + [2013] = {.lex_state = 182, .external_lex_state = 24}, + [2014] = {.lex_state = 184, .external_lex_state = 14}, + [2015] = {.lex_state = 184, .external_lex_state = 14}, + [2016] = {.lex_state = 184, .external_lex_state = 14}, + [2017] = {.lex_state = 184, .external_lex_state = 14}, + [2018] = {.lex_state = 184, .external_lex_state = 14}, + [2019] = {.lex_state = 184, .external_lex_state = 14}, + [2020] = {.lex_state = 240, .external_lex_state = 14}, + [2021] = {.lex_state = 263, .external_lex_state = 23}, + [2022] = {.lex_state = 263, .external_lex_state = 23}, + [2023] = {.lex_state = 112, .external_lex_state = 13}, + [2024] = {.lex_state = 240, .external_lex_state = 14}, + [2025] = {.lex_state = 263, .external_lex_state = 23}, + [2026] = {.lex_state = 263, .external_lex_state = 23}, + [2027] = {.lex_state = 112, .external_lex_state = 13}, + [2028] = {.lex_state = 234, .external_lex_state = 13}, + [2029] = {.lex_state = 240, .external_lex_state = 14}, + [2030] = {.lex_state = 234, .external_lex_state = 13}, + [2031] = {.lex_state = 240, .external_lex_state = 14}, + [2032] = {.lex_state = 234, .external_lex_state = 13}, + [2033] = {.lex_state = 240, .external_lex_state = 14}, + [2034] = {.lex_state = 263, .external_lex_state = 23}, + [2035] = {.lex_state = 263, .external_lex_state = 23}, + [2036] = {.lex_state = 112, .external_lex_state = 13}, + [2037] = {.lex_state = 197, .external_lex_state = 11}, + [2038] = {.lex_state = 263, .external_lex_state = 23}, + [2039] = {.lex_state = 263, .external_lex_state = 23}, + [2040] = {.lex_state = 112, .external_lex_state = 13}, + [2041] = {.lex_state = 197, .external_lex_state = 11}, + [2042] = {.lex_state = 263, .external_lex_state = 23}, + [2043] = {.lex_state = 263, .external_lex_state = 23}, + [2044] = {.lex_state = 112, .external_lex_state = 13}, + [2045] = {.lex_state = 234, .external_lex_state = 13}, + [2046] = {.lex_state = 197, .external_lex_state = 11}, + [2047] = {.lex_state = 234, .external_lex_state = 13}, + [2048] = {.lex_state = 197, .external_lex_state = 11}, + [2049] = {.lex_state = 234, .external_lex_state = 13}, + [2050] = {.lex_state = 197, .external_lex_state = 11}, + [2051] = {.lex_state = 263, .external_lex_state = 23}, + [2052] = {.lex_state = 263, .external_lex_state = 23}, + [2053] = {.lex_state = 112, .external_lex_state = 13}, + [2054] = {.lex_state = 279, .external_lex_state = 12}, + [2055] = {.lex_state = 279, .external_lex_state = 12}, + [2056] = {.lex_state = 136}, + [2057] = {.lex_state = 279, .external_lex_state = 12}, + [2058] = {.lex_state = 279, .external_lex_state = 12}, + [2059] = {.lex_state = 146}, + [2060] = {.lex_state = 279, .external_lex_state = 12}, + [2061] = {.lex_state = 279, .external_lex_state = 12}, + [2062] = {.lex_state = 112}, + [2063] = {.lex_state = 112, .external_lex_state = 13}, + [2064] = {.lex_state = 153, .external_lex_state = 5}, + [2065] = {.lex_state = 112, .external_lex_state = 13}, + [2066] = {.lex_state = 112, .external_lex_state = 13}, + [2067] = {.lex_state = 112}, + [2068] = {.lex_state = 189, .external_lex_state = 2}, + [2069] = {.lex_state = 112}, + [2070] = {.lex_state = 197, .external_lex_state = 2}, + [2071] = {.lex_state = 112}, + [2072] = {.lex_state = 189, .external_lex_state = 2}, + [2073] = {.lex_state = 191, .external_lex_state = 24}, + [2074] = {.lex_state = 191, .external_lex_state = 24}, + [2075] = {.lex_state = 191, .external_lex_state = 24}, + [2076] = {.lex_state = 234, .external_lex_state = 13}, + [2077] = {.lex_state = 191, .external_lex_state = 24}, + [2078] = {.lex_state = 234, .external_lex_state = 13}, + [2079] = {.lex_state = 112}, + [2080] = {.lex_state = 112, .external_lex_state = 13}, + [2081] = {.lex_state = 112, .external_lex_state = 13}, + [2082] = {.lex_state = 112, .external_lex_state = 13}, + [2083] = {.lex_state = 191, .external_lex_state = 24}, + [2084] = {.lex_state = 234, .external_lex_state = 13}, + [2085] = {.lex_state = 191, .external_lex_state = 24}, + [2086] = {.lex_state = 191, .external_lex_state = 24}, + [2087] = {.lex_state = 191, .external_lex_state = 24}, + [2088] = {.lex_state = 193, .external_lex_state = 14}, + [2089] = {.lex_state = 193, .external_lex_state = 14}, + [2090] = {.lex_state = 193, .external_lex_state = 14}, + [2091] = {.lex_state = 193, .external_lex_state = 14}, + [2092] = {.lex_state = 193, .external_lex_state = 14}, + [2093] = {.lex_state = 193, .external_lex_state = 14}, + [2094] = {.lex_state = 242, .external_lex_state = 14}, + [2095] = {.lex_state = 263, .external_lex_state = 23}, + [2096] = {.lex_state = 263, .external_lex_state = 23}, + [2097] = {.lex_state = 112, .external_lex_state = 13}, + [2098] = {.lex_state = 242, .external_lex_state = 14}, + [2099] = {.lex_state = 263, .external_lex_state = 23}, + [2100] = {.lex_state = 263, .external_lex_state = 23}, + [2101] = {.lex_state = 112, .external_lex_state = 13}, + [2102] = {.lex_state = 234, .external_lex_state = 13}, + [2103] = {.lex_state = 242, .external_lex_state = 14}, + [2104] = {.lex_state = 234, .external_lex_state = 13}, + [2105] = {.lex_state = 242, .external_lex_state = 14}, + [2106] = {.lex_state = 234, .external_lex_state = 13}, + [2107] = {.lex_state = 242, .external_lex_state = 14}, + [2108] = {.lex_state = 263, .external_lex_state = 23}, + [2109] = {.lex_state = 263, .external_lex_state = 23}, + [2110] = {.lex_state = 112, .external_lex_state = 13}, + [2111] = {.lex_state = 205, .external_lex_state = 4}, + [2112] = {.lex_state = 205, .external_lex_state = 4}, + [2113] = {.lex_state = 205, .external_lex_state = 4}, + [2114] = {.lex_state = 205, .external_lex_state = 4}, + [2115] = {.lex_state = 263, .external_lex_state = 23}, + [2116] = {.lex_state = 263, .external_lex_state = 23}, + [2117] = {.lex_state = 112, .external_lex_state = 13}, + [2118] = {.lex_state = 205, .external_lex_state = 4}, + [2119] = {.lex_state = 263, .external_lex_state = 23}, + [2120] = {.lex_state = 263, .external_lex_state = 23}, + [2121] = {.lex_state = 112, .external_lex_state = 13}, + [2122] = {.lex_state = 205, .external_lex_state = 4}, + [2123] = {.lex_state = 263, .external_lex_state = 23}, + [2124] = {.lex_state = 263, .external_lex_state = 23}, + [2125] = {.lex_state = 112, .external_lex_state = 13}, + [2126] = {.lex_state = 205, .external_lex_state = 4}, + [2127] = {.lex_state = 205, .external_lex_state = 4}, + [2128] = {.lex_state = 244, .external_lex_state = 20}, + [2129] = {.lex_state = 263, .external_lex_state = 23}, + [2130] = {.lex_state = 263, .external_lex_state = 23}, + [2131] = {.lex_state = 112, .external_lex_state = 13}, + [2132] = {.lex_state = 244, .external_lex_state = 20}, + [2133] = {.lex_state = 263, .external_lex_state = 23}, + [2134] = {.lex_state = 263, .external_lex_state = 23}, + [2135] = {.lex_state = 112, .external_lex_state = 13}, + [2136] = {.lex_state = 234, .external_lex_state = 13}, + [2137] = {.lex_state = 244, .external_lex_state = 20}, + [2138] = {.lex_state = 234, .external_lex_state = 13}, + [2139] = {.lex_state = 244, .external_lex_state = 20}, + [2140] = {.lex_state = 234, .external_lex_state = 13}, + [2141] = {.lex_state = 244, .external_lex_state = 20}, + [2142] = {.lex_state = 263, .external_lex_state = 23}, + [2143] = {.lex_state = 263, .external_lex_state = 23}, + [2144] = {.lex_state = 112, .external_lex_state = 13}, + [2145] = {.lex_state = 207, .external_lex_state = 12}, + [2146] = {.lex_state = 207, .external_lex_state = 12}, + [2147] = {.lex_state = 207, .external_lex_state = 12}, + [2148] = {.lex_state = 207, .external_lex_state = 12}, + [2149] = {.lex_state = 263, .external_lex_state = 23}, + [2150] = {.lex_state = 263, .external_lex_state = 23}, + [2151] = {.lex_state = 112, .external_lex_state = 13}, + [2152] = {.lex_state = 207, .external_lex_state = 12}, + [2153] = {.lex_state = 263, .external_lex_state = 23}, + [2154] = {.lex_state = 263, .external_lex_state = 23}, + [2155] = {.lex_state = 112, .external_lex_state = 13}, + [2156] = {.lex_state = 207, .external_lex_state = 12}, + [2157] = {.lex_state = 263, .external_lex_state = 23}, + [2158] = {.lex_state = 263, .external_lex_state = 23}, + [2159] = {.lex_state = 112, .external_lex_state = 13}, + [2160] = {.lex_state = 207, .external_lex_state = 12}, + [2161] = {.lex_state = 207, .external_lex_state = 12}, + [2162] = {.lex_state = 165, .external_lex_state = 17}, + [2163] = {.lex_state = 165, .external_lex_state = 17}, + [2164] = {.lex_state = 165, .external_lex_state = 17}, + [2165] = {.lex_state = 165, .external_lex_state = 17}, + [2166] = {.lex_state = 165, .external_lex_state = 17}, + [2167] = {.lex_state = 165, .external_lex_state = 17}, + [2168] = {.lex_state = 209, .external_lex_state = 18}, + [2169] = {.lex_state = 209, .external_lex_state = 18}, + [2170] = {.lex_state = 209, .external_lex_state = 18}, + [2171] = {.lex_state = 209, .external_lex_state = 18}, + [2172] = {.lex_state = 209, .external_lex_state = 18}, + [2173] = {.lex_state = 209, .external_lex_state = 18}, + [2174] = {.lex_state = 251, .external_lex_state = 10}, + [2175] = {.lex_state = 251, .external_lex_state = 10}, + [2176] = {.lex_state = 251, .external_lex_state = 10}, + [2177] = {.lex_state = 251, .external_lex_state = 10}, + [2178] = {.lex_state = 263, .external_lex_state = 23}, + [2179] = {.lex_state = 263, .external_lex_state = 23}, + [2180] = {.lex_state = 112, .external_lex_state = 13}, + [2181] = {.lex_state = 251, .external_lex_state = 10}, + [2182] = {.lex_state = 263, .external_lex_state = 23}, + [2183] = {.lex_state = 263, .external_lex_state = 23}, + [2184] = {.lex_state = 112, .external_lex_state = 13}, + [2185] = {.lex_state = 251, .external_lex_state = 10}, + [2186] = {.lex_state = 263, .external_lex_state = 23}, + [2187] = {.lex_state = 263, .external_lex_state = 23}, + [2188] = {.lex_state = 112, .external_lex_state = 13}, + [2189] = {.lex_state = 251, .external_lex_state = 10}, + [2190] = {.lex_state = 251, .external_lex_state = 10}, + [2191] = {.lex_state = 255}, + [2192] = {.lex_state = 160, .external_lex_state = 2}, + [2193] = {.lex_state = 160, .external_lex_state = 2}, + [2194] = {.lex_state = 255}, + [2195] = {.lex_state = 160, .external_lex_state = 2}, + [2196] = {.lex_state = 269, .external_lex_state = 12}, + [2197] = {.lex_state = 263, .external_lex_state = 23}, + [2198] = {.lex_state = 263, .external_lex_state = 23}, + [2199] = {.lex_state = 112, .external_lex_state = 13}, + [2200] = {.lex_state = 269, .external_lex_state = 12}, + [2201] = {.lex_state = 263, .external_lex_state = 23}, + [2202] = {.lex_state = 263, .external_lex_state = 23}, + [2203] = {.lex_state = 112, .external_lex_state = 13}, + [2204] = {.lex_state = 234, .external_lex_state = 13}, + [2205] = {.lex_state = 269, .external_lex_state = 12}, + [2206] = {.lex_state = 234, .external_lex_state = 13}, + [2207] = {.lex_state = 269, .external_lex_state = 12}, + [2208] = {.lex_state = 234, .external_lex_state = 13}, + [2209] = {.lex_state = 269, .external_lex_state = 12}, + [2210] = {.lex_state = 263, .external_lex_state = 23}, + [2211] = {.lex_state = 263, .external_lex_state = 23}, + [2212] = {.lex_state = 112, .external_lex_state = 13}, + [2213] = {.lex_state = 271, .external_lex_state = 10}, + [2214] = {.lex_state = 263, .external_lex_state = 23}, + [2215] = {.lex_state = 263, .external_lex_state = 23}, + [2216] = {.lex_state = 112, .external_lex_state = 13}, + [2217] = {.lex_state = 271, .external_lex_state = 10}, + [2218] = {.lex_state = 263, .external_lex_state = 23}, + [2219] = {.lex_state = 263, .external_lex_state = 23}, + [2220] = {.lex_state = 112, .external_lex_state = 13}, + [2221] = {.lex_state = 234, .external_lex_state = 13}, + [2222] = {.lex_state = 271, .external_lex_state = 10}, + [2223] = {.lex_state = 234, .external_lex_state = 13}, + [2224] = {.lex_state = 271, .external_lex_state = 10}, + [2225] = {.lex_state = 234, .external_lex_state = 13}, + [2226] = {.lex_state = 271, .external_lex_state = 10}, + [2227] = {.lex_state = 263, .external_lex_state = 23}, + [2228] = {.lex_state = 263, .external_lex_state = 23}, + [2229] = {.lex_state = 112, .external_lex_state = 13}, + [2230] = {.lex_state = 173, .external_lex_state = 17}, + [2231] = {.lex_state = 173, .external_lex_state = 17}, + [2232] = {.lex_state = 173, .external_lex_state = 17}, + [2233] = {.lex_state = 173, .external_lex_state = 17}, + [2234] = {.lex_state = 263, .external_lex_state = 23}, + [2235] = {.lex_state = 263, .external_lex_state = 23}, + [2236] = {.lex_state = 112, .external_lex_state = 13}, + [2237] = {.lex_state = 173, .external_lex_state = 17}, + [2238] = {.lex_state = 263, .external_lex_state = 23}, + [2239] = {.lex_state = 263, .external_lex_state = 23}, + [2240] = {.lex_state = 112, .external_lex_state = 13}, + [2241] = {.lex_state = 173, .external_lex_state = 17}, + [2242] = {.lex_state = 263, .external_lex_state = 23}, + [2243] = {.lex_state = 263, .external_lex_state = 23}, + [2244] = {.lex_state = 112, .external_lex_state = 13}, + [2245] = {.lex_state = 173, .external_lex_state = 17}, + [2246] = {.lex_state = 173, .external_lex_state = 17}, + [2247] = {.lex_state = 163, .external_lex_state = 10}, + [2248] = {.lex_state = 163, .external_lex_state = 10}, + [2249] = {.lex_state = 163, .external_lex_state = 10}, + [2250] = {.lex_state = 234, .external_lex_state = 13}, + [2251] = {.lex_state = 163, .external_lex_state = 10}, + [2252] = {.lex_state = 234, .external_lex_state = 13}, + [2253] = {.lex_state = 112}, + [2254] = {.lex_state = 112, .external_lex_state = 13}, + [2255] = {.lex_state = 112, .external_lex_state = 13}, + [2256] = {.lex_state = 112, .external_lex_state = 13}, + [2257] = {.lex_state = 163, .external_lex_state = 10}, + [2258] = {.lex_state = 234, .external_lex_state = 13}, + [2259] = {.lex_state = 163, .external_lex_state = 10}, + [2260] = {.lex_state = 163, .external_lex_state = 10}, + [2261] = {.lex_state = 163, .external_lex_state = 10}, + [2262] = {.lex_state = 178, .external_lex_state = 22}, + [2263] = {.lex_state = 263, .external_lex_state = 23}, + [2264] = {.lex_state = 263, .external_lex_state = 23}, + [2265] = {.lex_state = 112, .external_lex_state = 13}, + [2266] = {.lex_state = 178, .external_lex_state = 22}, + [2267] = {.lex_state = 263, .external_lex_state = 23}, + [2268] = {.lex_state = 263, .external_lex_state = 23}, + [2269] = {.lex_state = 112, .external_lex_state = 13}, + [2270] = {.lex_state = 234, .external_lex_state = 13}, + [2271] = {.lex_state = 178, .external_lex_state = 22}, + [2272] = {.lex_state = 234, .external_lex_state = 13}, + [2273] = {.lex_state = 178, .external_lex_state = 22}, + [2274] = {.lex_state = 234, .external_lex_state = 13}, + [2275] = {.lex_state = 178, .external_lex_state = 22}, + [2276] = {.lex_state = 263, .external_lex_state = 23}, + [2277] = {.lex_state = 263, .external_lex_state = 23}, + [2278] = {.lex_state = 112, .external_lex_state = 13}, + [2279] = {.lex_state = 201, .external_lex_state = 4}, + [2280] = {.lex_state = 201, .external_lex_state = 4}, + [2281] = {.lex_state = 201, .external_lex_state = 4}, + [2282] = {.lex_state = 201, .external_lex_state = 4}, + [2283] = {.lex_state = 263, .external_lex_state = 23}, + [2284] = {.lex_state = 263, .external_lex_state = 23}, + [2285] = {.lex_state = 112, .external_lex_state = 13}, + [2286] = {.lex_state = 201, .external_lex_state = 4}, + [2287] = {.lex_state = 263, .external_lex_state = 23}, + [2288] = {.lex_state = 263, .external_lex_state = 23}, + [2289] = {.lex_state = 112, .external_lex_state = 13}, + [2290] = {.lex_state = 201, .external_lex_state = 4}, + [2291] = {.lex_state = 263, .external_lex_state = 23}, + [2292] = {.lex_state = 263, .external_lex_state = 23}, + [2293] = {.lex_state = 112, .external_lex_state = 13}, + [2294] = {.lex_state = 201, .external_lex_state = 4}, + [2295] = {.lex_state = 201, .external_lex_state = 4}, + [2296] = {.lex_state = 138, .external_lex_state = 22}, + [2297] = {.lex_state = 138, .external_lex_state = 22}, + [2298] = {.lex_state = 138, .external_lex_state = 22}, + [2299] = {.lex_state = 138, .external_lex_state = 22}, + [2300] = {.lex_state = 263, .external_lex_state = 23}, + [2301] = {.lex_state = 263, .external_lex_state = 23}, + [2302] = {.lex_state = 112, .external_lex_state = 13}, + [2303] = {.lex_state = 138, .external_lex_state = 22}, + [2304] = {.lex_state = 263, .external_lex_state = 23}, + [2305] = {.lex_state = 263, .external_lex_state = 23}, + [2306] = {.lex_state = 112, .external_lex_state = 13}, + [2307] = {.lex_state = 138, .external_lex_state = 22}, + [2308] = {.lex_state = 263, .external_lex_state = 23}, + [2309] = {.lex_state = 263, .external_lex_state = 23}, + [2310] = {.lex_state = 112, .external_lex_state = 13}, + [2311] = {.lex_state = 138, .external_lex_state = 22}, + [2312] = {.lex_state = 138, .external_lex_state = 22}, + [2313] = {.lex_state = 263, .external_lex_state = 23}, + [2314] = {.lex_state = 263, .external_lex_state = 23}, + [2315] = {.lex_state = 263, .external_lex_state = 23}, + [2316] = {.lex_state = 263, .external_lex_state = 23}, + [2317] = {.lex_state = 263, .external_lex_state = 23}, + [2318] = {.lex_state = 263, .external_lex_state = 23}, + [2319] = {.lex_state = 112, .external_lex_state = 13}, + [2320] = {.lex_state = 263, .external_lex_state = 23}, + [2321] = {.lex_state = 263, .external_lex_state = 23}, + [2322] = {.lex_state = 263, .external_lex_state = 23}, + [2323] = {.lex_state = 112, .external_lex_state = 13}, + [2324] = {.lex_state = 263, .external_lex_state = 23}, + [2325] = {.lex_state = 263, .external_lex_state = 23}, + [2326] = {.lex_state = 263, .external_lex_state = 23}, + [2327] = {.lex_state = 112, .external_lex_state = 13}, + [2328] = {.lex_state = 263, .external_lex_state = 23}, + [2329] = {.lex_state = 263, .external_lex_state = 23}, + [2330] = {.lex_state = 189, .external_lex_state = 11}, + [2331] = {.lex_state = 189, .external_lex_state = 11}, + [2332] = {.lex_state = 189, .external_lex_state = 11}, + [2333] = {.lex_state = 189, .external_lex_state = 11}, + [2334] = {.lex_state = 263, .external_lex_state = 23}, + [2335] = {.lex_state = 263, .external_lex_state = 23}, + [2336] = {.lex_state = 112, .external_lex_state = 13}, + [2337] = {.lex_state = 189, .external_lex_state = 11}, + [2338] = {.lex_state = 263, .external_lex_state = 23}, + [2339] = {.lex_state = 263, .external_lex_state = 23}, + [2340] = {.lex_state = 112, .external_lex_state = 13}, + [2341] = {.lex_state = 189, .external_lex_state = 11}, + [2342] = {.lex_state = 263, .external_lex_state = 23}, + [2343] = {.lex_state = 263, .external_lex_state = 23}, + [2344] = {.lex_state = 112, .external_lex_state = 13}, + [2345] = {.lex_state = 189, .external_lex_state = 11}, + [2346] = {.lex_state = 189, .external_lex_state = 11}, + [2347] = {.lex_state = 112}, + [2348] = {.lex_state = 112}, + [2349] = {.lex_state = 112}, + [2350] = {.lex_state = 277, .external_lex_state = 12}, + [2351] = {.lex_state = 277, .external_lex_state = 12}, + [2352] = {.lex_state = 277, .external_lex_state = 12}, + [2353] = {.lex_state = 234, .external_lex_state = 13}, + [2354] = {.lex_state = 277, .external_lex_state = 12}, + [2355] = {.lex_state = 234, .external_lex_state = 13}, + [2356] = {.lex_state = 112}, + [2357] = {.lex_state = 112, .external_lex_state = 13}, + [2358] = {.lex_state = 112, .external_lex_state = 13}, + [2359] = {.lex_state = 112, .external_lex_state = 13}, + [2360] = {.lex_state = 277, .external_lex_state = 12}, + [2361] = {.lex_state = 234, .external_lex_state = 13}, + [2362] = {.lex_state = 277, .external_lex_state = 12}, + [2363] = {.lex_state = 277, .external_lex_state = 12}, + [2364] = {.lex_state = 277, .external_lex_state = 12}, + [2365] = {.lex_state = 182, .external_lex_state = 24}, + [2366] = {.lex_state = 263, .external_lex_state = 23}, + [2367] = {.lex_state = 263, .external_lex_state = 23}, + [2368] = {.lex_state = 112, .external_lex_state = 13}, + [2369] = {.lex_state = 182, .external_lex_state = 24}, + [2370] = {.lex_state = 263, .external_lex_state = 23}, + [2371] = {.lex_state = 263, .external_lex_state = 23}, + [2372] = {.lex_state = 112, .external_lex_state = 13}, + [2373] = {.lex_state = 234, .external_lex_state = 13}, + [2374] = {.lex_state = 182, .external_lex_state = 24}, + [2375] = {.lex_state = 234, .external_lex_state = 13}, + [2376] = {.lex_state = 182, .external_lex_state = 24}, + [2377] = {.lex_state = 234, .external_lex_state = 13}, + [2378] = {.lex_state = 182, .external_lex_state = 24}, + [2379] = {.lex_state = 263, .external_lex_state = 23}, + [2380] = {.lex_state = 263, .external_lex_state = 23}, + [2381] = {.lex_state = 112, .external_lex_state = 13}, + [2382] = {.lex_state = 240, .external_lex_state = 14}, + [2383] = {.lex_state = 240, .external_lex_state = 14}, + [2384] = {.lex_state = 240, .external_lex_state = 14}, + [2385] = {.lex_state = 240, .external_lex_state = 14}, + [2386] = {.lex_state = 263, .external_lex_state = 23}, + [2387] = {.lex_state = 263, .external_lex_state = 23}, + [2388] = {.lex_state = 112, .external_lex_state = 13}, + [2389] = {.lex_state = 240, .external_lex_state = 14}, + [2390] = {.lex_state = 263, .external_lex_state = 23}, + [2391] = {.lex_state = 263, .external_lex_state = 23}, + [2392] = {.lex_state = 112, .external_lex_state = 13}, + [2393] = {.lex_state = 240, .external_lex_state = 14}, + [2394] = {.lex_state = 263, .external_lex_state = 23}, + [2395] = {.lex_state = 263, .external_lex_state = 23}, + [2396] = {.lex_state = 112, .external_lex_state = 13}, + [2397] = {.lex_state = 240, .external_lex_state = 14}, + [2398] = {.lex_state = 240, .external_lex_state = 14}, + [2399] = {.lex_state = 197, .external_lex_state = 11}, + [2400] = {.lex_state = 197, .external_lex_state = 11}, + [2401] = {.lex_state = 197, .external_lex_state = 11}, + [2402] = {.lex_state = 197, .external_lex_state = 11}, + [2403] = {.lex_state = 263, .external_lex_state = 23}, + [2404] = {.lex_state = 263, .external_lex_state = 23}, + [2405] = {.lex_state = 112, .external_lex_state = 13}, + [2406] = {.lex_state = 197, .external_lex_state = 11}, + [2407] = {.lex_state = 263, .external_lex_state = 23}, + [2408] = {.lex_state = 263, .external_lex_state = 23}, + [2409] = {.lex_state = 112, .external_lex_state = 13}, + [2410] = {.lex_state = 197, .external_lex_state = 11}, + [2411] = {.lex_state = 263, .external_lex_state = 23}, + [2412] = {.lex_state = 263, .external_lex_state = 23}, + [2413] = {.lex_state = 112, .external_lex_state = 13}, + [2414] = {.lex_state = 197, .external_lex_state = 11}, + [2415] = {.lex_state = 197, .external_lex_state = 11}, + [2416] = {.lex_state = 279, .external_lex_state = 12}, + [2417] = {.lex_state = 279, .external_lex_state = 12}, + [2418] = {.lex_state = 279, .external_lex_state = 12}, + [2419] = {.lex_state = 234, .external_lex_state = 13}, + [2420] = {.lex_state = 279, .external_lex_state = 12}, + [2421] = {.lex_state = 234, .external_lex_state = 13}, + [2422] = {.lex_state = 112}, + [2423] = {.lex_state = 112, .external_lex_state = 13}, + [2424] = {.lex_state = 112, .external_lex_state = 13}, + [2425] = {.lex_state = 112, .external_lex_state = 13}, + [2426] = {.lex_state = 279, .external_lex_state = 12}, + [2427] = {.lex_state = 234, .external_lex_state = 13}, + [2428] = {.lex_state = 279, .external_lex_state = 12}, + [2429] = {.lex_state = 279, .external_lex_state = 12}, + [2430] = {.lex_state = 279, .external_lex_state = 12}, + [2431] = {.lex_state = 191, .external_lex_state = 24}, + [2432] = {.lex_state = 263, .external_lex_state = 23}, + [2433] = {.lex_state = 263, .external_lex_state = 23}, + [2434] = {.lex_state = 112, .external_lex_state = 13}, + [2435] = {.lex_state = 191, .external_lex_state = 24}, + [2436] = {.lex_state = 263, .external_lex_state = 23}, + [2437] = {.lex_state = 263, .external_lex_state = 23}, + [2438] = {.lex_state = 112, .external_lex_state = 13}, + [2439] = {.lex_state = 234, .external_lex_state = 13}, + [2440] = {.lex_state = 191, .external_lex_state = 24}, + [2441] = {.lex_state = 234, .external_lex_state = 13}, + [2442] = {.lex_state = 191, .external_lex_state = 24}, + [2443] = {.lex_state = 234, .external_lex_state = 13}, + [2444] = {.lex_state = 191, .external_lex_state = 24}, + [2445] = {.lex_state = 263, .external_lex_state = 23}, + [2446] = {.lex_state = 263, .external_lex_state = 23}, + [2447] = {.lex_state = 112, .external_lex_state = 13}, + [2448] = {.lex_state = 242, .external_lex_state = 14}, + [2449] = {.lex_state = 242, .external_lex_state = 14}, + [2450] = {.lex_state = 242, .external_lex_state = 14}, + [2451] = {.lex_state = 242, .external_lex_state = 14}, + [2452] = {.lex_state = 263, .external_lex_state = 23}, + [2453] = {.lex_state = 263, .external_lex_state = 23}, + [2454] = {.lex_state = 112, .external_lex_state = 13}, + [2455] = {.lex_state = 242, .external_lex_state = 14}, + [2456] = {.lex_state = 263, .external_lex_state = 23}, + [2457] = {.lex_state = 263, .external_lex_state = 23}, + [2458] = {.lex_state = 112, .external_lex_state = 13}, + [2459] = {.lex_state = 242, .external_lex_state = 14}, + [2460] = {.lex_state = 263, .external_lex_state = 23}, + [2461] = {.lex_state = 263, .external_lex_state = 23}, + [2462] = {.lex_state = 112, .external_lex_state = 13}, + [2463] = {.lex_state = 242, .external_lex_state = 14}, + [2464] = {.lex_state = 242, .external_lex_state = 14}, + [2465] = {.lex_state = 205, .external_lex_state = 4}, + [2466] = {.lex_state = 205, .external_lex_state = 4}, + [2467] = {.lex_state = 205, .external_lex_state = 4}, + [2468] = {.lex_state = 205, .external_lex_state = 4}, + [2469] = {.lex_state = 205, .external_lex_state = 4}, + [2470] = {.lex_state = 205, .external_lex_state = 4}, + [2471] = {.lex_state = 244, .external_lex_state = 20}, + [2472] = {.lex_state = 244, .external_lex_state = 20}, + [2473] = {.lex_state = 244, .external_lex_state = 20}, + [2474] = {.lex_state = 244, .external_lex_state = 20}, + [2475] = {.lex_state = 263, .external_lex_state = 23}, + [2476] = {.lex_state = 263, .external_lex_state = 23}, + [2477] = {.lex_state = 112, .external_lex_state = 13}, + [2478] = {.lex_state = 244, .external_lex_state = 20}, + [2479] = {.lex_state = 263, .external_lex_state = 23}, + [2480] = {.lex_state = 263, .external_lex_state = 23}, + [2481] = {.lex_state = 112, .external_lex_state = 13}, + [2482] = {.lex_state = 244, .external_lex_state = 20}, + [2483] = {.lex_state = 263, .external_lex_state = 23}, + [2484] = {.lex_state = 263, .external_lex_state = 23}, + [2485] = {.lex_state = 112, .external_lex_state = 13}, + [2486] = {.lex_state = 244, .external_lex_state = 20}, + [2487] = {.lex_state = 244, .external_lex_state = 20}, + [2488] = {.lex_state = 207, .external_lex_state = 12}, + [2489] = {.lex_state = 207, .external_lex_state = 12}, + [2490] = {.lex_state = 207, .external_lex_state = 12}, + [2491] = {.lex_state = 207, .external_lex_state = 12}, + [2492] = {.lex_state = 207, .external_lex_state = 12}, + [2493] = {.lex_state = 207, .external_lex_state = 12}, + [2494] = {.lex_state = 251, .external_lex_state = 10}, + [2495] = {.lex_state = 251, .external_lex_state = 10}, + [2496] = {.lex_state = 251, .external_lex_state = 10}, + [2497] = {.lex_state = 251, .external_lex_state = 10}, + [2498] = {.lex_state = 251, .external_lex_state = 10}, + [2499] = {.lex_state = 251, .external_lex_state = 10}, + [2500] = {.lex_state = 255}, + [2501] = {.lex_state = 255}, + [2502] = {.lex_state = 269, .external_lex_state = 12}, + [2503] = {.lex_state = 269, .external_lex_state = 12}, + [2504] = {.lex_state = 269, .external_lex_state = 12}, + [2505] = {.lex_state = 269, .external_lex_state = 12}, + [2506] = {.lex_state = 263, .external_lex_state = 23}, + [2507] = {.lex_state = 263, .external_lex_state = 23}, + [2508] = {.lex_state = 112, .external_lex_state = 13}, + [2509] = {.lex_state = 269, .external_lex_state = 12}, + [2510] = {.lex_state = 263, .external_lex_state = 23}, + [2511] = {.lex_state = 263, .external_lex_state = 23}, + [2512] = {.lex_state = 112, .external_lex_state = 13}, + [2513] = {.lex_state = 269, .external_lex_state = 12}, + [2514] = {.lex_state = 263, .external_lex_state = 23}, + [2515] = {.lex_state = 263, .external_lex_state = 23}, + [2516] = {.lex_state = 112, .external_lex_state = 13}, + [2517] = {.lex_state = 269, .external_lex_state = 12}, + [2518] = {.lex_state = 269, .external_lex_state = 12}, + [2519] = {.lex_state = 271, .external_lex_state = 10}, + [2520] = {.lex_state = 271, .external_lex_state = 10}, + [2521] = {.lex_state = 271, .external_lex_state = 10}, + [2522] = {.lex_state = 271, .external_lex_state = 10}, + [2523] = {.lex_state = 263, .external_lex_state = 23}, + [2524] = {.lex_state = 263, .external_lex_state = 23}, + [2525] = {.lex_state = 112, .external_lex_state = 13}, + [2526] = {.lex_state = 271, .external_lex_state = 10}, + [2527] = {.lex_state = 263, .external_lex_state = 23}, + [2528] = {.lex_state = 263, .external_lex_state = 23}, + [2529] = {.lex_state = 112, .external_lex_state = 13}, + [2530] = {.lex_state = 271, .external_lex_state = 10}, + [2531] = {.lex_state = 263, .external_lex_state = 23}, + [2532] = {.lex_state = 263, .external_lex_state = 23}, + [2533] = {.lex_state = 112, .external_lex_state = 13}, + [2534] = {.lex_state = 271, .external_lex_state = 10}, + [2535] = {.lex_state = 271, .external_lex_state = 10}, + [2536] = {.lex_state = 173, .external_lex_state = 17}, + [2537] = {.lex_state = 173, .external_lex_state = 17}, + [2538] = {.lex_state = 173, .external_lex_state = 17}, + [2539] = {.lex_state = 173, .external_lex_state = 17}, + [2540] = {.lex_state = 173, .external_lex_state = 17}, + [2541] = {.lex_state = 173, .external_lex_state = 17}, + [2542] = {.lex_state = 163, .external_lex_state = 10}, + [2543] = {.lex_state = 263, .external_lex_state = 23}, + [2544] = {.lex_state = 263, .external_lex_state = 23}, + [2545] = {.lex_state = 112, .external_lex_state = 13}, + [2546] = {.lex_state = 163, .external_lex_state = 10}, + [2547] = {.lex_state = 263, .external_lex_state = 23}, + [2548] = {.lex_state = 263, .external_lex_state = 23}, + [2549] = {.lex_state = 112, .external_lex_state = 13}, + [2550] = {.lex_state = 234, .external_lex_state = 13}, + [2551] = {.lex_state = 163, .external_lex_state = 10}, + [2552] = {.lex_state = 234, .external_lex_state = 13}, + [2553] = {.lex_state = 163, .external_lex_state = 10}, + [2554] = {.lex_state = 234, .external_lex_state = 13}, + [2555] = {.lex_state = 163, .external_lex_state = 10}, + [2556] = {.lex_state = 263, .external_lex_state = 23}, + [2557] = {.lex_state = 263, .external_lex_state = 23}, + [2558] = {.lex_state = 112, .external_lex_state = 13}, + [2559] = {.lex_state = 178, .external_lex_state = 22}, + [2560] = {.lex_state = 178, .external_lex_state = 22}, + [2561] = {.lex_state = 178, .external_lex_state = 22}, + [2562] = {.lex_state = 178, .external_lex_state = 22}, + [2563] = {.lex_state = 263, .external_lex_state = 23}, + [2564] = {.lex_state = 263, .external_lex_state = 23}, + [2565] = {.lex_state = 112, .external_lex_state = 13}, + [2566] = {.lex_state = 178, .external_lex_state = 22}, + [2567] = {.lex_state = 263, .external_lex_state = 23}, + [2568] = {.lex_state = 263, .external_lex_state = 23}, + [2569] = {.lex_state = 112, .external_lex_state = 13}, + [2570] = {.lex_state = 178, .external_lex_state = 22}, + [2571] = {.lex_state = 263, .external_lex_state = 23}, + [2572] = {.lex_state = 263, .external_lex_state = 23}, + [2573] = {.lex_state = 112, .external_lex_state = 13}, + [2574] = {.lex_state = 178, .external_lex_state = 22}, + [2575] = {.lex_state = 178, .external_lex_state = 22}, + [2576] = {.lex_state = 201, .external_lex_state = 4}, + [2577] = {.lex_state = 201, .external_lex_state = 4}, + [2578] = {.lex_state = 201, .external_lex_state = 4}, + [2579] = {.lex_state = 201, .external_lex_state = 4}, + [2580] = {.lex_state = 201, .external_lex_state = 4}, + [2581] = {.lex_state = 201, .external_lex_state = 4}, + [2582] = {.lex_state = 138, .external_lex_state = 22}, + [2583] = {.lex_state = 138, .external_lex_state = 22}, + [2584] = {.lex_state = 138, .external_lex_state = 22}, + [2585] = {.lex_state = 138, .external_lex_state = 22}, + [2586] = {.lex_state = 138, .external_lex_state = 22}, + [2587] = {.lex_state = 138, .external_lex_state = 22}, + [2588] = {.lex_state = 263, .external_lex_state = 23}, + [2589] = {.lex_state = 263, .external_lex_state = 23}, + [2590] = {.lex_state = 263, .external_lex_state = 23}, + [2591] = {.lex_state = 263, .external_lex_state = 23}, + [2592] = {.lex_state = 263, .external_lex_state = 23}, + [2593] = {.lex_state = 263, .external_lex_state = 23}, + [2594] = {.lex_state = 189, .external_lex_state = 11}, + [2595] = {.lex_state = 189, .external_lex_state = 11}, + [2596] = {.lex_state = 189, .external_lex_state = 11}, + [2597] = {.lex_state = 189, .external_lex_state = 11}, + [2598] = {.lex_state = 189, .external_lex_state = 11}, + [2599] = {.lex_state = 189, .external_lex_state = 11}, + [2600] = {.lex_state = 277, .external_lex_state = 12}, + [2601] = {.lex_state = 263, .external_lex_state = 23}, + [2602] = {.lex_state = 263, .external_lex_state = 23}, + [2603] = {.lex_state = 112, .external_lex_state = 13}, + [2604] = {.lex_state = 277, .external_lex_state = 12}, + [2605] = {.lex_state = 263, .external_lex_state = 23}, + [2606] = {.lex_state = 263, .external_lex_state = 23}, + [2607] = {.lex_state = 112, .external_lex_state = 13}, + [2608] = {.lex_state = 234, .external_lex_state = 13}, + [2609] = {.lex_state = 277, .external_lex_state = 12}, + [2610] = {.lex_state = 234, .external_lex_state = 13}, + [2611] = {.lex_state = 277, .external_lex_state = 12}, + [2612] = {.lex_state = 234, .external_lex_state = 13}, + [2613] = {.lex_state = 277, .external_lex_state = 12}, + [2614] = {.lex_state = 263, .external_lex_state = 23}, + [2615] = {.lex_state = 263, .external_lex_state = 23}, + [2616] = {.lex_state = 112, .external_lex_state = 13}, + [2617] = {.lex_state = 182, .external_lex_state = 24}, + [2618] = {.lex_state = 182, .external_lex_state = 24}, + [2619] = {.lex_state = 182, .external_lex_state = 24}, + [2620] = {.lex_state = 182, .external_lex_state = 24}, + [2621] = {.lex_state = 263, .external_lex_state = 23}, + [2622] = {.lex_state = 263, .external_lex_state = 23}, + [2623] = {.lex_state = 112, .external_lex_state = 13}, + [2624] = {.lex_state = 182, .external_lex_state = 24}, + [2625] = {.lex_state = 263, .external_lex_state = 23}, + [2626] = {.lex_state = 263, .external_lex_state = 23}, + [2627] = {.lex_state = 112, .external_lex_state = 13}, + [2628] = {.lex_state = 182, .external_lex_state = 24}, + [2629] = {.lex_state = 263, .external_lex_state = 23}, + [2630] = {.lex_state = 263, .external_lex_state = 23}, + [2631] = {.lex_state = 112, .external_lex_state = 13}, + [2632] = {.lex_state = 182, .external_lex_state = 24}, + [2633] = {.lex_state = 182, .external_lex_state = 24}, + [2634] = {.lex_state = 240, .external_lex_state = 14}, + [2635] = {.lex_state = 240, .external_lex_state = 14}, + [2636] = {.lex_state = 240, .external_lex_state = 14}, + [2637] = {.lex_state = 240, .external_lex_state = 14}, + [2638] = {.lex_state = 240, .external_lex_state = 14}, + [2639] = {.lex_state = 240, .external_lex_state = 14}, + [2640] = {.lex_state = 197, .external_lex_state = 11}, + [2641] = {.lex_state = 197, .external_lex_state = 11}, + [2642] = {.lex_state = 197, .external_lex_state = 11}, + [2643] = {.lex_state = 197, .external_lex_state = 11}, + [2644] = {.lex_state = 197, .external_lex_state = 11}, + [2645] = {.lex_state = 197, .external_lex_state = 11}, + [2646] = {.lex_state = 279, .external_lex_state = 12}, + [2647] = {.lex_state = 263, .external_lex_state = 23}, + [2648] = {.lex_state = 263, .external_lex_state = 23}, + [2649] = {.lex_state = 112, .external_lex_state = 13}, + [2650] = {.lex_state = 279, .external_lex_state = 12}, + [2651] = {.lex_state = 263, .external_lex_state = 23}, + [2652] = {.lex_state = 263, .external_lex_state = 23}, + [2653] = {.lex_state = 112, .external_lex_state = 13}, + [2654] = {.lex_state = 234, .external_lex_state = 13}, + [2655] = {.lex_state = 279, .external_lex_state = 12}, + [2656] = {.lex_state = 234, .external_lex_state = 13}, + [2657] = {.lex_state = 279, .external_lex_state = 12}, + [2658] = {.lex_state = 234, .external_lex_state = 13}, + [2659] = {.lex_state = 279, .external_lex_state = 12}, + [2660] = {.lex_state = 263, .external_lex_state = 23}, + [2661] = {.lex_state = 263, .external_lex_state = 23}, + [2662] = {.lex_state = 112, .external_lex_state = 13}, + [2663] = {.lex_state = 191, .external_lex_state = 24}, + [2664] = {.lex_state = 191, .external_lex_state = 24}, + [2665] = {.lex_state = 191, .external_lex_state = 24}, + [2666] = {.lex_state = 191, .external_lex_state = 24}, + [2667] = {.lex_state = 263, .external_lex_state = 23}, + [2668] = {.lex_state = 263, .external_lex_state = 23}, + [2669] = {.lex_state = 112, .external_lex_state = 13}, + [2670] = {.lex_state = 191, .external_lex_state = 24}, + [2671] = {.lex_state = 263, .external_lex_state = 23}, + [2672] = {.lex_state = 263, .external_lex_state = 23}, + [2673] = {.lex_state = 112, .external_lex_state = 13}, + [2674] = {.lex_state = 191, .external_lex_state = 24}, + [2675] = {.lex_state = 263, .external_lex_state = 23}, + [2676] = {.lex_state = 263, .external_lex_state = 23}, + [2677] = {.lex_state = 112, .external_lex_state = 13}, + [2678] = {.lex_state = 191, .external_lex_state = 24}, + [2679] = {.lex_state = 191, .external_lex_state = 24}, + [2680] = {.lex_state = 242, .external_lex_state = 14}, + [2681] = {.lex_state = 242, .external_lex_state = 14}, + [2682] = {.lex_state = 242, .external_lex_state = 14}, + [2683] = {.lex_state = 242, .external_lex_state = 14}, + [2684] = {.lex_state = 242, .external_lex_state = 14}, + [2685] = {.lex_state = 242, .external_lex_state = 14}, + [2686] = {.lex_state = 244, .external_lex_state = 20}, + [2687] = {.lex_state = 244, .external_lex_state = 20}, + [2688] = {.lex_state = 244, .external_lex_state = 20}, + [2689] = {.lex_state = 244, .external_lex_state = 20}, + [2690] = {.lex_state = 244, .external_lex_state = 20}, + [2691] = {.lex_state = 244, .external_lex_state = 20}, + [2692] = {.lex_state = 269, .external_lex_state = 12}, + [2693] = {.lex_state = 269, .external_lex_state = 12}, + [2694] = {.lex_state = 269, .external_lex_state = 12}, + [2695] = {.lex_state = 269, .external_lex_state = 12}, + [2696] = {.lex_state = 269, .external_lex_state = 12}, + [2697] = {.lex_state = 269, .external_lex_state = 12}, + [2698] = {.lex_state = 271, .external_lex_state = 10}, + [2699] = {.lex_state = 271, .external_lex_state = 10}, + [2700] = {.lex_state = 271, .external_lex_state = 10}, + [2701] = {.lex_state = 271, .external_lex_state = 10}, + [2702] = {.lex_state = 271, .external_lex_state = 10}, + [2703] = {.lex_state = 271, .external_lex_state = 10}, + [2704] = {.lex_state = 163, .external_lex_state = 10}, + [2705] = {.lex_state = 163, .external_lex_state = 10}, + [2706] = {.lex_state = 163, .external_lex_state = 10}, + [2707] = {.lex_state = 163, .external_lex_state = 10}, + [2708] = {.lex_state = 263, .external_lex_state = 23}, + [2709] = {.lex_state = 263, .external_lex_state = 23}, + [2710] = {.lex_state = 112, .external_lex_state = 13}, + [2711] = {.lex_state = 163, .external_lex_state = 10}, + [2712] = {.lex_state = 263, .external_lex_state = 23}, + [2713] = {.lex_state = 263, .external_lex_state = 23}, + [2714] = {.lex_state = 112, .external_lex_state = 13}, + [2715] = {.lex_state = 163, .external_lex_state = 10}, + [2716] = {.lex_state = 263, .external_lex_state = 23}, + [2717] = {.lex_state = 263, .external_lex_state = 23}, + [2718] = {.lex_state = 112, .external_lex_state = 13}, + [2719] = {.lex_state = 163, .external_lex_state = 10}, + [2720] = {.lex_state = 163, .external_lex_state = 10}, + [2721] = {.lex_state = 178, .external_lex_state = 22}, + [2722] = {.lex_state = 178, .external_lex_state = 22}, + [2723] = {.lex_state = 178, .external_lex_state = 22}, + [2724] = {.lex_state = 178, .external_lex_state = 22}, + [2725] = {.lex_state = 178, .external_lex_state = 22}, + [2726] = {.lex_state = 178, .external_lex_state = 22}, + [2727] = {.lex_state = 277, .external_lex_state = 12}, + [2728] = {.lex_state = 277, .external_lex_state = 12}, + [2729] = {.lex_state = 277, .external_lex_state = 12}, + [2730] = {.lex_state = 277, .external_lex_state = 12}, + [2731] = {.lex_state = 263, .external_lex_state = 23}, + [2732] = {.lex_state = 263, .external_lex_state = 23}, + [2733] = {.lex_state = 112, .external_lex_state = 13}, + [2734] = {.lex_state = 277, .external_lex_state = 12}, + [2735] = {.lex_state = 263, .external_lex_state = 23}, + [2736] = {.lex_state = 263, .external_lex_state = 23}, + [2737] = {.lex_state = 112, .external_lex_state = 13}, + [2738] = {.lex_state = 277, .external_lex_state = 12}, + [2739] = {.lex_state = 263, .external_lex_state = 23}, + [2740] = {.lex_state = 263, .external_lex_state = 23}, + [2741] = {.lex_state = 112, .external_lex_state = 13}, + [2742] = {.lex_state = 277, .external_lex_state = 12}, + [2743] = {.lex_state = 277, .external_lex_state = 12}, + [2744] = {.lex_state = 182, .external_lex_state = 24}, + [2745] = {.lex_state = 182, .external_lex_state = 24}, + [2746] = {.lex_state = 182, .external_lex_state = 24}, + [2747] = {.lex_state = 182, .external_lex_state = 24}, + [2748] = {.lex_state = 182, .external_lex_state = 24}, + [2749] = {.lex_state = 182, .external_lex_state = 24}, + [2750] = {.lex_state = 279, .external_lex_state = 12}, + [2751] = {.lex_state = 279, .external_lex_state = 12}, + [2752] = {.lex_state = 279, .external_lex_state = 12}, + [2753] = {.lex_state = 279, .external_lex_state = 12}, + [2754] = {.lex_state = 263, .external_lex_state = 23}, + [2755] = {.lex_state = 263, .external_lex_state = 23}, + [2756] = {.lex_state = 112, .external_lex_state = 13}, + [2757] = {.lex_state = 279, .external_lex_state = 12}, + [2758] = {.lex_state = 263, .external_lex_state = 23}, + [2759] = {.lex_state = 263, .external_lex_state = 23}, + [2760] = {.lex_state = 112, .external_lex_state = 13}, + [2761] = {.lex_state = 279, .external_lex_state = 12}, + [2762] = {.lex_state = 263, .external_lex_state = 23}, + [2763] = {.lex_state = 263, .external_lex_state = 23}, + [2764] = {.lex_state = 112, .external_lex_state = 13}, + [2765] = {.lex_state = 279, .external_lex_state = 12}, + [2766] = {.lex_state = 279, .external_lex_state = 12}, + [2767] = {.lex_state = 191, .external_lex_state = 24}, + [2768] = {.lex_state = 191, .external_lex_state = 24}, + [2769] = {.lex_state = 191, .external_lex_state = 24}, + [2770] = {.lex_state = 191, .external_lex_state = 24}, + [2771] = {.lex_state = 191, .external_lex_state = 24}, + [2772] = {.lex_state = 191, .external_lex_state = 24}, + [2773] = {.lex_state = 163, .external_lex_state = 10}, + [2774] = {.lex_state = 163, .external_lex_state = 10}, + [2775] = {.lex_state = 163, .external_lex_state = 10}, + [2776] = {.lex_state = 163, .external_lex_state = 10}, + [2777] = {.lex_state = 163, .external_lex_state = 10}, + [2778] = {.lex_state = 163, .external_lex_state = 10}, + [2779] = {.lex_state = 277, .external_lex_state = 12}, + [2780] = {.lex_state = 277, .external_lex_state = 12}, + [2781] = {.lex_state = 277, .external_lex_state = 12}, + [2782] = {.lex_state = 277, .external_lex_state = 12}, + [2783] = {.lex_state = 277, .external_lex_state = 12}, + [2784] = {.lex_state = 277, .external_lex_state = 12}, + [2785] = {.lex_state = 279, .external_lex_state = 12}, + [2786] = {.lex_state = 279, .external_lex_state = 12}, + [2787] = {.lex_state = 279, .external_lex_state = 12}, + [2788] = {.lex_state = 279, .external_lex_state = 12}, + [2789] = {.lex_state = 279, .external_lex_state = 12}, + [2790] = {.lex_state = 279, .external_lex_state = 12}, }; enum { @@ -5551,13 +8059,12 @@ enum { ts_external_token__heredoc_middle, ts_external_token__heredoc_end, ts_external_token_file_descriptor, - ts_external_token_word, ts_external_token__empty_value, ts_external_token__concat, ts_external_token_variable_name, - ts_external_token_LF, - ts_external_token_RBRACK, ts_external_token_RBRACE, + ts_external_token_RBRACK, + ts_external_token_LF, }; static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -5566,174 +8073,117 @@ static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_middle] = sym__heredoc_middle, [ts_external_token__heredoc_end] = sym__heredoc_end, [ts_external_token_file_descriptor] = sym_file_descriptor, - [ts_external_token_word] = sym_word, [ts_external_token__empty_value] = sym__empty_value, [ts_external_token__concat] = sym__concat, [ts_external_token_variable_name] = sym_variable_name, - [ts_external_token_LF] = anon_sym_LF, - [ts_external_token_RBRACK] = anon_sym_RBRACK, [ts_external_token_RBRACE] = anon_sym_RBRACE, + [ts_external_token_RBRACK] = anon_sym_RBRACK, + [ts_external_token_LF] = anon_sym_LF, }; -static bool ts_external_scanner_states[35][EXTERNAL_TOKEN_COUNT] = { +static bool ts_external_scanner_states[25][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__simple_heredoc] = true, [ts_external_token__heredoc_beginning] = true, [ts_external_token__heredoc_middle] = true, [ts_external_token__heredoc_end] = true, [ts_external_token_file_descriptor] = true, - [ts_external_token_word] = true, [ts_external_token__empty_value] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, - [ts_external_token_LF] = true, - [ts_external_token_RBRACK] = true, [ts_external_token_RBRACE] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LF] = true, }, [2] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_word] = true, [ts_external_token_variable_name] = true, }, [3] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_word] = true, - [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, [ts_external_token_LF] = true, }, [4] = { - [ts_external_token_word] = true, - }, - [5] = { - [ts_external_token_word] = true, - [ts_external_token_variable_name] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, [ts_external_token_LF] = true, }, - [6] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_word] = true, + [5] = { [ts_external_token_variable_name] = true, - [ts_external_token_RBRACE] = true, + }, + [6] = { + [ts_external_token_LF] = true, }, [7] = { + [ts_external_token_file_descriptor] = true, [ts_external_token_LF] = true, }, [8] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_word] = true, + [ts_external_token_variable_name] = true, [ts_external_token_LF] = true, }, [9] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_word] = true, - [ts_external_token_variable_name] = true, - [ts_external_token_LF] = true, - }, - [10] = { - [ts_external_token_word] = true, [ts_external_token__empty_value] = true, }, - [11] = { + [10] = { [ts_external_token__concat] = true, [ts_external_token_LF] = true, }, - [12] = { + [11] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_word] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, }, + [12] = { + [ts_external_token__concat] = true, + }, [13] = { [ts_external_token_RBRACE] = true, }, [14] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_word] = true, [ts_external_token__concat] = true, }, [15] = { - [ts_external_token_word] = true, - [ts_external_token_variable_name] = true, + [ts_external_token_file_descriptor] = true, }, [16] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_word] = true, - }, - [17] = { [ts_external_token__simple_heredoc] = true, [ts_external_token__heredoc_beginning] = true, }, - [18] = { + [17] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_LF] = true, - }, - [19] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token_word] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, [ts_external_token_LF] = true, }, - [20] = { + [18] = { [ts_external_token__concat] = true, [ts_external_token_RBRACK] = true, }, + [19] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_RBRACE] = true, + }, + [20] = { + [ts_external_token__heredoc_middle] = true, + [ts_external_token__heredoc_end] = true, + }, [21] = { [ts_external_token_RBRACK] = true, }, [22] = { - [ts_external_token_word] = true, - [ts_external_token_RBRACE] = true, - }, - [23] = { - [ts_external_token_file_descriptor] = true, - }, - [24] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token_LF] = true, - }, - [25] = { - [ts_external_token__heredoc_middle] = true, - [ts_external_token__heredoc_end] = true, - }, - [26] = { - [ts_external_token_word] = true, - [ts_external_token__concat] = true, - }, - [27] = { - [ts_external_token__concat] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_RBRACE] = true, - }, - [28] = { - [ts_external_token_word] = true, - [ts_external_token__concat] = true, - [ts_external_token_LF] = true, - }, - [29] = { - [ts_external_token_word] = true, - [ts_external_token_LF] = true, - }, - [30] = { - [ts_external_token_word] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, [ts_external_token_LF] = true, }, - [31] = { + [23] = { [ts_external_token__concat] = true, [ts_external_token_RBRACE] = true, }, - [32] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - }, - [33] = { - [ts_external_token__concat] = true, - }, - [34] = { - [ts_external_token_word] = true, + [24] = { [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, }, @@ -5746,38 +8196,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_middle] = ACTIONS(1), [sym__heredoc_end] = ACTIONS(1), [sym_file_descriptor] = ACTIONS(1), - [sym_word] = ACTIONS(1), [sym__empty_value] = ACTIONS(1), [sym__concat] = ACTIONS(1), [sym_variable_name] = ACTIONS(1), [ts_builtin_sym_end] = ACTIONS(3), - [anon_sym_for] = ACTIONS(3), - [anon_sym_while] = ACTIONS(3), - [anon_sym_done] = ACTIONS(3), - [anon_sym_if] = ACTIONS(3), - [anon_sym_fi] = ACTIONS(3), - [anon_sym_elif] = ACTIONS(3), - [anon_sym_else] = ACTIONS(3), - [anon_sym_case] = ACTIONS(3), - [anon_sym_esac] = ACTIONS(3), [anon_sym_PIPE] = ACTIONS(3), [anon_sym_RPAREN] = ACTIONS(3), [anon_sym_SEMI_SEMI] = ACTIONS(3), - [anon_sym_function] = ACTIONS(3), [anon_sym_LPAREN] = ACTIONS(3), - [anon_sym_LBRACE] = ACTIONS(3), [anon_sym_RBRACE] = ACTIONS(3), [anon_sym_PIPE_AMP] = ACTIONS(3), [anon_sym_AMP_AMP] = ACTIONS(3), [anon_sym_PIPE_PIPE] = ACTIONS(3), - [anon_sym_declare] = ACTIONS(3), - [anon_sym_typeset] = ACTIONS(3), - [anon_sym_export] = ACTIONS(3), - [anon_sym_readonly] = ACTIONS(3), - [anon_sym_local] = ACTIONS(3), [anon_sym_EQ] = ACTIONS(3), [anon_sym_PLUS_EQ] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(3), [anon_sym_RBRACK] = ACTIONS(3), [anon_sym_LT] = ACTIONS(3), [anon_sym_GT] = ACTIONS(3), @@ -5788,27 +8220,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_AMP] = ACTIONS(3), [anon_sym_LT_LT] = ACTIONS(3), [anon_sym_LT_LT_DASH] = ACTIONS(3), + [anon_sym_LT_LT_LT] = ACTIONS(3), + [sym__special_characters] = ACTIONS(3), [anon_sym_DQUOTE] = ACTIONS(3), [sym_raw_string] = ACTIONS(3), [anon_sym_DOLLAR] = ACTIONS(3), [anon_sym_DOLLAR_LBRACE] = ACTIONS(3), [anon_sym_POUND] = ACTIONS(3), - [anon_sym_AT] = ACTIONS(3), [anon_sym_COLON] = ACTIONS(3), [anon_sym_COLON_QMARK] = ACTIONS(3), [anon_sym_COLON_DASH] = ACTIONS(3), [anon_sym_PERCENT] = ACTIONS(3), [anon_sym_SLASH] = ACTIONS(3), + [anon_sym_DASH] = ACTIONS(3), [anon_sym_DOLLAR_LPAREN] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(3), [anon_sym_LT_LPAREN] = ACTIONS(3), [anon_sym_GT_LPAREN] = ACTIONS(3), [sym_comment] = ACTIONS(5), - [sym_identifier] = ACTIONS(3), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3), [anon_sym_STAR] = ACTIONS(3), + [anon_sym_AT] = ACTIONS(3), [anon_sym_QMARK] = ACTIONS(3), - [anon_sym_DASH] = ACTIONS(3), - [anon_sym_BANG] = ACTIONS(3), [anon_sym_0] = ACTIONS(3), [anon_sym__] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(3), @@ -5816,4118 +8249,3789 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3), }, [1] = { - [sym_program] = STATE(20), - [sym__terminated_statement] = STATE(21), - [sym_for_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_function_definition] = STATE(22), - [sym_subshell] = STATE(22), - [sym_pipeline] = STATE(22), - [sym_list] = STATE(22), - [sym_command] = STATE(22), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(24), - [sym_declaration_command] = STATE(22), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(28), - [aux_sym_command_repeat1] = STATE(29), + [sym_program] = STATE(21), + [sym__terminated_statement] = STATE(22), + [sym_for_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_function_definition] = STATE(23), + [sym_subshell] = STATE(23), + [sym_pipeline] = STATE(23), + [sym_list] = STATE(23), + [sym_command] = STATE(23), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(25), + [sym_declaration_command] = STATE(23), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [ts_builtin_sym_end] = ACTIONS(14), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), + [sym_variable_name] = ACTIONS(10), + [ts_builtin_sym_end] = ACTIONS(12), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), }, [2] = { - [anon_sym_LT] = ACTIONS(50), - [anon_sym_GT] = ACTIONS(50), - [anon_sym_GT_GT] = ACTIONS(52), - [anon_sym_AMP_GT] = ACTIONS(50), - [anon_sym_AMP_GT_GT] = ACTIONS(52), - [anon_sym_LT_AMP] = ACTIONS(52), - [anon_sym_GT_AMP] = ACTIONS(52), - [sym_comment] = ACTIONS(46), + [anon_sym_LT] = ACTIONS(52), + [anon_sym_GT] = ACTIONS(52), + [anon_sym_GT_GT] = ACTIONS(54), + [anon_sym_AMP_GT] = ACTIONS(52), + [anon_sym_AMP_GT_GT] = ACTIONS(54), + [anon_sym_LT_AMP] = ACTIONS(54), + [anon_sym_GT_AMP] = ACTIONS(54), + [sym_comment] = ACTIONS(48), }, [3] = { - [aux_sym_concatenation_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(54), - [sym_word] = ACTIONS(54), - [sym__concat] = ACTIONS(56), - [anon_sym_PIPE] = ACTIONS(58), - [anon_sym_SEMI_SEMI] = ACTIONS(58), - [anon_sym_PIPE_AMP] = ACTIONS(58), - [anon_sym_AMP_AMP] = ACTIONS(58), - [anon_sym_PIPE_PIPE] = ACTIONS(58), - [anon_sym_LT] = ACTIONS(58), - [anon_sym_GT] = ACTIONS(58), - [anon_sym_GT_GT] = ACTIONS(58), - [anon_sym_AMP_GT] = ACTIONS(58), - [anon_sym_AMP_GT_GT] = ACTIONS(58), - [anon_sym_LT_AMP] = ACTIONS(58), - [anon_sym_GT_AMP] = ACTIONS(58), - [anon_sym_LT_LT] = ACTIONS(58), - [anon_sym_LT_LT_DASH] = ACTIONS(58), - [anon_sym_DQUOTE] = ACTIONS(58), - [sym_raw_string] = ACTIONS(58), - [anon_sym_DOLLAR] = ACTIONS(58), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(58), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(58), - [anon_sym_BQUOTE] = ACTIONS(58), - [anon_sym_LT_LPAREN] = ACTIONS(58), - [anon_sym_GT_LPAREN] = ACTIONS(58), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(58), - [anon_sym_SEMI] = ACTIONS(58), - [anon_sym_LF] = ACTIONS(58), - [anon_sym_AMP] = ACTIONS(58), + [sym__assignment] = STATE(34), + [anon_sym_EQ] = ACTIONS(56), + [anon_sym_PLUS_EQ] = ACTIONS(56), + [anon_sym_LBRACK] = ACTIONS(58), + [sym_comment] = ACTIONS(48), }, [4] = { - [sym__assignment] = STATE(35), - [anon_sym_EQ] = ACTIONS(62), - [anon_sym_PLUS_EQ] = ACTIONS(62), - [anon_sym_LBRACK] = ACTIONS(64), - [sym_comment] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(60), }, [5] = { - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(66), + [sym__terminated_statement] = STATE(36), + [sym_for_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_subshell] = STATE(37), + [sym_pipeline] = STATE(37), + [sym_list] = STATE(37), + [sym_command] = STATE(37), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(38), + [sym_declaration_command] = STATE(37), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), }, [6] = { - [sym__terminated_statement] = STATE(37), - [sym_for_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_function_definition] = STATE(38), - [sym_subshell] = STATE(38), - [sym_pipeline] = STATE(38), - [sym_list] = STATE(38), - [sym_command] = STATE(38), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(39), - [sym_declaration_command] = STATE(38), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_command_repeat1] = STATE(29), + [sym__terminated_statement] = STATE(39), + [sym_for_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_subshell] = STATE(37), + [sym_pipeline] = STATE(37), + [sym_list] = STATE(37), + [sym_command] = STATE(37), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(38), + [sym_declaration_command] = STATE(37), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), }, [7] = { - [sym__terminated_statement] = STATE(40), - [sym_for_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_function_definition] = STATE(38), - [sym_subshell] = STATE(38), - [sym_pipeline] = STATE(38), - [sym_list] = STATE(38), - [sym_command] = STATE(38), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(39), - [sym_declaration_command] = STATE(38), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), + [sym_concatenation] = STATE(48), + [sym_string] = STATE(42), + [sym_simple_expansion] = STATE(42), + [sym_expansion] = STATE(42), + [sym_command_substitution] = STATE(42), + [sym_process_substitution] = STATE(42), + [sym__special_characters] = ACTIONS(62), + [anon_sym_DQUOTE] = ACTIONS(64), + [sym_raw_string] = ACTIONS(66), + [anon_sym_DOLLAR] = ACTIONS(68), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(70), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(72), + [anon_sym_BQUOTE] = ACTIONS(74), + [anon_sym_LT_LPAREN] = ACTIONS(76), + [anon_sym_GT_LPAREN] = ACTIONS(76), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(78), }, [8] = { - [sym_concatenation] = STATE(49), - [sym_string] = STATE(41), - [sym_simple_expansion] = STATE(41), - [sym_expansion] = STATE(41), - [sym_command_substitution] = STATE(41), - [sym_process_substitution] = STATE(41), - [sym_word] = ACTIONS(68), - [anon_sym_DQUOTE] = ACTIONS(70), - [sym_raw_string] = ACTIONS(68), - [anon_sym_DOLLAR] = ACTIONS(72), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(74), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(76), - [anon_sym_BQUOTE] = ACTIONS(78), - [anon_sym_LT_LPAREN] = ACTIONS(80), - [anon_sym_GT_LPAREN] = ACTIONS(80), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(82), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(80), }, [9] = { - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(84), + [sym__terminated_statement] = STATE(22), + [sym_for_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_if_statement] = STATE(62), + [sym_case_statement] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_subshell] = STATE(62), + [sym_pipeline] = STATE(62), + [sym_list] = STATE(62), + [sym_command] = STATE(62), + [sym_command_name] = STATE(63), + [sym_variable_assignment] = STATE(64), + [sym_declaration_command] = STATE(62), + [sym_subscript] = STATE(65), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(55), + [sym_simple_expansion] = STATE(55), + [sym_expansion] = STATE(55), + [sym_command_substitution] = STATE(55), + [sym_process_substitution] = STATE(55), + [aux_sym_program_repeat1] = STATE(66), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(82), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(84), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(86), + [anon_sym_typeset] = ACTIONS(86), + [anon_sym_export] = ACTIONS(86), + [anon_sym_readonly] = ACTIONS(86), + [anon_sym_local] = ACTIONS(86), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(88), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(92), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(104), }, [10] = { - [sym__terminated_statement] = STATE(21), - [sym_for_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_subshell] = STATE(56), - [sym_pipeline] = STATE(56), - [sym_list] = STATE(56), - [sym_command] = STATE(56), - [sym_command_name] = STATE(57), - [sym_variable_assignment] = STATE(58), - [sym_declaration_command] = STATE(56), - [sym_subscript] = STATE(59), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(51), - [sym_simple_expansion] = STATE(51), - [sym_expansion] = STATE(51), - [sym_command_substitution] = STATE(51), - [sym_process_substitution] = STATE(51), - [aux_sym_program_repeat1] = STATE(60), - [aux_sym_command_repeat1] = STATE(61), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(86), - [sym_variable_name] = ACTIONS(88), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(90), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(92), - [anon_sym_typeset] = ACTIONS(92), - [anon_sym_export] = ACTIONS(92), - [anon_sym_readonly] = ACTIONS(92), - [anon_sym_local] = ACTIONS(92), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(86), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(94), + [sym_variable_assignment] = STATE(70), + [sym_subscript] = STATE(71), + [aux_sym_declaration_command_repeat1] = STATE(72), + [sym_variable_name] = ACTIONS(106), + [anon_sym_PIPE] = ACTIONS(108), + [anon_sym_SEMI_SEMI] = ACTIONS(108), + [anon_sym_PIPE_AMP] = ACTIONS(108), + [anon_sym_AMP_AMP] = ACTIONS(108), + [anon_sym_PIPE_PIPE] = ACTIONS(108), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(112), + [sym_word] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(108), + [anon_sym_LF] = ACTIONS(108), + [anon_sym_AMP] = ACTIONS(108), }, [11] = { - [sym_variable_assignment] = STATE(62), - [sym_subscript] = STATE(65), - [aux_sym_declaration_command_repeat1] = STATE(66), - [sym_word] = ACTIONS(96), - [sym_variable_name] = ACTIONS(98), - [anon_sym_PIPE] = ACTIONS(100), - [anon_sym_SEMI_SEMI] = ACTIONS(100), - [anon_sym_PIPE_AMP] = ACTIONS(100), - [anon_sym_AMP_AMP] = ACTIONS(100), - [anon_sym_PIPE_PIPE] = ACTIONS(100), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(100), - [anon_sym_LF] = ACTIONS(100), - [anon_sym_AMP] = ACTIONS(100), + [sym_concatenation] = STATE(81), + [sym_string] = STATE(75), + [sym_simple_expansion] = STATE(75), + [sym_expansion] = STATE(75), + [sym_command_substitution] = STATE(75), + [sym_process_substitution] = STATE(75), + [sym__special_characters] = ACTIONS(116), + [anon_sym_DQUOTE] = ACTIONS(118), + [sym_raw_string] = ACTIONS(120), + [anon_sym_DOLLAR] = ACTIONS(122), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(124), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(126), + [anon_sym_BQUOTE] = ACTIONS(128), + [anon_sym_LT_LPAREN] = ACTIONS(130), + [anon_sym_GT_LPAREN] = ACTIONS(130), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(132), }, [12] = { - [sym_concatenation] = STATE(75), - [sym_string] = STATE(67), - [sym_simple_expansion] = STATE(67), - [sym_expansion] = STATE(67), - [sym_command_substitution] = STATE(67), - [sym_process_substitution] = STATE(67), - [sym_word] = ACTIONS(104), - [anon_sym_DQUOTE] = ACTIONS(106), - [sym_raw_string] = ACTIONS(104), - [anon_sym_DOLLAR] = ACTIONS(108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(110), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(112), - [anon_sym_BQUOTE] = ACTIONS(114), - [anon_sym_LT_LPAREN] = ACTIONS(116), - [anon_sym_GT_LPAREN] = ACTIONS(116), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(118), + [aux_sym_concatenation_repeat1] = STATE(83), + [sym_file_descriptor] = ACTIONS(134), + [sym__concat] = ACTIONS(136), + [anon_sym_PIPE] = ACTIONS(138), + [anon_sym_SEMI_SEMI] = ACTIONS(138), + [anon_sym_PIPE_AMP] = ACTIONS(138), + [anon_sym_AMP_AMP] = ACTIONS(138), + [anon_sym_PIPE_PIPE] = ACTIONS(138), + [anon_sym_LT] = ACTIONS(138), + [anon_sym_GT] = ACTIONS(138), + [anon_sym_GT_GT] = ACTIONS(138), + [anon_sym_AMP_GT] = ACTIONS(138), + [anon_sym_AMP_GT_GT] = ACTIONS(138), + [anon_sym_LT_AMP] = ACTIONS(138), + [anon_sym_GT_AMP] = ACTIONS(138), + [anon_sym_LT_LT] = ACTIONS(138), + [anon_sym_LT_LT_DASH] = ACTIONS(138), + [anon_sym_LT_LT_LT] = ACTIONS(138), + [sym__special_characters] = ACTIONS(138), + [anon_sym_DQUOTE] = ACTIONS(138), + [sym_raw_string] = ACTIONS(138), + [anon_sym_DOLLAR] = ACTIONS(138), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(138), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(138), + [anon_sym_LT_LPAREN] = ACTIONS(138), + [anon_sym_GT_LPAREN] = ACTIONS(138), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(138), + [anon_sym_SEMI] = ACTIONS(138), + [anon_sym_LF] = ACTIONS(138), + [anon_sym_AMP] = ACTIONS(138), }, [13] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(82), - [anon_sym_DQUOTE] = ACTIONS(120), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(90), + [anon_sym_DQUOTE] = ACTIONS(140), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), }, [14] = { - [sym_special_variable_name] = STATE(85), - [anon_sym_DOLLAR] = ACTIONS(132), - [anon_sym_POUND] = ACTIONS(132), - [anon_sym_AT] = ACTIONS(132), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(134), - [anon_sym_STAR] = ACTIONS(132), - [anon_sym_QMARK] = ACTIONS(132), - [anon_sym_DASH] = ACTIONS(132), - [anon_sym_BANG] = ACTIONS(132), - [anon_sym_0] = ACTIONS(136), - [anon_sym__] = ACTIONS(136), + [aux_sym_concatenation_repeat1] = STATE(83), + [sym_file_descriptor] = ACTIONS(152), + [sym__concat] = ACTIONS(136), + [anon_sym_PIPE] = ACTIONS(154), + [anon_sym_SEMI_SEMI] = ACTIONS(154), + [anon_sym_PIPE_AMP] = ACTIONS(154), + [anon_sym_AMP_AMP] = ACTIONS(154), + [anon_sym_PIPE_PIPE] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(154), + [anon_sym_GT_GT] = ACTIONS(154), + [anon_sym_AMP_GT] = ACTIONS(154), + [anon_sym_AMP_GT_GT] = ACTIONS(154), + [anon_sym_LT_AMP] = ACTIONS(154), + [anon_sym_GT_AMP] = ACTIONS(154), + [anon_sym_LT_LT] = ACTIONS(154), + [anon_sym_LT_LT_DASH] = ACTIONS(154), + [anon_sym_LT_LT_LT] = ACTIONS(154), + [sym__special_characters] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(154), + [sym_raw_string] = ACTIONS(154), + [anon_sym_DOLLAR] = ACTIONS(154), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(154), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_LT_LPAREN] = ACTIONS(154), + [anon_sym_GT_LPAREN] = ACTIONS(154), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LF] = ACTIONS(154), + [anon_sym_AMP] = ACTIONS(154), }, [15] = { - [sym_special_variable_name] = STATE(89), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(140), - [anon_sym_AT] = ACTIONS(138), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(142), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), + [anon_sym_DOLLAR] = ACTIONS(156), + [anon_sym_DASH] = ACTIONS(156), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(158), + [anon_sym_STAR] = ACTIONS(156), + [anon_sym_AT] = ACTIONS(156), + [anon_sym_QMARK] = ACTIONS(156), + [anon_sym_0] = ACTIONS(160), + [anon_sym__] = ACTIONS(160), }, [16] = { - [sym_for_statement] = STATE(106), - [sym_while_statement] = STATE(106), - [sym_if_statement] = STATE(106), - [sym_case_statement] = STATE(106), - [sym_function_definition] = STATE(106), - [sym_subshell] = STATE(106), - [sym_pipeline] = STATE(106), - [sym_list] = STATE(106), - [sym_command] = STATE(106), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(108), - [sym_declaration_command] = STATE(106), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), + [sym_subscript] = STATE(97), + [sym_variable_name] = ACTIONS(162), + [anon_sym_DOLLAR] = ACTIONS(164), + [anon_sym_POUND] = ACTIONS(166), + [anon_sym_DASH] = ACTIONS(164), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(168), + [anon_sym_STAR] = ACTIONS(164), + [anon_sym_AT] = ACTIONS(164), + [anon_sym_QMARK] = ACTIONS(164), + [anon_sym_0] = ACTIONS(170), + [anon_sym__] = ACTIONS(170), }, [17] = { - [sym_for_statement] = STATE(117), - [sym_while_statement] = STATE(117), - [sym_if_statement] = STATE(117), - [sym_case_statement] = STATE(117), - [sym_function_definition] = STATE(117), - [sym_subshell] = STATE(117), - [sym_pipeline] = STATE(117), - [sym_list] = STATE(117), - [sym_command] = STATE(117), - [sym_command_name] = STATE(118), - [sym_variable_assignment] = STATE(119), - [sym_declaration_command] = STATE(117), - [sym_subscript] = STATE(120), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_command_repeat1] = STATE(121), + [sym_for_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_case_statement] = STATE(115), + [sym_function_definition] = STATE(115), + [sym_subshell] = STATE(115), + [sym_pipeline] = STATE(115), + [sym_list] = STATE(115), + [sym_command] = STATE(115), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(117), + [sym_declaration_command] = STATE(115), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(178), - [sym_variable_name] = ACTIONS(180), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), [anon_sym_function] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(184), - [anon_sym_typeset] = ACTIONS(184), - [anon_sym_export] = ACTIONS(184), - [anon_sym_readonly] = ACTIONS(184), - [anon_sym_local] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(178), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, [18] = { - [sym_for_statement] = STATE(122), - [sym_while_statement] = STATE(122), - [sym_if_statement] = STATE(122), - [sym_case_statement] = STATE(122), - [sym_function_definition] = STATE(122), - [sym_subshell] = STATE(122), - [sym_pipeline] = STATE(122), - [sym_list] = STATE(122), - [sym_command] = STATE(122), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(123), - [sym_declaration_command] = STATE(122), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), + [sym_for_statement] = STATE(133), + [sym_while_statement] = STATE(133), + [sym_if_statement] = STATE(133), + [sym_case_statement] = STATE(133), + [sym_function_definition] = STATE(133), + [sym_subshell] = STATE(133), + [sym_pipeline] = STATE(133), + [sym_list] = STATE(133), + [sym_command] = STATE(133), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(135), + [sym_declaration_command] = STATE(133), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), }, [19] = { - [aux_sym_concatenation_repeat1] = STATE(125), - [sym_file_descriptor] = ACTIONS(188), - [sym_word] = ACTIONS(188), - [sym__concat] = ACTIONS(56), - [anon_sym_PIPE] = ACTIONS(190), - [anon_sym_SEMI_SEMI] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(192), - [anon_sym_PIPE_AMP] = ACTIONS(190), - [anon_sym_AMP_AMP] = ACTIONS(190), - [anon_sym_PIPE_PIPE] = ACTIONS(190), - [anon_sym_LT] = ACTIONS(190), - [anon_sym_GT] = ACTIONS(190), - [anon_sym_GT_GT] = ACTIONS(190), - [anon_sym_AMP_GT] = ACTIONS(190), - [anon_sym_AMP_GT_GT] = ACTIONS(190), - [anon_sym_LT_AMP] = ACTIONS(190), - [anon_sym_GT_AMP] = ACTIONS(190), - [anon_sym_LT_LT] = ACTIONS(190), - [anon_sym_LT_LT_DASH] = ACTIONS(190), + [sym_for_statement] = STATE(138), + [sym_while_statement] = STATE(138), + [sym_if_statement] = STATE(138), + [sym_case_statement] = STATE(138), + [sym_function_definition] = STATE(138), + [sym_subshell] = STATE(138), + [sym_pipeline] = STATE(138), + [sym_list] = STATE(138), + [sym_command] = STATE(138), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(139), + [sym_declaration_command] = STATE(138), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), [anon_sym_DQUOTE] = ACTIONS(190), - [sym_raw_string] = ACTIONS(190), - [anon_sym_DOLLAR] = ACTIONS(190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(190), - [anon_sym_LT_LPAREN] = ACTIONS(190), - [anon_sym_GT_LPAREN] = ACTIONS(190), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(190), - [anon_sym_SEMI] = ACTIONS(190), - [anon_sym_LF] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, [20] = { - [ts_builtin_sym_end] = ACTIONS(194), - [sym_comment] = ACTIONS(46), + [aux_sym_concatenation_repeat1] = STATE(83), + [sym_file_descriptor] = ACTIONS(152), + [sym__concat] = ACTIONS(136), + [anon_sym_PIPE] = ACTIONS(154), + [anon_sym_SEMI_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(230), + [anon_sym_PIPE_AMP] = ACTIONS(154), + [anon_sym_AMP_AMP] = ACTIONS(154), + [anon_sym_PIPE_PIPE] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(154), + [anon_sym_GT_GT] = ACTIONS(154), + [anon_sym_AMP_GT] = ACTIONS(154), + [anon_sym_AMP_GT_GT] = ACTIONS(154), + [anon_sym_LT_AMP] = ACTIONS(154), + [anon_sym_GT_AMP] = ACTIONS(154), + [anon_sym_LT_LT] = ACTIONS(154), + [anon_sym_LT_LT_DASH] = ACTIONS(154), + [anon_sym_LT_LT_LT] = ACTIONS(154), + [sym__special_characters] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(154), + [sym_raw_string] = ACTIONS(154), + [anon_sym_DOLLAR] = ACTIONS(154), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(154), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_LT_LPAREN] = ACTIONS(154), + [anon_sym_GT_LPAREN] = ACTIONS(154), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LF] = ACTIONS(154), + [anon_sym_AMP] = ACTIONS(154), }, [21] = { - [sym_file_descriptor] = ACTIONS(196), - [sym_word] = ACTIONS(196), - [sym_variable_name] = ACTIONS(196), - [ts_builtin_sym_end] = ACTIONS(196), - [anon_sym_for] = ACTIONS(198), - [anon_sym_while] = ACTIONS(198), - [anon_sym_if] = ACTIONS(198), - [anon_sym_case] = ACTIONS(198), - [anon_sym_function] = ACTIONS(198), - [anon_sym_LPAREN] = ACTIONS(196), - [anon_sym_RBRACE] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(198), - [anon_sym_typeset] = ACTIONS(198), - [anon_sym_export] = ACTIONS(198), - [anon_sym_readonly] = ACTIONS(198), - [anon_sym_local] = ACTIONS(198), - [anon_sym_LT] = ACTIONS(198), - [anon_sym_GT] = ACTIONS(198), - [anon_sym_GT_GT] = ACTIONS(196), - [anon_sym_AMP_GT] = ACTIONS(198), - [anon_sym_AMP_GT_GT] = ACTIONS(196), - [anon_sym_LT_AMP] = ACTIONS(196), - [anon_sym_GT_AMP] = ACTIONS(196), - [anon_sym_DQUOTE] = ACTIONS(196), - [sym_raw_string] = ACTIONS(196), - [anon_sym_DOLLAR] = ACTIONS(198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(196), - [anon_sym_BQUOTE] = ACTIONS(196), - [anon_sym_LT_LPAREN] = ACTIONS(196), - [anon_sym_GT_LPAREN] = ACTIONS(196), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(200), + [ts_builtin_sym_end] = ACTIONS(232), + [sym_comment] = ACTIONS(48), }, [22] = { - [anon_sym_PIPE] = ACTIONS(202), - [anon_sym_SEMI_SEMI] = ACTIONS(204), - [anon_sym_PIPE_AMP] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(206), - [anon_sym_PIPE_PIPE] = ACTIONS(206), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(204), - [anon_sym_LF] = ACTIONS(204), - [anon_sym_AMP] = ACTIONS(204), - }, - [23] = { - [sym_file_redirect] = STATE(134), - [sym_heredoc_redirect] = STATE(134), - [sym_concatenation] = STATE(135), - [sym_string] = STATE(130), - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [sym_process_substitution] = STATE(130), - [aux_sym_for_statement_repeat1] = STATE(136), - [aux_sym_command_repeat2] = STATE(137), - [sym_file_descriptor] = ACTIONS(208), - [sym_word] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(212), - [anon_sym_SEMI_SEMI] = ACTIONS(212), - [anon_sym_PIPE_AMP] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [anon_sym_GT_GT] = ACTIONS(214), - [anon_sym_AMP_GT] = ACTIONS(214), - [anon_sym_AMP_GT_GT] = ACTIONS(214), - [anon_sym_LT_AMP] = ACTIONS(214), - [anon_sym_GT_AMP] = ACTIONS(214), - [anon_sym_LT_LT] = ACTIONS(216), - [anon_sym_LT_LT_DASH] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(218), - [sym_raw_string] = ACTIONS(220), - [anon_sym_DOLLAR] = ACTIONS(222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(226), - [anon_sym_BQUOTE] = ACTIONS(228), - [anon_sym_LT_LPAREN] = ACTIONS(230), - [anon_sym_GT_LPAREN] = ACTIONS(230), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(232), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_LF] = ACTIONS(212), - [anon_sym_AMP] = ACTIONS(212), - }, - [24] = { [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(202), - [anon_sym_SEMI_SEMI] = ACTIONS(204), - [anon_sym_PIPE_AMP] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(206), - [anon_sym_PIPE_PIPE] = ACTIONS(206), + [ts_builtin_sym_end] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), + [anon_sym_while] = ACTIONS(236), + [anon_sym_if] = ACTIONS(236), + [anon_sym_case] = ACTIONS(236), + [anon_sym_SEMI_SEMI] = ACTIONS(234), + [anon_sym_function] = ACTIONS(236), + [anon_sym_LPAREN] = ACTIONS(234), + [anon_sym_declare] = ACTIONS(236), + [anon_sym_typeset] = ACTIONS(236), + [anon_sym_export] = ACTIONS(236), + [anon_sym_readonly] = ACTIONS(236), + [anon_sym_local] = ACTIONS(236), [anon_sym_LT] = ACTIONS(236), [anon_sym_GT] = ACTIONS(236), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(236), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(236), - [anon_sym_SEMI] = ACTIONS(204), - [anon_sym_LF] = ACTIONS(204), - [anon_sym_AMP] = ACTIONS(204), - }, - [25] = { - [sym__assignment] = STATE(35), - [anon_sym_EQ] = ACTIONS(62), - [anon_sym_PLUS_EQ] = ACTIONS(62), - [sym_comment] = ACTIONS(46), - }, - [26] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), + [anon_sym_AMP_GT] = ACTIONS(236), [anon_sym_AMP_GT_GT] = ACTIONS(234), [anon_sym_LT_AMP] = ACTIONS(234), [anon_sym_GT_AMP] = ACTIONS(234), + [sym__special_characters] = ACTIONS(236), [anon_sym_DQUOTE] = ACTIONS(234), [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), + [anon_sym_DOLLAR] = ACTIONS(236), [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), [anon_sym_BQUOTE] = ACTIONS(234), [anon_sym_LT_LPAREN] = ACTIONS(234), [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(238), }, - [27] = { - [sym_file_descriptor] = ACTIONS(54), - [sym_word] = ACTIONS(54), - [anon_sym_PIPE] = ACTIONS(58), - [anon_sym_RPAREN] = ACTIONS(58), - [anon_sym_SEMI_SEMI] = ACTIONS(58), - [anon_sym_PIPE_AMP] = ACTIONS(58), - [anon_sym_AMP_AMP] = ACTIONS(58), - [anon_sym_PIPE_PIPE] = ACTIONS(58), - [anon_sym_LT] = ACTIONS(58), - [anon_sym_GT] = ACTIONS(58), - [anon_sym_GT_GT] = ACTIONS(58), - [anon_sym_AMP_GT] = ACTIONS(58), - [anon_sym_AMP_GT_GT] = ACTIONS(58), - [anon_sym_LT_AMP] = ACTIONS(58), - [anon_sym_GT_AMP] = ACTIONS(58), - [anon_sym_LT_LT] = ACTIONS(58), - [anon_sym_LT_LT_DASH] = ACTIONS(58), - [anon_sym_DQUOTE] = ACTIONS(58), - [sym_raw_string] = ACTIONS(58), - [anon_sym_DOLLAR] = ACTIONS(58), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(58), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(58), - [anon_sym_BQUOTE] = ACTIONS(58), - [anon_sym_LT_LPAREN] = ACTIONS(58), - [anon_sym_GT_LPAREN] = ACTIONS(58), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(58), - [anon_sym_SEMI] = ACTIONS(58), - [anon_sym_LF] = ACTIONS(58), - [anon_sym_AMP] = ACTIONS(58), + [23] = { + [anon_sym_PIPE] = ACTIONS(240), + [anon_sym_SEMI_SEMI] = ACTIONS(242), + [anon_sym_PIPE_AMP] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(244), + [anon_sym_PIPE_PIPE] = ACTIONS(244), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(242), + [anon_sym_LF] = ACTIONS(242), + [anon_sym_AMP] = ACTIONS(242), }, - [28] = { - [sym__terminated_statement] = STATE(21), - [sym_for_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_function_definition] = STATE(22), - [sym_subshell] = STATE(22), - [sym_pipeline] = STATE(22), - [sym_list] = STATE(22), - [sym_command] = STATE(22), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(24), - [sym_declaration_command] = STATE(22), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(138), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [ts_builtin_sym_end] = ACTIONS(240), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), - }, - [29] = { - [sym_command_name] = STATE(141), - [sym_variable_assignment] = STATE(26), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_command_repeat1] = STATE(143), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(242), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(244), - }, - [30] = { - [sym_concatenation] = STATE(146), - [sym_string] = STATE(144), - [sym_simple_expansion] = STATE(144), - [sym_expansion] = STATE(144), - [sym_command_substitution] = STATE(144), - [sym_process_substitution] = STATE(144), - [sym_word] = ACTIONS(246), - [anon_sym_DQUOTE] = ACTIONS(106), - [sym_raw_string] = ACTIONS(246), - [anon_sym_DOLLAR] = ACTIONS(108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(110), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(112), - [anon_sym_BQUOTE] = ACTIONS(114), - [anon_sym_LT_LPAREN] = ACTIONS(116), - [anon_sym_GT_LPAREN] = ACTIONS(116), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(248), - }, - [31] = { - [sym_string] = STATE(147), - [sym_simple_expansion] = STATE(147), - [sym_expansion] = STATE(147), - [sym_command_substitution] = STATE(147), - [sym_process_substitution] = STATE(147), - [sym_word] = ACTIONS(250), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(250), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(252), - }, - [32] = { - [aux_sym_concatenation_repeat1] = STATE(149), - [sym_file_descriptor] = ACTIONS(254), - [sym_word] = ACTIONS(254), - [sym__concat] = ACTIONS(56), - [anon_sym_PIPE] = ACTIONS(256), - [anon_sym_SEMI_SEMI] = ACTIONS(256), - [anon_sym_PIPE_AMP] = ACTIONS(256), - [anon_sym_AMP_AMP] = ACTIONS(256), - [anon_sym_PIPE_PIPE] = ACTIONS(256), - [anon_sym_LT] = ACTIONS(256), - [anon_sym_GT] = ACTIONS(256), - [anon_sym_GT_GT] = ACTIONS(256), - [anon_sym_AMP_GT] = ACTIONS(256), - [anon_sym_AMP_GT_GT] = ACTIONS(256), - [anon_sym_LT_AMP] = ACTIONS(256), - [anon_sym_GT_AMP] = ACTIONS(256), - [anon_sym_LT_LT] = ACTIONS(256), - [anon_sym_LT_LT_DASH] = ACTIONS(256), - [anon_sym_DQUOTE] = ACTIONS(256), - [sym_raw_string] = ACTIONS(256), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(256), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(256), - [anon_sym_BQUOTE] = ACTIONS(256), - [anon_sym_LT_LPAREN] = ACTIONS(256), - [anon_sym_GT_LPAREN] = ACTIONS(256), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(256), - [anon_sym_SEMI] = ACTIONS(256), - [anon_sym_LF] = ACTIONS(256), - [anon_sym_AMP] = ACTIONS(256), - }, - [33] = { + [24] = { + [sym_file_redirect] = STATE(150), + [sym_heredoc_redirect] = STATE(150), + [sym_herestring_redirect] = STATE(150), [sym_concatenation] = STATE(151), - [sym_string] = STATE(150), - [sym_array] = STATE(151), - [sym_simple_expansion] = STATE(150), - [sym_expansion] = STATE(150), - [sym_command_substitution] = STATE(150), - [sym_process_substitution] = STATE(150), - [sym_word] = ACTIONS(258), - [sym__empty_value] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(262), - [anon_sym_DQUOTE] = ACTIONS(264), - [sym_raw_string] = ACTIONS(258), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(270), - [anon_sym_BQUOTE] = ACTIONS(272), + [sym_string] = STATE(149), + [sym_simple_expansion] = STATE(149), + [sym_expansion] = STATE(149), + [sym_command_substitution] = STATE(149), + [sym_process_substitution] = STATE(149), + [aux_sym_for_statement_repeat1] = STATE(152), + [aux_sym_command_repeat2] = STATE(153), + [sym_file_descriptor] = ACTIONS(246), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_SEMI_SEMI] = ACTIONS(248), + [anon_sym_PIPE_AMP] = ACTIONS(248), + [anon_sym_AMP_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(248), + [anon_sym_LT] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(250), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_AMP_GT] = ACTIONS(250), + [anon_sym_AMP_GT_GT] = ACTIONS(250), + [anon_sym_LT_AMP] = ACTIONS(250), + [anon_sym_GT_AMP] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(254), + [sym__special_characters] = ACTIONS(256), + [anon_sym_DQUOTE] = ACTIONS(258), + [sym_raw_string] = ACTIONS(260), + [anon_sym_DOLLAR] = ACTIONS(262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(264), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), + [anon_sym_BQUOTE] = ACTIONS(268), + [anon_sym_LT_LPAREN] = ACTIONS(270), + [anon_sym_GT_LPAREN] = ACTIONS(270), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(248), + [anon_sym_LF] = ACTIONS(248), + [anon_sym_AMP] = ACTIONS(248), + }, + [25] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(240), + [anon_sym_SEMI_SEMI] = ACTIONS(242), + [anon_sym_PIPE_AMP] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(244), + [anon_sym_PIPE_PIPE] = ACTIONS(244), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_AMP_GT] = ACTIONS(274), + [anon_sym_AMP_GT_GT] = ACTIONS(274), + [anon_sym_LT_AMP] = ACTIONS(274), + [anon_sym_GT_AMP] = ACTIONS(274), + [sym__special_characters] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(274), + [sym_raw_string] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(274), + [anon_sym_BQUOTE] = ACTIONS(274), [anon_sym_LT_LPAREN] = ACTIONS(274), [anon_sym_GT_LPAREN] = ACTIONS(274), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(276), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(242), + [anon_sym_LF] = ACTIONS(242), + [anon_sym_AMP] = ACTIONS(242), }, - [34] = { - [sym_concatenation] = STATE(168), + [26] = { + [sym__assignment] = STATE(34), + [anon_sym_EQ] = ACTIONS(56), + [anon_sym_PLUS_EQ] = ACTIONS(56), + [sym_comment] = ACTIONS(48), + }, + [27] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(276), + }, + [28] = { + [sym_file_descriptor] = ACTIONS(152), + [anon_sym_PIPE] = ACTIONS(154), + [anon_sym_RPAREN] = ACTIONS(154), + [anon_sym_SEMI_SEMI] = ACTIONS(154), + [anon_sym_PIPE_AMP] = ACTIONS(154), + [anon_sym_AMP_AMP] = ACTIONS(154), + [anon_sym_PIPE_PIPE] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(154), + [anon_sym_GT_GT] = ACTIONS(154), + [anon_sym_AMP_GT] = ACTIONS(154), + [anon_sym_AMP_GT_GT] = ACTIONS(154), + [anon_sym_LT_AMP] = ACTIONS(154), + [anon_sym_GT_AMP] = ACTIONS(154), + [anon_sym_LT_LT] = ACTIONS(154), + [anon_sym_LT_LT_DASH] = ACTIONS(154), + [anon_sym_LT_LT_LT] = ACTIONS(154), + [sym__special_characters] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(154), + [sym_raw_string] = ACTIONS(154), + [anon_sym_DOLLAR] = ACTIONS(154), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(154), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_LT_LPAREN] = ACTIONS(154), + [anon_sym_GT_LPAREN] = ACTIONS(154), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LF] = ACTIONS(154), + [anon_sym_AMP] = ACTIONS(154), + }, + [29] = { + [sym__terminated_statement] = STATE(22), + [sym_for_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_function_definition] = STATE(23), + [sym_subshell] = STATE(23), + [sym_pipeline] = STATE(23), + [sym_list] = STATE(23), + [sym_command] = STATE(23), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(25), + [sym_declaration_command] = STATE(23), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(154), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [ts_builtin_sym_end] = ACTIONS(278), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), + }, + [30] = { + [sym_command_name] = STATE(156), + [sym_variable_assignment] = STATE(27), + [sym_subscript] = STATE(157), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(280), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(282), + }, + [31] = { + [sym_concatenation] = STATE(161), [sym_string] = STATE(160), [sym_simple_expansion] = STATE(160), [sym_expansion] = STATE(160), [sym_command_substitution] = STATE(160), [sym_process_substitution] = STATE(160), - [sym_word] = ACTIONS(278), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(278), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(292), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(118), + [sym_raw_string] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(122), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(124), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(126), + [anon_sym_BQUOTE] = ACTIONS(128), + [anon_sym_LT_LPAREN] = ACTIONS(130), + [anon_sym_GT_LPAREN] = ACTIONS(130), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(288), + }, + [32] = { + [sym_concatenation] = STATE(162), + [sym_string] = STATE(166), + [sym_array] = STATE(162), + [sym_simple_expansion] = STATE(166), + [sym_expansion] = STATE(166), + [sym_command_substitution] = STATE(166), + [sym_process_substitution] = STATE(166), + [sym__empty_value] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(292), + [sym__special_characters] = ACTIONS(294), + [anon_sym_DQUOTE] = ACTIONS(296), + [sym_raw_string] = ACTIONS(298), + [anon_sym_DOLLAR] = ACTIONS(300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(302), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(304), + [anon_sym_BQUOTE] = ACTIONS(306), + [anon_sym_LT_LPAREN] = ACTIONS(308), + [anon_sym_GT_LPAREN] = ACTIONS(308), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(310), + }, + [33] = { + [sym_concatenation] = STATE(180), + [sym_string] = STATE(174), + [sym_simple_expansion] = STATE(174), + [sym_expansion] = STATE(174), + [sym_command_substitution] = STATE(174), + [sym_process_substitution] = STATE(174), + [sym__special_characters] = ACTIONS(312), + [anon_sym_DQUOTE] = ACTIONS(314), + [sym_raw_string] = ACTIONS(316), + [anon_sym_DOLLAR] = ACTIONS(318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(320), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_LT_LPAREN] = ACTIONS(326), + [anon_sym_GT_LPAREN] = ACTIONS(326), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(328), + }, + [34] = { + [sym_file_descriptor] = ACTIONS(330), + [sym_variable_name] = ACTIONS(330), + [anon_sym_PIPE] = ACTIONS(332), + [anon_sym_RPAREN] = ACTIONS(332), + [anon_sym_SEMI_SEMI] = ACTIONS(332), + [anon_sym_PIPE_AMP] = ACTIONS(332), + [anon_sym_AMP_AMP] = ACTIONS(332), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [anon_sym_LT] = ACTIONS(332), + [anon_sym_GT] = ACTIONS(332), + [anon_sym_GT_GT] = ACTIONS(332), + [anon_sym_AMP_GT] = ACTIONS(332), + [anon_sym_AMP_GT_GT] = ACTIONS(332), + [anon_sym_LT_AMP] = ACTIONS(332), + [anon_sym_GT_AMP] = ACTIONS(332), + [sym__special_characters] = ACTIONS(332), + [anon_sym_DQUOTE] = ACTIONS(332), + [sym_raw_string] = ACTIONS(332), + [anon_sym_DOLLAR] = ACTIONS(332), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(332), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(332), + [anon_sym_BQUOTE] = ACTIONS(332), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(332), + [anon_sym_SEMI] = ACTIONS(332), + [anon_sym_LF] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(332), }, [35] = { - [sym_file_descriptor] = ACTIONS(294), - [sym_word] = ACTIONS(294), - [sym_variable_name] = ACTIONS(294), - [anon_sym_PIPE] = ACTIONS(296), - [anon_sym_RPAREN] = ACTIONS(296), - [anon_sym_SEMI_SEMI] = ACTIONS(296), - [anon_sym_PIPE_AMP] = ACTIONS(296), - [anon_sym_AMP_AMP] = ACTIONS(296), - [anon_sym_PIPE_PIPE] = ACTIONS(296), - [anon_sym_LT] = ACTIONS(296), - [anon_sym_GT] = ACTIONS(296), - [anon_sym_GT_GT] = ACTIONS(296), - [anon_sym_AMP_GT] = ACTIONS(296), - [anon_sym_AMP_GT_GT] = ACTIONS(296), - [anon_sym_LT_AMP] = ACTIONS(296), - [anon_sym_GT_AMP] = ACTIONS(296), - [anon_sym_DQUOTE] = ACTIONS(296), - [sym_raw_string] = ACTIONS(296), - [anon_sym_DOLLAR] = ACTIONS(296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(296), - [anon_sym_LT_LPAREN] = ACTIONS(296), - [anon_sym_GT_LPAREN] = ACTIONS(296), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(296), - [anon_sym_LF] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), + [anon_sym_in] = ACTIONS(334), + [sym_comment] = ACTIONS(48), }, [36] = { - [anon_sym_in] = ACTIONS(298), - [sym_comment] = ACTIONS(46), + [sym_do_group] = STATE(183), + [anon_sym_do] = ACTIONS(336), + [sym_comment] = ACTIONS(48), }, [37] = { - [sym_do_group] = STATE(171), - [anon_sym_do] = ACTIONS(300), - [sym_comment] = ACTIONS(46), + [anon_sym_PIPE] = ACTIONS(240), + [anon_sym_SEMI_SEMI] = ACTIONS(338), + [anon_sym_PIPE_AMP] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(244), + [anon_sym_PIPE_PIPE] = ACTIONS(244), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(338), + [anon_sym_LF] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(338), }, [38] = { - [anon_sym_PIPE] = ACTIONS(202), - [anon_sym_SEMI_SEMI] = ACTIONS(302), - [anon_sym_PIPE_AMP] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(206), - [anon_sym_PIPE_PIPE] = ACTIONS(206), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(302), - [anon_sym_LF] = ACTIONS(302), - [anon_sym_AMP] = ACTIONS(302), + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(240), + [anon_sym_SEMI_SEMI] = ACTIONS(338), + [anon_sym_PIPE_AMP] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(244), + [anon_sym_PIPE_PIPE] = ACTIONS(244), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_AMP_GT] = ACTIONS(274), + [anon_sym_AMP_GT_GT] = ACTIONS(274), + [anon_sym_LT_AMP] = ACTIONS(274), + [anon_sym_GT_AMP] = ACTIONS(274), + [sym__special_characters] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(274), + [sym_raw_string] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(274), + [anon_sym_BQUOTE] = ACTIONS(274), + [anon_sym_LT_LPAREN] = ACTIONS(274), + [anon_sym_GT_LPAREN] = ACTIONS(274), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(338), + [anon_sym_LF] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(338), }, [39] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(202), - [anon_sym_SEMI_SEMI] = ACTIONS(302), - [anon_sym_PIPE_AMP] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(206), - [anon_sym_PIPE_PIPE] = ACTIONS(206), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(236), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(236), - [anon_sym_SEMI] = ACTIONS(302), - [anon_sym_LF] = ACTIONS(302), - [anon_sym_AMP] = ACTIONS(302), + [anon_sym_then] = ACTIONS(340), + [sym_comment] = ACTIONS(48), }, [40] = { - [anon_sym_then] = ACTIONS(304), - [sym_comment] = ACTIONS(46), + [aux_sym_concatenation_repeat1] = STATE(189), + [sym__concat] = ACTIONS(342), + [anon_sym_in] = ACTIONS(344), + [anon_sym_SEMI_SEMI] = ACTIONS(346), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(346), + [anon_sym_LF] = ACTIONS(346), + [anon_sym_AMP] = ACTIONS(346), }, [41] = { - [aux_sym_concatenation_repeat1] = STATE(177), - [sym__concat] = ACTIONS(306), - [anon_sym_in] = ACTIONS(308), - [anon_sym_SEMI_SEMI] = ACTIONS(310), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(310), - [anon_sym_LF] = ACTIONS(310), - [anon_sym_AMP] = ACTIONS(310), + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(191), + [anon_sym_DQUOTE] = ACTIONS(348), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), }, [42] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(179), - [anon_sym_DQUOTE] = ACTIONS(312), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), + [aux_sym_concatenation_repeat1] = STATE(189), + [sym__concat] = ACTIONS(342), + [anon_sym_in] = ACTIONS(350), + [anon_sym_SEMI_SEMI] = ACTIONS(352), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(352), + [anon_sym_LF] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(352), }, [43] = { - [sym_special_variable_name] = STATE(182), - [anon_sym_DOLLAR] = ACTIONS(314), - [anon_sym_POUND] = ACTIONS(314), - [anon_sym_AT] = ACTIONS(314), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(316), - [anon_sym_STAR] = ACTIONS(314), - [anon_sym_QMARK] = ACTIONS(314), - [anon_sym_DASH] = ACTIONS(314), - [anon_sym_BANG] = ACTIONS(314), - [anon_sym_0] = ACTIONS(318), - [anon_sym__] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(354), + [anon_sym_DASH] = ACTIONS(354), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(356), + [anon_sym_STAR] = ACTIONS(354), + [anon_sym_AT] = ACTIONS(354), + [anon_sym_QMARK] = ACTIONS(354), + [anon_sym_0] = ACTIONS(358), + [anon_sym__] = ACTIONS(358), }, [44] = { - [sym_special_variable_name] = STATE(185), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(320), - [anon_sym_AT] = ACTIONS(138), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(322), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), + [sym_subscript] = STATE(200), + [sym_variable_name] = ACTIONS(360), + [anon_sym_DOLLAR] = ACTIONS(362), + [anon_sym_POUND] = ACTIONS(364), + [anon_sym_DASH] = ACTIONS(362), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(366), + [anon_sym_STAR] = ACTIONS(362), + [anon_sym_AT] = ACTIONS(362), + [anon_sym_QMARK] = ACTIONS(362), + [anon_sym_0] = ACTIONS(368), + [anon_sym__] = ACTIONS(368), }, [45] = { - [sym_for_statement] = STATE(186), - [sym_while_statement] = STATE(186), - [sym_if_statement] = STATE(186), - [sym_case_statement] = STATE(186), - [sym_function_definition] = STATE(186), - [sym_subshell] = STATE(186), - [sym_pipeline] = STATE(186), - [sym_list] = STATE(186), - [sym_command] = STATE(186), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(187), - [sym_declaration_command] = STATE(186), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), + [sym_for_statement] = STATE(201), + [sym_while_statement] = STATE(201), + [sym_if_statement] = STATE(201), + [sym_case_statement] = STATE(201), + [sym_function_definition] = STATE(201), + [sym_subshell] = STATE(201), + [sym_pipeline] = STATE(201), + [sym_list] = STATE(201), + [sym_command] = STATE(201), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(202), + [sym_declaration_command] = STATE(201), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, [46] = { - [sym_for_statement] = STATE(188), - [sym_while_statement] = STATE(188), - [sym_if_statement] = STATE(188), - [sym_case_statement] = STATE(188), - [sym_function_definition] = STATE(188), - [sym_subshell] = STATE(188), - [sym_pipeline] = STATE(188), - [sym_list] = STATE(188), - [sym_command] = STATE(188), - [sym_command_name] = STATE(118), - [sym_variable_assignment] = STATE(189), - [sym_declaration_command] = STATE(188), - [sym_subscript] = STATE(120), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_command_repeat1] = STATE(121), + [sym_for_statement] = STATE(203), + [sym_while_statement] = STATE(203), + [sym_if_statement] = STATE(203), + [sym_case_statement] = STATE(203), + [sym_function_definition] = STATE(203), + [sym_subshell] = STATE(203), + [sym_pipeline] = STATE(203), + [sym_list] = STATE(203), + [sym_command] = STATE(203), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(204), + [sym_declaration_command] = STATE(203), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(178), - [sym_variable_name] = ACTIONS(180), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(184), - [anon_sym_typeset] = ACTIONS(184), - [anon_sym_export] = ACTIONS(184), - [anon_sym_readonly] = ACTIONS(184), - [anon_sym_local] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(178), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(186), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), }, [47] = { - [sym_for_statement] = STATE(190), - [sym_while_statement] = STATE(190), - [sym_if_statement] = STATE(190), - [sym_case_statement] = STATE(190), - [sym_function_definition] = STATE(190), - [sym_subshell] = STATE(190), - [sym_pipeline] = STATE(190), - [sym_list] = STATE(190), - [sym_command] = STATE(190), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(191), - [sym_declaration_command] = STATE(190), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), + [sym_for_statement] = STATE(205), + [sym_while_statement] = STATE(205), + [sym_if_statement] = STATE(205), + [sym_case_statement] = STATE(205), + [sym_function_definition] = STATE(205), + [sym_subshell] = STATE(205), + [sym_pipeline] = STATE(205), + [sym_list] = STATE(205), + [sym_command] = STATE(205), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(206), + [sym_declaration_command] = STATE(205), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, [48] = { - [aux_sym_concatenation_repeat1] = STATE(194), - [sym__concat] = ACTIONS(306), - [anon_sym_in] = ACTIONS(324), - [anon_sym_SEMI_SEMI] = ACTIONS(326), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(326), - [anon_sym_LF] = ACTIONS(326), - [anon_sym_AMP] = ACTIONS(326), + [anon_sym_in] = ACTIONS(350), + [anon_sym_SEMI_SEMI] = ACTIONS(352), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(352), + [anon_sym_LF] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(352), }, [49] = { - [anon_sym_in] = ACTIONS(308), - [anon_sym_SEMI_SEMI] = ACTIONS(310), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(310), - [anon_sym_LF] = ACTIONS(310), - [anon_sym_AMP] = ACTIONS(310), + [sym_compound_statement] = STATE(209), + [anon_sym_LPAREN] = ACTIONS(370), + [anon_sym_LBRACE] = ACTIONS(372), + [sym_comment] = ACTIONS(48), }, [50] = { - [sym_compound_statement] = STATE(197), - [anon_sym_LPAREN] = ACTIONS(328), - [anon_sym_LBRACE] = ACTIONS(330), - [sym_comment] = ACTIONS(46), + [sym__assignment] = STATE(34), + [anon_sym_EQ] = ACTIONS(374), + [anon_sym_PLUS_EQ] = ACTIONS(374), + [anon_sym_LBRACK] = ACTIONS(58), + [sym_comment] = ACTIONS(48), }, [51] = { - [aux_sym_concatenation_repeat1] = STATE(198), - [sym_file_descriptor] = ACTIONS(54), - [sym_word] = ACTIONS(54), - [sym__concat] = ACTIONS(56), - [anon_sym_PIPE] = ACTIONS(58), - [anon_sym_RPAREN] = ACTIONS(58), - [anon_sym_SEMI_SEMI] = ACTIONS(58), - [anon_sym_PIPE_AMP] = ACTIONS(58), - [anon_sym_AMP_AMP] = ACTIONS(58), - [anon_sym_PIPE_PIPE] = ACTIONS(58), - [anon_sym_LT] = ACTIONS(58), - [anon_sym_GT] = ACTIONS(58), - [anon_sym_GT_GT] = ACTIONS(58), - [anon_sym_AMP_GT] = ACTIONS(58), - [anon_sym_AMP_GT_GT] = ACTIONS(58), - [anon_sym_LT_AMP] = ACTIONS(58), - [anon_sym_GT_AMP] = ACTIONS(58), - [anon_sym_LT_LT] = ACTIONS(58), - [anon_sym_LT_LT_DASH] = ACTIONS(58), - [anon_sym_DQUOTE] = ACTIONS(58), - [sym_raw_string] = ACTIONS(58), - [anon_sym_DOLLAR] = ACTIONS(58), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(58), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(58), - [anon_sym_BQUOTE] = ACTIONS(58), - [anon_sym_LT_LPAREN] = ACTIONS(58), - [anon_sym_GT_LPAREN] = ACTIONS(58), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(58), - [anon_sym_SEMI] = ACTIONS(58), - [anon_sym_LF] = ACTIONS(58), - [anon_sym_AMP] = ACTIONS(58), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(376), }, [52] = { - [sym__assignment] = STATE(35), - [anon_sym_EQ] = ACTIONS(332), - [anon_sym_PLUS_EQ] = ACTIONS(332), - [anon_sym_LBRACK] = ACTIONS(64), - [sym_comment] = ACTIONS(46), + [sym_variable_assignment] = STATE(70), + [sym_subscript] = STATE(213), + [aux_sym_declaration_command_repeat1] = STATE(214), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(108), + [anon_sym_RPAREN] = ACTIONS(108), + [anon_sym_SEMI_SEMI] = ACTIONS(108), + [anon_sym_PIPE_AMP] = ACTIONS(108), + [anon_sym_AMP_AMP] = ACTIONS(108), + [anon_sym_PIPE_PIPE] = ACTIONS(108), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(112), + [sym_word] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(108), + [anon_sym_LF] = ACTIONS(108), + [anon_sym_AMP] = ACTIONS(108), }, [53] = { - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(334), + [aux_sym_concatenation_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(134), + [sym__concat] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(138), + [anon_sym_RPAREN] = ACTIONS(138), + [anon_sym_SEMI_SEMI] = ACTIONS(138), + [anon_sym_PIPE_AMP] = ACTIONS(138), + [anon_sym_AMP_AMP] = ACTIONS(138), + [anon_sym_PIPE_PIPE] = ACTIONS(138), + [anon_sym_LT] = ACTIONS(138), + [anon_sym_GT] = ACTIONS(138), + [anon_sym_GT_GT] = ACTIONS(138), + [anon_sym_AMP_GT] = ACTIONS(138), + [anon_sym_AMP_GT_GT] = ACTIONS(138), + [anon_sym_LT_AMP] = ACTIONS(138), + [anon_sym_GT_AMP] = ACTIONS(138), + [anon_sym_LT_LT] = ACTIONS(138), + [anon_sym_LT_LT_DASH] = ACTIONS(138), + [anon_sym_LT_LT_LT] = ACTIONS(138), + [sym__special_characters] = ACTIONS(138), + [anon_sym_DQUOTE] = ACTIONS(138), + [sym_raw_string] = ACTIONS(138), + [anon_sym_DOLLAR] = ACTIONS(138), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(138), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(138), + [anon_sym_BQUOTE] = ACTIONS(138), + [anon_sym_LT_LPAREN] = ACTIONS(138), + [anon_sym_GT_LPAREN] = ACTIONS(138), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(138), + [anon_sym_SEMI] = ACTIONS(138), + [anon_sym_LF] = ACTIONS(138), + [anon_sym_AMP] = ACTIONS(138), }, [54] = { - [sym_variable_assignment] = STATE(62), - [sym_subscript] = STATE(202), - [aux_sym_declaration_command_repeat1] = STATE(203), - [sym_word] = ACTIONS(96), - [sym_variable_name] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(100), - [anon_sym_RPAREN] = ACTIONS(100), - [anon_sym_SEMI_SEMI] = ACTIONS(100), - [anon_sym_PIPE_AMP] = ACTIONS(100), - [anon_sym_AMP_AMP] = ACTIONS(100), - [anon_sym_PIPE_PIPE] = ACTIONS(100), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(100), - [anon_sym_LF] = ACTIONS(100), - [anon_sym_AMP] = ACTIONS(100), + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(218), + [anon_sym_DQUOTE] = ACTIONS(382), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), }, [55] = { - [aux_sym_concatenation_repeat1] = STATE(205), - [sym_file_descriptor] = ACTIONS(188), - [sym_word] = ACTIONS(188), - [sym__concat] = ACTIONS(56), - [anon_sym_PIPE] = ACTIONS(190), - [anon_sym_RPAREN] = ACTIONS(190), - [anon_sym_SEMI_SEMI] = ACTIONS(190), - [anon_sym_LPAREN] = ACTIONS(338), - [anon_sym_PIPE_AMP] = ACTIONS(190), - [anon_sym_AMP_AMP] = ACTIONS(190), - [anon_sym_PIPE_PIPE] = ACTIONS(190), - [anon_sym_LT] = ACTIONS(190), - [anon_sym_GT] = ACTIONS(190), - [anon_sym_GT_GT] = ACTIONS(190), - [anon_sym_AMP_GT] = ACTIONS(190), - [anon_sym_AMP_GT_GT] = ACTIONS(190), - [anon_sym_LT_AMP] = ACTIONS(190), - [anon_sym_GT_AMP] = ACTIONS(190), - [anon_sym_LT_LT] = ACTIONS(190), - [anon_sym_LT_LT_DASH] = ACTIONS(190), - [anon_sym_DQUOTE] = ACTIONS(190), - [sym_raw_string] = ACTIONS(190), - [anon_sym_DOLLAR] = ACTIONS(190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(190), - [anon_sym_LT_LPAREN] = ACTIONS(190), - [anon_sym_GT_LPAREN] = ACTIONS(190), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(190), - [anon_sym_SEMI] = ACTIONS(190), - [anon_sym_LF] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(190), + [aux_sym_concatenation_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(152), + [sym__concat] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(154), + [anon_sym_RPAREN] = ACTIONS(154), + [anon_sym_SEMI_SEMI] = ACTIONS(154), + [anon_sym_PIPE_AMP] = ACTIONS(154), + [anon_sym_AMP_AMP] = ACTIONS(154), + [anon_sym_PIPE_PIPE] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(154), + [anon_sym_GT_GT] = ACTIONS(154), + [anon_sym_AMP_GT] = ACTIONS(154), + [anon_sym_AMP_GT_GT] = ACTIONS(154), + [anon_sym_LT_AMP] = ACTIONS(154), + [anon_sym_GT_AMP] = ACTIONS(154), + [anon_sym_LT_LT] = ACTIONS(154), + [anon_sym_LT_LT_DASH] = ACTIONS(154), + [anon_sym_LT_LT_LT] = ACTIONS(154), + [sym__special_characters] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(154), + [sym_raw_string] = ACTIONS(154), + [anon_sym_DOLLAR] = ACTIONS(154), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(154), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_LT_LPAREN] = ACTIONS(154), + [anon_sym_GT_LPAREN] = ACTIONS(154), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LF] = ACTIONS(154), + [anon_sym_AMP] = ACTIONS(154), }, [56] = { - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_RPAREN] = ACTIONS(342), - [anon_sym_SEMI_SEMI] = ACTIONS(344), - [anon_sym_PIPE_AMP] = ACTIONS(340), - [anon_sym_AMP_AMP] = ACTIONS(346), - [anon_sym_PIPE_PIPE] = ACTIONS(346), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(344), - [anon_sym_LF] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(344), + [anon_sym_DOLLAR] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(386), + [anon_sym_STAR] = ACTIONS(384), + [anon_sym_AT] = ACTIONS(384), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_0] = ACTIONS(388), + [anon_sym__] = ACTIONS(388), }, [57] = { - [sym_file_redirect] = STATE(134), - [sym_heredoc_redirect] = STATE(134), - [sym_concatenation] = STATE(135), - [sym_string] = STATE(211), - [sym_simple_expansion] = STATE(211), - [sym_expansion] = STATE(211), - [sym_command_substitution] = STATE(211), - [sym_process_substitution] = STATE(211), - [aux_sym_for_statement_repeat1] = STATE(214), - [aux_sym_command_repeat2] = STATE(215), - [sym_file_descriptor] = ACTIONS(348), - [sym_word] = ACTIONS(350), - [anon_sym_PIPE] = ACTIONS(212), - [anon_sym_RPAREN] = ACTIONS(212), - [anon_sym_SEMI_SEMI] = ACTIONS(212), - [anon_sym_PIPE_AMP] = ACTIONS(212), - [anon_sym_AMP_AMP] = ACTIONS(212), - [anon_sym_PIPE_PIPE] = ACTIONS(212), - [anon_sym_LT] = ACTIONS(352), - [anon_sym_GT] = ACTIONS(352), - [anon_sym_GT_GT] = ACTIONS(352), - [anon_sym_AMP_GT] = ACTIONS(352), - [anon_sym_AMP_GT_GT] = ACTIONS(352), - [anon_sym_LT_AMP] = ACTIONS(352), - [anon_sym_GT_AMP] = ACTIONS(352), - [anon_sym_LT_LT] = ACTIONS(216), - [anon_sym_LT_LT_DASH] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(218), - [sym_raw_string] = ACTIONS(354), - [anon_sym_DOLLAR] = ACTIONS(222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(226), - [anon_sym_BQUOTE] = ACTIONS(228), - [anon_sym_LT_LPAREN] = ACTIONS(230), - [anon_sym_GT_LPAREN] = ACTIONS(230), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(356), - [anon_sym_SEMI] = ACTIONS(212), - [anon_sym_LF] = ACTIONS(212), - [anon_sym_AMP] = ACTIONS(212), + [sym_subscript] = STATE(225), + [sym_variable_name] = ACTIONS(390), + [anon_sym_DOLLAR] = ACTIONS(392), + [anon_sym_POUND] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(392), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(392), + [anon_sym_AT] = ACTIONS(392), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_0] = ACTIONS(398), + [anon_sym__] = ACTIONS(398), }, [58] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_RPAREN] = ACTIONS(342), - [anon_sym_SEMI_SEMI] = ACTIONS(344), - [anon_sym_PIPE_AMP] = ACTIONS(340), - [anon_sym_AMP_AMP] = ACTIONS(346), - [anon_sym_PIPE_PIPE] = ACTIONS(346), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(236), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(236), - [anon_sym_SEMI] = ACTIONS(344), - [anon_sym_LF] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(344), + [sym_for_statement] = STATE(226), + [sym_while_statement] = STATE(226), + [sym_if_statement] = STATE(226), + [sym_case_statement] = STATE(226), + [sym_function_definition] = STATE(226), + [sym_subshell] = STATE(226), + [sym_pipeline] = STATE(226), + [sym_list] = STATE(226), + [sym_command] = STATE(226), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(227), + [sym_declaration_command] = STATE(226), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, [59] = { - [sym__assignment] = STATE(35), - [anon_sym_EQ] = ACTIONS(332), - [anon_sym_PLUS_EQ] = ACTIONS(332), - [sym_comment] = ACTIONS(46), + [sym_for_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_case_statement] = STATE(228), + [sym_function_definition] = STATE(228), + [sym_subshell] = STATE(228), + [sym_pipeline] = STATE(228), + [sym_list] = STATE(228), + [sym_command] = STATE(228), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(229), + [sym_declaration_command] = STATE(228), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), }, [60] = { - [sym__terminated_statement] = STATE(21), - [sym_for_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_if_statement] = STATE(216), - [sym_case_statement] = STATE(216), - [sym_function_definition] = STATE(216), - [sym_subshell] = STATE(216), - [sym_pipeline] = STATE(216), - [sym_list] = STATE(216), - [sym_command] = STATE(216), - [sym_command_name] = STATE(57), - [sym_variable_assignment] = STATE(217), - [sym_declaration_command] = STATE(216), - [sym_subscript] = STATE(59), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(51), - [sym_simple_expansion] = STATE(51), - [sym_expansion] = STATE(51), - [sym_command_substitution] = STATE(51), - [sym_process_substitution] = STATE(51), - [aux_sym_program_repeat1] = STATE(218), - [aux_sym_command_repeat1] = STATE(61), + [sym_for_statement] = STATE(230), + [sym_while_statement] = STATE(230), + [sym_if_statement] = STATE(230), + [sym_case_statement] = STATE(230), + [sym_function_definition] = STATE(230), + [sym_subshell] = STATE(230), + [sym_pipeline] = STATE(230), + [sym_list] = STATE(230), + [sym_command] = STATE(230), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(231), + [sym_declaration_command] = STATE(230), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(86), - [sym_variable_name] = ACTIONS(88), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(90), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(92), - [anon_sym_typeset] = ACTIONS(92), - [anon_sym_export] = ACTIONS(92), - [anon_sym_readonly] = ACTIONS(92), - [anon_sym_local] = ACTIONS(92), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(86), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(94), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, [61] = { - [sym_command_name] = STATE(220), - [sym_variable_assignment] = STATE(26), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(51), - [sym_simple_expansion] = STATE(51), - [sym_expansion] = STATE(51), - [sym_command_substitution] = STATE(51), - [sym_process_substitution] = STATE(51), - [aux_sym_command_repeat1] = STATE(143), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(86), - [sym_variable_name] = ACTIONS(242), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(86), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(358), + [aux_sym_concatenation_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(152), + [sym__concat] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(154), + [anon_sym_RPAREN] = ACTIONS(154), + [anon_sym_SEMI_SEMI] = ACTIONS(154), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym_PIPE_AMP] = ACTIONS(154), + [anon_sym_AMP_AMP] = ACTIONS(154), + [anon_sym_PIPE_PIPE] = ACTIONS(154), + [anon_sym_LT] = ACTIONS(154), + [anon_sym_GT] = ACTIONS(154), + [anon_sym_GT_GT] = ACTIONS(154), + [anon_sym_AMP_GT] = ACTIONS(154), + [anon_sym_AMP_GT_GT] = ACTIONS(154), + [anon_sym_LT_AMP] = ACTIONS(154), + [anon_sym_GT_AMP] = ACTIONS(154), + [anon_sym_LT_LT] = ACTIONS(154), + [anon_sym_LT_LT_DASH] = ACTIONS(154), + [anon_sym_LT_LT_LT] = ACTIONS(154), + [sym__special_characters] = ACTIONS(154), + [anon_sym_DQUOTE] = ACTIONS(154), + [sym_raw_string] = ACTIONS(154), + [anon_sym_DOLLAR] = ACTIONS(154), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(154), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(154), + [anon_sym_LT_LPAREN] = ACTIONS(154), + [anon_sym_GT_LPAREN] = ACTIONS(154), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(154), + [anon_sym_SEMI] = ACTIONS(154), + [anon_sym_LF] = ACTIONS(154), + [anon_sym_AMP] = ACTIONS(154), }, [62] = { - [sym_word] = ACTIONS(360), - [sym_variable_name] = ACTIONS(360), - [anon_sym_PIPE] = ACTIONS(362), - [anon_sym_RPAREN] = ACTIONS(362), - [anon_sym_SEMI_SEMI] = ACTIONS(362), - [anon_sym_PIPE_AMP] = ACTIONS(362), - [anon_sym_AMP_AMP] = ACTIONS(362), - [anon_sym_PIPE_PIPE] = ACTIONS(362), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(362), - [anon_sym_SEMI] = ACTIONS(362), - [anon_sym_LF] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(362), + [anon_sym_PIPE] = ACTIONS(402), + [anon_sym_RPAREN] = ACTIONS(404), + [anon_sym_SEMI_SEMI] = ACTIONS(406), + [anon_sym_PIPE_AMP] = ACTIONS(402), + [anon_sym_AMP_AMP] = ACTIONS(408), + [anon_sym_PIPE_PIPE] = ACTIONS(408), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(406), + [anon_sym_LF] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), }, [63] = { - [sym__assignment] = STATE(222), - [anon_sym_EQ] = ACTIONS(364), - [anon_sym_PLUS_EQ] = ACTIONS(364), - [anon_sym_LBRACK] = ACTIONS(64), - [sym_comment] = ACTIONS(46), + [sym_file_redirect] = STATE(150), + [sym_heredoc_redirect] = STATE(150), + [sym_herestring_redirect] = STATE(150), + [sym_concatenation] = STATE(151), + [sym_string] = STATE(241), + [sym_simple_expansion] = STATE(241), + [sym_expansion] = STATE(241), + [sym_command_substitution] = STATE(241), + [sym_process_substitution] = STATE(241), + [aux_sym_for_statement_repeat1] = STATE(242), + [aux_sym_command_repeat2] = STATE(243), + [sym_file_descriptor] = ACTIONS(410), + [anon_sym_PIPE] = ACTIONS(248), + [anon_sym_RPAREN] = ACTIONS(248), + [anon_sym_SEMI_SEMI] = ACTIONS(248), + [anon_sym_PIPE_AMP] = ACTIONS(248), + [anon_sym_AMP_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(248), + [anon_sym_LT] = ACTIONS(412), + [anon_sym_GT] = ACTIONS(412), + [anon_sym_GT_GT] = ACTIONS(412), + [anon_sym_AMP_GT] = ACTIONS(412), + [anon_sym_AMP_GT_GT] = ACTIONS(412), + [anon_sym_LT_AMP] = ACTIONS(412), + [anon_sym_GT_AMP] = ACTIONS(412), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(414), + [sym__special_characters] = ACTIONS(416), + [anon_sym_DQUOTE] = ACTIONS(418), + [sym_raw_string] = ACTIONS(420), + [anon_sym_DOLLAR] = ACTIONS(422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(428), + [anon_sym_LT_LPAREN] = ACTIONS(430), + [anon_sym_GT_LPAREN] = ACTIONS(430), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(420), + [anon_sym_SEMI] = ACTIONS(248), + [anon_sym_LF] = ACTIONS(248), + [anon_sym_AMP] = ACTIONS(248), }, [64] = { - [sym_word] = ACTIONS(366), - [sym_variable_name] = ACTIONS(366), - [anon_sym_PIPE] = ACTIONS(368), - [anon_sym_RPAREN] = ACTIONS(368), - [anon_sym_SEMI_SEMI] = ACTIONS(368), - [anon_sym_PIPE_AMP] = ACTIONS(368), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(368), - [anon_sym_SEMI] = ACTIONS(368), - [anon_sym_LF] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(368), + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(402), + [anon_sym_RPAREN] = ACTIONS(404), + [anon_sym_SEMI_SEMI] = ACTIONS(406), + [anon_sym_PIPE_AMP] = ACTIONS(402), + [anon_sym_AMP_AMP] = ACTIONS(408), + [anon_sym_PIPE_PIPE] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_AMP_GT] = ACTIONS(274), + [anon_sym_AMP_GT_GT] = ACTIONS(274), + [anon_sym_LT_AMP] = ACTIONS(274), + [anon_sym_GT_AMP] = ACTIONS(274), + [sym__special_characters] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(274), + [sym_raw_string] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(274), + [anon_sym_BQUOTE] = ACTIONS(274), + [anon_sym_LT_LPAREN] = ACTIONS(274), + [anon_sym_GT_LPAREN] = ACTIONS(274), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(406), + [anon_sym_LF] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(406), }, [65] = { - [sym__assignment] = STATE(222), - [anon_sym_EQ] = ACTIONS(364), - [anon_sym_PLUS_EQ] = ACTIONS(364), - [sym_comment] = ACTIONS(46), + [sym__assignment] = STATE(34), + [anon_sym_EQ] = ACTIONS(374), + [anon_sym_PLUS_EQ] = ACTIONS(374), + [sym_comment] = ACTIONS(48), }, [66] = { - [sym_variable_assignment] = STATE(62), + [sym__terminated_statement] = STATE(22), + [sym_for_statement] = STATE(244), + [sym_while_statement] = STATE(244), + [sym_if_statement] = STATE(244), + [sym_case_statement] = STATE(244), + [sym_function_definition] = STATE(244), + [sym_subshell] = STATE(244), + [sym_pipeline] = STATE(244), + [sym_list] = STATE(244), + [sym_command] = STATE(244), + [sym_command_name] = STATE(63), + [sym_variable_assignment] = STATE(245), + [sym_declaration_command] = STATE(244), [sym_subscript] = STATE(65), - [aux_sym_declaration_command_repeat1] = STATE(223), - [sym_word] = ACTIONS(96), - [sym_variable_name] = ACTIONS(98), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_SEMI_SEMI] = ACTIONS(370), - [anon_sym_PIPE_AMP] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_PIPE_PIPE] = ACTIONS(370), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym_LF] = ACTIONS(370), - [anon_sym_AMP] = ACTIONS(370), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(55), + [sym_simple_expansion] = STATE(55), + [sym_expansion] = STATE(55), + [sym_command_substitution] = STATE(55), + [sym_process_substitution] = STATE(55), + [aux_sym_program_repeat1] = STATE(246), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(82), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(84), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(86), + [anon_sym_typeset] = ACTIONS(86), + [anon_sym_export] = ACTIONS(86), + [anon_sym_readonly] = ACTIONS(86), + [anon_sym_local] = ACTIONS(86), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(88), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(92), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(104), }, [67] = { - [aux_sym_concatenation_repeat1] = STATE(225), - [sym_file_descriptor] = ACTIONS(372), - [sym_word] = ACTIONS(372), - [sym__concat] = ACTIONS(374), - [sym_variable_name] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_GT_GT] = ACTIONS(372), - [anon_sym_AMP_GT] = ACTIONS(376), - [anon_sym_AMP_GT_GT] = ACTIONS(372), - [anon_sym_LT_AMP] = ACTIONS(372), - [anon_sym_GT_AMP] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(372), - [sym_raw_string] = ACTIONS(372), - [anon_sym_DOLLAR] = ACTIONS(376), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(372), - [anon_sym_BQUOTE] = ACTIONS(372), - [anon_sym_LT_LPAREN] = ACTIONS(372), - [anon_sym_GT_LPAREN] = ACTIONS(372), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(376), + [sym_command_name] = STATE(247), + [sym_variable_assignment] = STATE(27), + [sym_subscript] = STATE(157), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(55), + [sym_simple_expansion] = STATE(55), + [sym_expansion] = STATE(55), + [sym_command_substitution] = STATE(55), + [sym_process_substitution] = STATE(55), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(280), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(88), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(92), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(432), }, [68] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(227), - [anon_sym_DQUOTE] = ACTIONS(378), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), + [sym__assignment] = STATE(249), + [anon_sym_EQ] = ACTIONS(434), + [anon_sym_PLUS_EQ] = ACTIONS(434), + [anon_sym_LBRACK] = ACTIONS(58), + [sym_comment] = ACTIONS(48), }, [69] = { - [sym_special_variable_name] = STATE(230), - [anon_sym_DOLLAR] = ACTIONS(380), - [anon_sym_POUND] = ACTIONS(380), - [anon_sym_AT] = ACTIONS(380), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(382), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_QMARK] = ACTIONS(380), - [anon_sym_DASH] = ACTIONS(380), - [anon_sym_BANG] = ACTIONS(380), - [anon_sym_0] = ACTIONS(384), - [anon_sym__] = ACTIONS(384), + [sym_variable_name] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(438), + [anon_sym_RPAREN] = ACTIONS(438), + [anon_sym_SEMI_SEMI] = ACTIONS(438), + [anon_sym_PIPE_AMP] = ACTIONS(438), + [anon_sym_AMP_AMP] = ACTIONS(438), + [anon_sym_PIPE_PIPE] = ACTIONS(438), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(438), + [sym_word] = ACTIONS(438), + [anon_sym_SEMI] = ACTIONS(438), + [anon_sym_LF] = ACTIONS(438), + [anon_sym_AMP] = ACTIONS(438), }, [70] = { - [sym_special_variable_name] = STATE(233), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(386), - [anon_sym_AT] = ACTIONS(138), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(388), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), + [sym_variable_name] = ACTIONS(440), + [anon_sym_PIPE] = ACTIONS(442), + [anon_sym_RPAREN] = ACTIONS(442), + [anon_sym_SEMI_SEMI] = ACTIONS(442), + [anon_sym_PIPE_AMP] = ACTIONS(442), + [anon_sym_AMP_AMP] = ACTIONS(442), + [anon_sym_PIPE_PIPE] = ACTIONS(442), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(442), + [sym_word] = ACTIONS(442), + [anon_sym_SEMI] = ACTIONS(442), + [anon_sym_LF] = ACTIONS(442), + [anon_sym_AMP] = ACTIONS(442), }, [71] = { - [sym_for_statement] = STATE(234), - [sym_while_statement] = STATE(234), - [sym_if_statement] = STATE(234), - [sym_case_statement] = STATE(234), - [sym_function_definition] = STATE(234), - [sym_subshell] = STATE(234), - [sym_pipeline] = STATE(234), - [sym_list] = STATE(234), - [sym_command] = STATE(234), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(235), - [sym_declaration_command] = STATE(234), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), + [sym__assignment] = STATE(249), + [anon_sym_EQ] = ACTIONS(434), + [anon_sym_PLUS_EQ] = ACTIONS(434), + [sym_comment] = ACTIONS(48), }, [72] = { - [sym_for_statement] = STATE(236), - [sym_while_statement] = STATE(236), - [sym_if_statement] = STATE(236), - [sym_case_statement] = STATE(236), - [sym_function_definition] = STATE(236), - [sym_subshell] = STATE(236), - [sym_pipeline] = STATE(236), - [sym_list] = STATE(236), - [sym_command] = STATE(236), - [sym_command_name] = STATE(118), - [sym_variable_assignment] = STATE(237), - [sym_declaration_command] = STATE(236), - [sym_subscript] = STATE(120), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_command_repeat1] = STATE(121), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(178), - [sym_variable_name] = ACTIONS(180), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(184), - [anon_sym_typeset] = ACTIONS(184), - [anon_sym_export] = ACTIONS(184), - [anon_sym_readonly] = ACTIONS(184), - [anon_sym_local] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(178), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(186), + [sym_variable_assignment] = STATE(70), + [sym_subscript] = STATE(71), + [aux_sym_declaration_command_repeat1] = STATE(250), + [sym_variable_name] = ACTIONS(106), + [anon_sym_PIPE] = ACTIONS(444), + [anon_sym_SEMI_SEMI] = ACTIONS(444), + [anon_sym_PIPE_AMP] = ACTIONS(444), + [anon_sym_AMP_AMP] = ACTIONS(444), + [anon_sym_PIPE_PIPE] = ACTIONS(444), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(112), + [sym_word] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(444), + [anon_sym_LF] = ACTIONS(444), + [anon_sym_AMP] = ACTIONS(444), }, [73] = { - [sym_for_statement] = STATE(238), - [sym_while_statement] = STATE(238), - [sym_if_statement] = STATE(238), - [sym_case_statement] = STATE(238), - [sym_function_definition] = STATE(238), - [sym_subshell] = STATE(238), - [sym_pipeline] = STATE(238), - [sym_list] = STATE(238), - [sym_command] = STATE(238), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(239), - [sym_declaration_command] = STATE(238), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), + [aux_sym_concatenation_repeat1] = STATE(252), + [sym_file_descriptor] = ACTIONS(446), + [sym__concat] = ACTIONS(448), + [sym_variable_name] = ACTIONS(446), + [anon_sym_LT] = ACTIONS(450), + [anon_sym_GT] = ACTIONS(450), + [anon_sym_GT_GT] = ACTIONS(446), + [anon_sym_AMP_GT] = ACTIONS(450), + [anon_sym_AMP_GT_GT] = ACTIONS(446), + [anon_sym_LT_AMP] = ACTIONS(446), + [anon_sym_GT_AMP] = ACTIONS(446), + [sym__special_characters] = ACTIONS(450), + [anon_sym_DQUOTE] = ACTIONS(446), + [sym_raw_string] = ACTIONS(446), + [anon_sym_DOLLAR] = ACTIONS(450), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(446), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(446), + [anon_sym_BQUOTE] = ACTIONS(446), + [anon_sym_LT_LPAREN] = ACTIONS(446), + [anon_sym_GT_LPAREN] = ACTIONS(446), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(450), }, [74] = { - [aux_sym_concatenation_repeat1] = STATE(240), - [sym_file_descriptor] = ACTIONS(390), - [sym_word] = ACTIONS(390), - [sym__concat] = ACTIONS(374), - [sym_variable_name] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(392), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_AMP_GT] = ACTIONS(392), - [anon_sym_AMP_GT_GT] = ACTIONS(390), - [anon_sym_LT_AMP] = ACTIONS(390), - [anon_sym_GT_AMP] = ACTIONS(390), - [anon_sym_DQUOTE] = ACTIONS(390), - [sym_raw_string] = ACTIONS(390), - [anon_sym_DOLLAR] = ACTIONS(392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(390), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), - [anon_sym_BQUOTE] = ACTIONS(390), - [anon_sym_LT_LPAREN] = ACTIONS(390), - [anon_sym_GT_LPAREN] = ACTIONS(390), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(392), + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(254), + [anon_sym_DQUOTE] = ACTIONS(452), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), }, [75] = { - [sym_file_descriptor] = ACTIONS(372), - [sym_word] = ACTIONS(372), - [sym_variable_name] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_GT_GT] = ACTIONS(372), - [anon_sym_AMP_GT] = ACTIONS(376), - [anon_sym_AMP_GT_GT] = ACTIONS(372), - [anon_sym_LT_AMP] = ACTIONS(372), - [anon_sym_GT_AMP] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(372), - [sym_raw_string] = ACTIONS(372), - [anon_sym_DOLLAR] = ACTIONS(376), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(372), - [anon_sym_BQUOTE] = ACTIONS(372), - [anon_sym_LT_LPAREN] = ACTIONS(372), - [anon_sym_GT_LPAREN] = ACTIONS(372), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(376), + [aux_sym_concatenation_repeat1] = STATE(252), + [sym_file_descriptor] = ACTIONS(454), + [sym__concat] = ACTIONS(448), + [sym_variable_name] = ACTIONS(454), + [anon_sym_LT] = ACTIONS(456), + [anon_sym_GT] = ACTIONS(456), + [anon_sym_GT_GT] = ACTIONS(454), + [anon_sym_AMP_GT] = ACTIONS(456), + [anon_sym_AMP_GT_GT] = ACTIONS(454), + [anon_sym_LT_AMP] = ACTIONS(454), + [anon_sym_GT_AMP] = ACTIONS(454), + [sym__special_characters] = ACTIONS(456), + [anon_sym_DQUOTE] = ACTIONS(454), + [sym_raw_string] = ACTIONS(454), + [anon_sym_DOLLAR] = ACTIONS(456), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(454), + [anon_sym_BQUOTE] = ACTIONS(454), + [anon_sym_LT_LPAREN] = ACTIONS(454), + [anon_sym_GT_LPAREN] = ACTIONS(454), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(456), }, [76] = { - [sym_file_descriptor] = ACTIONS(394), - [sym_word] = ACTIONS(394), - [sym__concat] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(396), - [anon_sym_RPAREN] = ACTIONS(396), - [anon_sym_SEMI_SEMI] = ACTIONS(396), - [anon_sym_PIPE_AMP] = ACTIONS(396), - [anon_sym_AMP_AMP] = ACTIONS(396), - [anon_sym_PIPE_PIPE] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(396), - [anon_sym_AMP_GT] = ACTIONS(396), - [anon_sym_AMP_GT_GT] = ACTIONS(396), - [anon_sym_LT_AMP] = ACTIONS(396), - [anon_sym_GT_AMP] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_LT_LT_DASH] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(396), - [sym_raw_string] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(396), - [anon_sym_LT_LPAREN] = ACTIONS(396), - [anon_sym_GT_LPAREN] = ACTIONS(396), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(396), - [anon_sym_SEMI] = ACTIONS(396), - [anon_sym_LF] = ACTIONS(396), - [anon_sym_AMP] = ACTIONS(396), + [anon_sym_DOLLAR] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(458), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(458), + [anon_sym_QMARK] = ACTIONS(458), + [anon_sym_0] = ACTIONS(462), + [anon_sym__] = ACTIONS(462), }, [77] = { - [anon_sym_DQUOTE] = ACTIONS(398), - [sym__string_content] = ACTIONS(398), - [anon_sym_DOLLAR] = ACTIONS(398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(398), - [anon_sym_BQUOTE] = ACTIONS(398), - [sym_comment] = ACTIONS(60), + [sym_subscript] = STATE(261), + [sym_variable_name] = ACTIONS(464), + [anon_sym_DOLLAR] = ACTIONS(466), + [anon_sym_POUND] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(466), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(470), + [anon_sym_STAR] = ACTIONS(466), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_QMARK] = ACTIONS(466), + [anon_sym_0] = ACTIONS(472), + [anon_sym__] = ACTIONS(472), }, [78] = { - [sym_special_variable_name] = STATE(243), - [anon_sym_DOLLAR] = ACTIONS(400), - [anon_sym_POUND] = ACTIONS(400), - [anon_sym_AT] = ACTIONS(400), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(402), - [anon_sym_STAR] = ACTIONS(400), - [anon_sym_QMARK] = ACTIONS(400), - [anon_sym_DASH] = ACTIONS(400), - [anon_sym_BANG] = ACTIONS(400), - [anon_sym_0] = ACTIONS(404), - [anon_sym__] = ACTIONS(404), + [sym_for_statement] = STATE(262), + [sym_while_statement] = STATE(262), + [sym_if_statement] = STATE(262), + [sym_case_statement] = STATE(262), + [sym_function_definition] = STATE(262), + [sym_subshell] = STATE(262), + [sym_pipeline] = STATE(262), + [sym_list] = STATE(262), + [sym_command] = STATE(262), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(263), + [sym_declaration_command] = STATE(262), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, [79] = { - [sym_special_variable_name] = STATE(246), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(406), - [anon_sym_AT] = ACTIONS(138), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), + [sym_for_statement] = STATE(264), + [sym_while_statement] = STATE(264), + [sym_if_statement] = STATE(264), + [sym_case_statement] = STATE(264), + [sym_function_definition] = STATE(264), + [sym_subshell] = STATE(264), + [sym_pipeline] = STATE(264), + [sym_list] = STATE(264), + [sym_command] = STATE(264), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(265), + [sym_declaration_command] = STATE(264), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), }, [80] = { - [sym_for_statement] = STATE(247), - [sym_while_statement] = STATE(247), - [sym_if_statement] = STATE(247), - [sym_case_statement] = STATE(247), - [sym_function_definition] = STATE(247), - [sym_subshell] = STATE(247), - [sym_pipeline] = STATE(247), - [sym_list] = STATE(247), - [sym_command] = STATE(247), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(248), - [sym_declaration_command] = STATE(247), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), + [sym_for_statement] = STATE(266), + [sym_while_statement] = STATE(266), + [sym_if_statement] = STATE(266), + [sym_case_statement] = STATE(266), + [sym_function_definition] = STATE(266), + [sym_subshell] = STATE(266), + [sym_pipeline] = STATE(266), + [sym_list] = STATE(266), + [sym_command] = STATE(266), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(267), + [sym_declaration_command] = STATE(266), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, [81] = { - [sym_for_statement] = STATE(249), - [sym_while_statement] = STATE(249), - [sym_if_statement] = STATE(249), - [sym_case_statement] = STATE(249), - [sym_function_definition] = STATE(249), - [sym_subshell] = STATE(249), - [sym_pipeline] = STATE(249), - [sym_list] = STATE(249), - [sym_command] = STATE(249), - [sym_command_name] = STATE(118), - [sym_variable_assignment] = STATE(250), - [sym_declaration_command] = STATE(249), - [sym_subscript] = STATE(120), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_command_repeat1] = STATE(121), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(178), - [sym_variable_name] = ACTIONS(180), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(184), - [anon_sym_typeset] = ACTIONS(184), - [anon_sym_export] = ACTIONS(184), - [anon_sym_readonly] = ACTIONS(184), - [anon_sym_local] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(178), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(186), + [sym_file_descriptor] = ACTIONS(454), + [sym_variable_name] = ACTIONS(454), + [anon_sym_LT] = ACTIONS(456), + [anon_sym_GT] = ACTIONS(456), + [anon_sym_GT_GT] = ACTIONS(454), + [anon_sym_AMP_GT] = ACTIONS(456), + [anon_sym_AMP_GT_GT] = ACTIONS(454), + [anon_sym_LT_AMP] = ACTIONS(454), + [anon_sym_GT_AMP] = ACTIONS(454), + [sym__special_characters] = ACTIONS(456), + [anon_sym_DQUOTE] = ACTIONS(454), + [sym_raw_string] = ACTIONS(454), + [anon_sym_DOLLAR] = ACTIONS(456), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(454), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(454), + [anon_sym_BQUOTE] = ACTIONS(454), + [anon_sym_LT_LPAREN] = ACTIONS(454), + [anon_sym_GT_LPAREN] = ACTIONS(454), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(456), }, [82] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(252), - [anon_sym_DQUOTE] = ACTIONS(410), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), - }, - [83] = { - [sym_file_descriptor] = ACTIONS(412), - [sym_word] = ACTIONS(412), - [sym__concat] = ACTIONS(412), - [anon_sym_PIPE] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(414), - [anon_sym_SEMI_SEMI] = ACTIONS(414), - [anon_sym_PIPE_AMP] = ACTIONS(414), - [anon_sym_AMP_AMP] = ACTIONS(414), - [anon_sym_PIPE_PIPE] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(414), - [anon_sym_GT] = ACTIONS(414), - [anon_sym_GT_GT] = ACTIONS(414), - [anon_sym_AMP_GT] = ACTIONS(414), - [anon_sym_AMP_GT_GT] = ACTIONS(414), - [anon_sym_LT_AMP] = ACTIONS(414), - [anon_sym_GT_AMP] = ACTIONS(414), - [anon_sym_LT_LT] = ACTIONS(414), - [anon_sym_LT_LT_DASH] = ACTIONS(414), - [anon_sym_DQUOTE] = ACTIONS(414), - [sym_raw_string] = ACTIONS(414), - [anon_sym_DOLLAR] = ACTIONS(414), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(414), - [anon_sym_BQUOTE] = ACTIONS(414), - [anon_sym_LT_LPAREN] = ACTIONS(414), - [anon_sym_GT_LPAREN] = ACTIONS(414), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(414), - [anon_sym_SEMI] = ACTIONS(414), - [anon_sym_LF] = ACTIONS(414), - [anon_sym_AMP] = ACTIONS(414), - }, - [84] = { - [sym_file_descriptor] = ACTIONS(416), - [sym_word] = ACTIONS(416), - [sym__concat] = ACTIONS(416), - [anon_sym_PIPE] = ACTIONS(418), - [anon_sym_RPAREN] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(418), - [anon_sym_PIPE_AMP] = ACTIONS(418), - [anon_sym_AMP_AMP] = ACTIONS(418), - [anon_sym_PIPE_PIPE] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(418), - [anon_sym_GT_GT] = ACTIONS(418), - [anon_sym_AMP_GT] = ACTIONS(418), - [anon_sym_AMP_GT_GT] = ACTIONS(418), - [anon_sym_LT_AMP] = ACTIONS(418), - [anon_sym_GT_AMP] = ACTIONS(418), - [anon_sym_LT_LT] = ACTIONS(418), - [anon_sym_LT_LT_DASH] = ACTIONS(418), - [anon_sym_DQUOTE] = ACTIONS(418), - [sym_raw_string] = ACTIONS(418), - [anon_sym_DOLLAR] = ACTIONS(418), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), - [anon_sym_BQUOTE] = ACTIONS(418), - [anon_sym_LT_LPAREN] = ACTIONS(418), - [anon_sym_GT_LPAREN] = ACTIONS(418), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(418), - [anon_sym_SEMI] = ACTIONS(418), - [anon_sym_LF] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - }, - [85] = { - [sym_file_descriptor] = ACTIONS(420), - [sym_word] = ACTIONS(420), - [sym__concat] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(422), - [anon_sym_SEMI_SEMI] = ACTIONS(422), - [anon_sym_PIPE_AMP] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(422), - [anon_sym_LT] = ACTIONS(422), - [anon_sym_GT] = ACTIONS(422), - [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_AMP_GT] = ACTIONS(422), - [anon_sym_AMP_GT_GT] = ACTIONS(422), - [anon_sym_LT_AMP] = ACTIONS(422), - [anon_sym_GT_AMP] = ACTIONS(422), - [anon_sym_LT_LT] = ACTIONS(422), - [anon_sym_LT_LT_DASH] = ACTIONS(422), - [anon_sym_DQUOTE] = ACTIONS(422), - [sym_raw_string] = ACTIONS(422), - [anon_sym_DOLLAR] = ACTIONS(422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(422), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(422), - [anon_sym_BQUOTE] = ACTIONS(422), - [anon_sym_LT_LPAREN] = ACTIONS(422), - [anon_sym_GT_LPAREN] = ACTIONS(422), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LF] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(422), - }, - [86] = { - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_COLON_QMARK] = ACTIONS(412), - [anon_sym_COLON_DASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(412), - [sym_comment] = ACTIONS(46), - }, - [87] = { - [sym_special_variable_name] = STATE(254), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(138), - [anon_sym_AT] = ACTIONS(138), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_COLON_QMARK] = ACTIONS(412), - [anon_sym_COLON_DASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(412), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(426), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [88] = { - [anon_sym_RBRACE] = ACTIONS(428), - [anon_sym_EQ] = ACTIONS(430), - [anon_sym_LBRACK] = ACTIONS(432), - [anon_sym_COLON] = ACTIONS(434), - [anon_sym_COLON_QMARK] = ACTIONS(430), - [anon_sym_COLON_DASH] = ACTIONS(430), - [anon_sym_PERCENT] = ACTIONS(430), - [anon_sym_SLASH] = ACTIONS(430), - [sym_comment] = ACTIONS(46), - }, - [89] = { - [anon_sym_RBRACE] = ACTIONS(436), - [anon_sym_EQ] = ACTIONS(438), - [anon_sym_LBRACK] = ACTIONS(440), - [anon_sym_COLON] = ACTIONS(442), - [anon_sym_COLON_QMARK] = ACTIONS(438), - [anon_sym_COLON_DASH] = ACTIONS(438), - [anon_sym_PERCENT] = ACTIONS(438), - [anon_sym_SLASH] = ACTIONS(438), - [sym_comment] = ACTIONS(46), - }, - [90] = { - [aux_sym_concatenation_repeat1] = STATE(262), - [sym_file_descriptor] = ACTIONS(54), - [sym_word] = ACTIONS(54), - [sym__concat] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(446), - [anon_sym_RPAREN] = ACTIONS(54), - [anon_sym_PIPE_AMP] = ACTIONS(54), - [anon_sym_AMP_AMP] = ACTIONS(54), - [anon_sym_PIPE_PIPE] = ACTIONS(54), - [anon_sym_LT] = ACTIONS(446), - [anon_sym_GT] = ACTIONS(446), - [anon_sym_GT_GT] = ACTIONS(54), - [anon_sym_AMP_GT] = ACTIONS(446), - [anon_sym_AMP_GT_GT] = ACTIONS(54), - [anon_sym_LT_AMP] = ACTIONS(54), - [anon_sym_GT_AMP] = ACTIONS(54), - [anon_sym_LT_LT] = ACTIONS(446), - [anon_sym_LT_LT_DASH] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(54), - [sym_raw_string] = ACTIONS(54), - [anon_sym_DOLLAR] = ACTIONS(446), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(54), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(54), - [anon_sym_BQUOTE] = ACTIONS(54), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(446), - }, - [91] = { - [sym__assignment] = STATE(264), - [anon_sym_EQ] = ACTIONS(448), - [anon_sym_PLUS_EQ] = ACTIONS(448), - [anon_sym_LBRACK] = ACTIONS(64), - [sym_comment] = ACTIONS(46), - }, - [92] = { - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(450), - }, - [93] = { - [sym__terminated_statement] = STATE(266), - [sym_for_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_function_definition] = STATE(38), - [sym_subshell] = STATE(38), - [sym_pipeline] = STATE(38), - [sym_list] = STATE(38), - [sym_command] = STATE(38), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(39), - [sym_declaration_command] = STATE(38), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), - }, - [94] = { - [sym__terminated_statement] = STATE(267), - [sym_for_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_function_definition] = STATE(38), - [sym_subshell] = STATE(38), - [sym_pipeline] = STATE(38), - [sym_list] = STATE(38), - [sym_command] = STATE(38), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(39), - [sym_declaration_command] = STATE(38), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), - }, - [95] = { - [sym_concatenation] = STATE(270), [sym_string] = STATE(268), [sym_simple_expansion] = STATE(268), [sym_expansion] = STATE(268), [sym_command_substitution] = STATE(268), [sym_process_substitution] = STATE(268), - [sym_word] = ACTIONS(452), - [anon_sym_DQUOTE] = ACTIONS(70), - [sym_raw_string] = ACTIONS(452), - [anon_sym_DOLLAR] = ACTIONS(72), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(74), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(76), - [anon_sym_BQUOTE] = ACTIONS(78), - [anon_sym_LT_LPAREN] = ACTIONS(80), - [anon_sym_GT_LPAREN] = ACTIONS(80), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(454), + [sym__special_characters] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(476), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(474), + }, + [83] = { + [aux_sym_concatenation_repeat1] = STATE(269), + [sym_file_descriptor] = ACTIONS(478), + [sym__concat] = ACTIONS(136), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_SEMI_SEMI] = ACTIONS(480), + [anon_sym_PIPE_AMP] = ACTIONS(480), + [anon_sym_AMP_AMP] = ACTIONS(480), + [anon_sym_PIPE_PIPE] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_GT_GT] = ACTIONS(480), + [anon_sym_AMP_GT] = ACTIONS(480), + [anon_sym_AMP_GT_GT] = ACTIONS(480), + [anon_sym_LT_AMP] = ACTIONS(480), + [anon_sym_GT_AMP] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(480), + [anon_sym_LT_LT_DASH] = ACTIONS(480), + [anon_sym_LT_LT_LT] = ACTIONS(480), + [sym__special_characters] = ACTIONS(480), + [anon_sym_DQUOTE] = ACTIONS(480), + [sym_raw_string] = ACTIONS(480), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(480), + [anon_sym_LT_LPAREN] = ACTIONS(480), + [anon_sym_GT_LPAREN] = ACTIONS(480), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(480), + [anon_sym_SEMI] = ACTIONS(480), + [anon_sym_LF] = ACTIONS(480), + [anon_sym_AMP] = ACTIONS(480), + }, + [84] = { + [sym_file_descriptor] = ACTIONS(482), + [sym__concat] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(484), + [anon_sym_SEMI_SEMI] = ACTIONS(484), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(484), + [anon_sym_PIPE_PIPE] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_GT_GT] = ACTIONS(484), + [anon_sym_AMP_GT] = ACTIONS(484), + [anon_sym_AMP_GT_GT] = ACTIONS(484), + [anon_sym_LT_AMP] = ACTIONS(484), + [anon_sym_GT_AMP] = ACTIONS(484), + [anon_sym_LT_LT] = ACTIONS(484), + [anon_sym_LT_LT_DASH] = ACTIONS(484), + [anon_sym_LT_LT_LT] = ACTIONS(484), + [sym__special_characters] = ACTIONS(484), + [anon_sym_DQUOTE] = ACTIONS(484), + [sym_raw_string] = ACTIONS(484), + [anon_sym_DOLLAR] = ACTIONS(484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(484), + [anon_sym_BQUOTE] = ACTIONS(484), + [anon_sym_LT_LPAREN] = ACTIONS(484), + [anon_sym_GT_LPAREN] = ACTIONS(484), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(484), + [anon_sym_SEMI] = ACTIONS(484), + [anon_sym_LF] = ACTIONS(484), + [anon_sym_AMP] = ACTIONS(484), + }, + [85] = { + [sym__concat] = ACTIONS(486), + [anon_sym_DQUOTE] = ACTIONS(488), + [sym__string_content] = ACTIONS(490), + [anon_sym_DOLLAR] = ACTIONS(488), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(488), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(488), + [anon_sym_BQUOTE] = ACTIONS(488), + [sym_comment] = ACTIONS(110), + }, + [86] = { + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(494), + [anon_sym_STAR] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_0] = ACTIONS(496), + [anon_sym__] = ACTIONS(496), + }, + [87] = { + [sym_subscript] = STATE(277), + [sym_variable_name] = ACTIONS(498), + [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_POUND] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(500), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(504), + [anon_sym_STAR] = ACTIONS(500), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_0] = ACTIONS(506), + [anon_sym__] = ACTIONS(506), + }, + [88] = { + [sym_for_statement] = STATE(278), + [sym_while_statement] = STATE(278), + [sym_if_statement] = STATE(278), + [sym_case_statement] = STATE(278), + [sym_function_definition] = STATE(278), + [sym_subshell] = STATE(278), + [sym_pipeline] = STATE(278), + [sym_list] = STATE(278), + [sym_command] = STATE(278), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(279), + [sym_declaration_command] = STATE(278), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [89] = { + [sym_for_statement] = STATE(280), + [sym_while_statement] = STATE(280), + [sym_if_statement] = STATE(280), + [sym_case_statement] = STATE(280), + [sym_function_definition] = STATE(280), + [sym_subshell] = STATE(280), + [sym_pipeline] = STATE(280), + [sym_list] = STATE(280), + [sym_command] = STATE(280), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(281), + [sym_declaration_command] = STATE(280), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), + }, + [90] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(508), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [91] = { + [sym_file_descriptor] = ACTIONS(510), + [sym__concat] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(512), + [anon_sym_SEMI_SEMI] = ACTIONS(512), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(512), + [anon_sym_PIPE_PIPE] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_AMP_GT] = ACTIONS(512), + [anon_sym_AMP_GT_GT] = ACTIONS(512), + [anon_sym_LT_AMP] = ACTIONS(512), + [anon_sym_GT_AMP] = ACTIONS(512), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_LT_LT_DASH] = ACTIONS(512), + [anon_sym_LT_LT_LT] = ACTIONS(512), + [sym__special_characters] = ACTIONS(512), + [anon_sym_DQUOTE] = ACTIONS(512), + [sym_raw_string] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(512), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(512), + [anon_sym_BQUOTE] = ACTIONS(512), + [anon_sym_LT_LPAREN] = ACTIONS(512), + [anon_sym_GT_LPAREN] = ACTIONS(512), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(512), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_LF] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(512), + }, + [92] = { + [sym_file_descriptor] = ACTIONS(514), + [sym__concat] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_SEMI_SEMI] = ACTIONS(516), + [anon_sym_PIPE_AMP] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(516), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_GT_GT] = ACTIONS(516), + [anon_sym_AMP_GT] = ACTIONS(516), + [anon_sym_AMP_GT_GT] = ACTIONS(516), + [anon_sym_LT_AMP] = ACTIONS(516), + [anon_sym_GT_AMP] = ACTIONS(516), + [anon_sym_LT_LT] = ACTIONS(516), + [anon_sym_LT_LT_DASH] = ACTIONS(516), + [anon_sym_LT_LT_LT] = ACTIONS(516), + [sym__special_characters] = ACTIONS(516), + [anon_sym_DQUOTE] = ACTIONS(516), + [sym_raw_string] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(516), + [anon_sym_BQUOTE] = ACTIONS(516), + [anon_sym_LT_LPAREN] = ACTIONS(516), + [anon_sym_GT_LPAREN] = ACTIONS(516), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_LF] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(516), + }, + [93] = { + [anon_sym_EQ] = ACTIONS(518), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [94] = { + [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(524), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_COLON_QMARK] = ACTIONS(524), + [anon_sym_COLON_DASH] = ACTIONS(524), + [anon_sym_PERCENT] = ACTIONS(524), + [anon_sym_SLASH] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [sym_comment] = ACTIONS(48), + }, + [95] = { + [sym_subscript] = STATE(291), + [sym_variable_name] = ACTIONS(528), + [anon_sym_DOLLAR] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(530), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_AT] = ACTIONS(530), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_0] = ACTIONS(534), + [anon_sym__] = ACTIONS(534), }, [96] = { - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(456), + [anon_sym_RBRACE] = ACTIONS(536), + [anon_sym_EQ] = ACTIONS(538), + [anon_sym_COLON] = ACTIONS(540), + [anon_sym_COLON_QMARK] = ACTIONS(538), + [anon_sym_COLON_DASH] = ACTIONS(538), + [anon_sym_PERCENT] = ACTIONS(538), + [anon_sym_SLASH] = ACTIONS(538), + [anon_sym_DASH] = ACTIONS(538), + [sym_comment] = ACTIONS(48), }, [97] = { - [sym__terminated_statement] = STATE(21), - [sym_for_statement] = STATE(272), - [sym_while_statement] = STATE(272), - [sym_if_statement] = STATE(272), - [sym_case_statement] = STATE(272), - [sym_function_definition] = STATE(272), - [sym_subshell] = STATE(272), - [sym_pipeline] = STATE(272), - [sym_list] = STATE(272), - [sym_command] = STATE(272), - [sym_command_name] = STATE(57), - [sym_variable_assignment] = STATE(273), - [sym_declaration_command] = STATE(272), - [sym_subscript] = STATE(59), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(51), - [sym_simple_expansion] = STATE(51), - [sym_expansion] = STATE(51), - [sym_command_substitution] = STATE(51), - [sym_process_substitution] = STATE(51), - [aux_sym_program_repeat1] = STATE(274), - [aux_sym_command_repeat1] = STATE(61), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(86), - [sym_variable_name] = ACTIONS(88), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(90), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(92), - [anon_sym_typeset] = ACTIONS(92), - [anon_sym_export] = ACTIONS(92), - [anon_sym_readonly] = ACTIONS(92), - [anon_sym_local] = ACTIONS(92), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(86), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(94), + [anon_sym_RBRACE] = ACTIONS(542), + [anon_sym_EQ] = ACTIONS(518), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_COLON_QMARK] = ACTIONS(518), + [anon_sym_COLON_DASH] = ACTIONS(518), + [anon_sym_PERCENT] = ACTIONS(518), + [anon_sym_SLASH] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [sym_comment] = ACTIONS(48), }, [98] = { - [sym_variable_assignment] = STATE(275), - [sym_subscript] = STATE(278), - [aux_sym_declaration_command_repeat1] = STATE(279), - [sym_word] = ACTIONS(458), - [sym_variable_name] = ACTIONS(460), - [anon_sym_PIPE] = ACTIONS(462), - [anon_sym_RPAREN] = ACTIONS(464), - [anon_sym_PIPE_AMP] = ACTIONS(464), - [anon_sym_AMP_AMP] = ACTIONS(464), - [anon_sym_PIPE_PIPE] = ACTIONS(464), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(466), + [sym__assignment] = STATE(296), + [anon_sym_EQ] = ACTIONS(546), + [anon_sym_PLUS_EQ] = ACTIONS(546), + [anon_sym_LBRACK] = ACTIONS(58), + [sym_comment] = ACTIONS(48), }, [99] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(281), - [anon_sym_DQUOTE] = ACTIONS(468), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(548), }, [100] = { - [sym_special_variable_name] = STATE(284), - [anon_sym_DOLLAR] = ACTIONS(470), - [anon_sym_POUND] = ACTIONS(470), - [anon_sym_AT] = ACTIONS(470), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(472), - [anon_sym_STAR] = ACTIONS(470), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_BANG] = ACTIONS(470), - [anon_sym_0] = ACTIONS(474), - [anon_sym__] = ACTIONS(474), + [sym__terminated_statement] = STATE(298), + [sym_for_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_subshell] = STATE(37), + [sym_pipeline] = STATE(37), + [sym_list] = STATE(37), + [sym_command] = STATE(37), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(38), + [sym_declaration_command] = STATE(37), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), }, [101] = { - [sym_special_variable_name] = STATE(287), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(476), - [anon_sym_AT] = ACTIONS(138), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), + [sym__terminated_statement] = STATE(299), + [sym_for_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_subshell] = STATE(37), + [sym_pipeline] = STATE(37), + [sym_list] = STATE(37), + [sym_command] = STATE(37), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(38), + [sym_declaration_command] = STATE(37), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), }, [102] = { - [sym_for_statement] = STATE(288), - [sym_while_statement] = STATE(288), - [sym_if_statement] = STATE(288), - [sym_case_statement] = STATE(288), - [sym_function_definition] = STATE(288), - [sym_subshell] = STATE(288), - [sym_pipeline] = STATE(288), - [sym_list] = STATE(288), - [sym_command] = STATE(288), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(289), - [sym_declaration_command] = STATE(288), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), + [sym_concatenation] = STATE(302), + [sym_string] = STATE(301), + [sym_simple_expansion] = STATE(301), + [sym_expansion] = STATE(301), + [sym_command_substitution] = STATE(301), + [sym_process_substitution] = STATE(301), + [sym__special_characters] = ACTIONS(550), + [anon_sym_DQUOTE] = ACTIONS(64), + [sym_raw_string] = ACTIONS(552), + [anon_sym_DOLLAR] = ACTIONS(68), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(70), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(72), + [anon_sym_BQUOTE] = ACTIONS(74), + [anon_sym_LT_LPAREN] = ACTIONS(76), + [anon_sym_GT_LPAREN] = ACTIONS(76), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(554), }, [103] = { - [sym_for_statement] = STATE(290), - [sym_while_statement] = STATE(290), - [sym_if_statement] = STATE(290), - [sym_case_statement] = STATE(290), - [sym_function_definition] = STATE(290), - [sym_subshell] = STATE(290), - [sym_pipeline] = STATE(290), - [sym_list] = STATE(290), - [sym_command] = STATE(290), - [sym_command_name] = STATE(118), - [sym_variable_assignment] = STATE(291), - [sym_declaration_command] = STATE(290), - [sym_subscript] = STATE(120), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_command_repeat1] = STATE(121), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(178), - [sym_variable_name] = ACTIONS(180), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(184), - [anon_sym_typeset] = ACTIONS(184), - [anon_sym_export] = ACTIONS(184), - [anon_sym_readonly] = ACTIONS(184), - [anon_sym_local] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(178), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(186), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(556), }, [104] = { - [sym_for_statement] = STATE(292), - [sym_while_statement] = STATE(292), - [sym_if_statement] = STATE(292), - [sym_case_statement] = STATE(292), - [sym_function_definition] = STATE(292), - [sym_subshell] = STATE(292), - [sym_pipeline] = STATE(292), - [sym_list] = STATE(292), - [sym_command] = STATE(292), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(293), - [sym_declaration_command] = STATE(292), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), + [sym__terminated_statement] = STATE(22), + [sym_for_statement] = STATE(304), + [sym_while_statement] = STATE(304), + [sym_if_statement] = STATE(304), + [sym_case_statement] = STATE(304), + [sym_function_definition] = STATE(304), + [sym_subshell] = STATE(304), + [sym_pipeline] = STATE(304), + [sym_list] = STATE(304), + [sym_command] = STATE(304), + [sym_command_name] = STATE(63), + [sym_variable_assignment] = STATE(305), + [sym_declaration_command] = STATE(304), + [sym_subscript] = STATE(65), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(55), + [sym_simple_expansion] = STATE(55), + [sym_expansion] = STATE(55), + [sym_command_substitution] = STATE(55), + [sym_process_substitution] = STATE(55), + [aux_sym_program_repeat1] = STATE(306), + [aux_sym_command_repeat1] = STATE(67), [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), + [sym_variable_name] = ACTIONS(82), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(84), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(86), + [anon_sym_typeset] = ACTIONS(86), + [anon_sym_export] = ACTIONS(86), + [anon_sym_readonly] = ACTIONS(86), + [anon_sym_local] = ACTIONS(86), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(88), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(92), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(104), }, [105] = { - [aux_sym_concatenation_repeat1] = STATE(295), - [sym_file_descriptor] = ACTIONS(188), - [sym_word] = ACTIONS(188), - [sym__concat] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(188), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_PIPE_AMP] = ACTIONS(188), - [anon_sym_AMP_AMP] = ACTIONS(188), - [anon_sym_PIPE_PIPE] = ACTIONS(188), - [anon_sym_LT] = ACTIONS(480), - [anon_sym_GT] = ACTIONS(480), - [anon_sym_GT_GT] = ACTIONS(188), - [anon_sym_AMP_GT] = ACTIONS(480), - [anon_sym_AMP_GT_GT] = ACTIONS(188), - [anon_sym_LT_AMP] = ACTIONS(188), - [anon_sym_GT_AMP] = ACTIONS(188), - [anon_sym_LT_LT] = ACTIONS(480), - [anon_sym_LT_LT_DASH] = ACTIONS(188), - [anon_sym_DQUOTE] = ACTIONS(188), - [sym_raw_string] = ACTIONS(188), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(188), - [anon_sym_BQUOTE] = ACTIONS(188), - [anon_sym_LT_LPAREN] = ACTIONS(188), - [anon_sym_GT_LPAREN] = ACTIONS(188), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(480), + [sym_variable_assignment] = STATE(309), + [sym_subscript] = STATE(310), + [aux_sym_declaration_command_repeat1] = STATE(311), + [sym_variable_name] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(560), + [anon_sym_RPAREN] = ACTIONS(562), + [anon_sym_PIPE_AMP] = ACTIONS(562), + [anon_sym_AMP_AMP] = ACTIONS(562), + [anon_sym_PIPE_PIPE] = ACTIONS(560), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(564), + [sym_word] = ACTIONS(566), }, [106] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(486), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), + [aux_sym_concatenation_repeat1] = STATE(313), + [sym_file_descriptor] = ACTIONS(134), + [sym__concat] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(570), + [anon_sym_RPAREN] = ACTIONS(134), + [anon_sym_PIPE_AMP] = ACTIONS(134), + [anon_sym_AMP_AMP] = ACTIONS(134), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(570), + [anon_sym_GT_GT] = ACTIONS(134), + [anon_sym_AMP_GT] = ACTIONS(570), + [anon_sym_AMP_GT_GT] = ACTIONS(134), + [anon_sym_LT_AMP] = ACTIONS(134), + [anon_sym_GT_AMP] = ACTIONS(134), + [anon_sym_LT_LT] = ACTIONS(570), + [anon_sym_LT_LT_DASH] = ACTIONS(134), + [anon_sym_LT_LT_LT] = ACTIONS(134), + [sym__special_characters] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(134), + [sym_raw_string] = ACTIONS(134), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(134), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), + [anon_sym_BQUOTE] = ACTIONS(134), + [anon_sym_LT_LPAREN] = ACTIONS(134), + [anon_sym_GT_LPAREN] = ACTIONS(134), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(138), }, [107] = { - [sym_file_redirect] = STATE(304), - [sym_heredoc_redirect] = STATE(304), - [sym_concatenation] = STATE(305), - [sym_string] = STATE(300), - [sym_simple_expansion] = STATE(300), - [sym_expansion] = STATE(300), - [sym_command_substitution] = STATE(300), - [sym_process_substitution] = STATE(300), - [aux_sym_for_statement_repeat1] = STATE(306), - [aux_sym_command_repeat2] = STATE(307), - [sym_file_descriptor] = ACTIONS(492), - [sym_word] = ACTIONS(494), - [anon_sym_PIPE] = ACTIONS(496), - [anon_sym_RPAREN] = ACTIONS(498), - [anon_sym_PIPE_AMP] = ACTIONS(498), - [anon_sym_AMP_AMP] = ACTIONS(498), - [anon_sym_PIPE_PIPE] = ACTIONS(498), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(500), - [anon_sym_GT_GT] = ACTIONS(502), - [anon_sym_AMP_GT] = ACTIONS(500), - [anon_sym_AMP_GT_GT] = ACTIONS(502), - [anon_sym_LT_AMP] = ACTIONS(502), - [anon_sym_GT_AMP] = ACTIONS(502), - [anon_sym_LT_LT] = ACTIONS(504), - [anon_sym_LT_LT_DASH] = ACTIONS(506), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(494), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(508), + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(315), + [anon_sym_DQUOTE] = ACTIONS(572), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), }, [108] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(486), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), + [aux_sym_concatenation_repeat1] = STATE(313), + [sym_file_descriptor] = ACTIONS(152), + [sym__concat] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_RPAREN] = ACTIONS(152), + [anon_sym_PIPE_AMP] = ACTIONS(152), + [anon_sym_AMP_AMP] = ACTIONS(152), + [anon_sym_PIPE_PIPE] = ACTIONS(574), + [anon_sym_LT] = ACTIONS(574), + [anon_sym_GT] = ACTIONS(574), + [anon_sym_GT_GT] = ACTIONS(152), + [anon_sym_AMP_GT] = ACTIONS(574), + [anon_sym_AMP_GT_GT] = ACTIONS(152), + [anon_sym_LT_AMP] = ACTIONS(152), + [anon_sym_GT_AMP] = ACTIONS(152), + [anon_sym_LT_LT] = ACTIONS(574), + [anon_sym_LT_LT_DASH] = ACTIONS(152), + [anon_sym_LT_LT_LT] = ACTIONS(152), + [sym__special_characters] = ACTIONS(574), + [anon_sym_DQUOTE] = ACTIONS(152), + [sym_raw_string] = ACTIONS(152), + [anon_sym_DOLLAR] = ACTIONS(574), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(152), + [anon_sym_LT_LPAREN] = ACTIONS(152), + [anon_sym_GT_LPAREN] = ACTIONS(152), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(154), }, [109] = { - [sym__assignment] = STATE(264), - [anon_sym_EQ] = ACTIONS(448), - [anon_sym_PLUS_EQ] = ACTIONS(448), - [sym_comment] = ACTIONS(46), + [anon_sym_DOLLAR] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(576), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(578), + [anon_sym_STAR] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_0] = ACTIONS(580), + [anon_sym__] = ACTIONS(580), }, [110] = { - [sym_file_descriptor] = ACTIONS(54), - [sym_word] = ACTIONS(54), - [anon_sym_PIPE] = ACTIONS(446), - [anon_sym_RPAREN] = ACTIONS(54), - [anon_sym_PIPE_AMP] = ACTIONS(54), - [anon_sym_AMP_AMP] = ACTIONS(54), - [anon_sym_PIPE_PIPE] = ACTIONS(54), - [anon_sym_LT] = ACTIONS(446), - [anon_sym_GT] = ACTIONS(446), - [anon_sym_GT_GT] = ACTIONS(54), - [anon_sym_AMP_GT] = ACTIONS(446), - [anon_sym_AMP_GT_GT] = ACTIONS(54), - [anon_sym_LT_AMP] = ACTIONS(54), - [anon_sym_GT_AMP] = ACTIONS(54), - [anon_sym_LT_LT] = ACTIONS(446), - [anon_sym_LT_LT_DASH] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(54), - [sym_raw_string] = ACTIONS(54), - [anon_sym_DOLLAR] = ACTIONS(446), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(54), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(54), - [anon_sym_BQUOTE] = ACTIONS(54), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(446), + [sym_subscript] = STATE(322), + [sym_variable_name] = ACTIONS(582), + [anon_sym_DOLLAR] = ACTIONS(584), + [anon_sym_POUND] = ACTIONS(586), + [anon_sym_DASH] = ACTIONS(584), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(588), + [anon_sym_STAR] = ACTIONS(584), + [anon_sym_AT] = ACTIONS(584), + [anon_sym_QMARK] = ACTIONS(584), + [anon_sym_0] = ACTIONS(590), + [anon_sym__] = ACTIONS(590), }, [111] = { - [sym_command_name] = STATE(309), - [sym_variable_assignment] = STATE(26), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(143), + [sym_for_statement] = STATE(323), + [sym_while_statement] = STATE(323), + [sym_if_statement] = STATE(323), + [sym_case_statement] = STATE(323), + [sym_function_definition] = STATE(323), + [sym_subshell] = STATE(323), + [sym_pipeline] = STATE(323), + [sym_list] = STATE(323), + [sym_command] = STATE(323), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(324), + [sym_declaration_command] = STATE(323), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(242), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(510), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, [112] = { - [aux_sym_concatenation_repeat1] = STATE(310), - [sym_file_descriptor] = ACTIONS(54), - [sym_word] = ACTIONS(54), - [sym__concat] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(446), - [anon_sym_PIPE_AMP] = ACTIONS(54), - [anon_sym_AMP_AMP] = ACTIONS(54), - [anon_sym_PIPE_PIPE] = ACTIONS(54), - [anon_sym_LT] = ACTIONS(446), - [anon_sym_GT] = ACTIONS(446), - [anon_sym_GT_GT] = ACTIONS(54), - [anon_sym_AMP_GT] = ACTIONS(446), - [anon_sym_AMP_GT_GT] = ACTIONS(54), - [anon_sym_LT_AMP] = ACTIONS(54), - [anon_sym_GT_AMP] = ACTIONS(54), - [anon_sym_LT_LT] = ACTIONS(446), - [anon_sym_LT_LT_DASH] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(54), - [sym_raw_string] = ACTIONS(54), - [anon_sym_DOLLAR] = ACTIONS(446), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(54), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(54), - [anon_sym_BQUOTE] = ACTIONS(54), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(446), + [sym_for_statement] = STATE(325), + [sym_while_statement] = STATE(325), + [sym_if_statement] = STATE(325), + [sym_case_statement] = STATE(325), + [sym_function_definition] = STATE(325), + [sym_subshell] = STATE(325), + [sym_pipeline] = STATE(325), + [sym_list] = STATE(325), + [sym_command] = STATE(325), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(326), + [sym_declaration_command] = STATE(325), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), }, [113] = { - [sym__assignment] = STATE(264), - [anon_sym_EQ] = ACTIONS(512), - [anon_sym_PLUS_EQ] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(64), - [sym_comment] = ACTIONS(46), + [sym_for_statement] = STATE(327), + [sym_while_statement] = STATE(327), + [sym_if_statement] = STATE(327), + [sym_case_statement] = STATE(327), + [sym_function_definition] = STATE(327), + [sym_subshell] = STATE(327), + [sym_pipeline] = STATE(327), + [sym_list] = STATE(327), + [sym_command] = STATE(327), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(328), + [sym_declaration_command] = STATE(327), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, [114] = { - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(514), + [aux_sym_concatenation_repeat1] = STATE(313), + [sym_file_descriptor] = ACTIONS(152), + [sym__concat] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_RPAREN] = ACTIONS(152), + [anon_sym_LPAREN] = ACTIONS(592), + [anon_sym_PIPE_AMP] = ACTIONS(152), + [anon_sym_AMP_AMP] = ACTIONS(152), + [anon_sym_PIPE_PIPE] = ACTIONS(574), + [anon_sym_LT] = ACTIONS(574), + [anon_sym_GT] = ACTIONS(574), + [anon_sym_GT_GT] = ACTIONS(152), + [anon_sym_AMP_GT] = ACTIONS(574), + [anon_sym_AMP_GT_GT] = ACTIONS(152), + [anon_sym_LT_AMP] = ACTIONS(152), + [anon_sym_GT_AMP] = ACTIONS(152), + [anon_sym_LT_LT] = ACTIONS(574), + [anon_sym_LT_LT_DASH] = ACTIONS(152), + [anon_sym_LT_LT_LT] = ACTIONS(152), + [sym__special_characters] = ACTIONS(574), + [anon_sym_DQUOTE] = ACTIONS(152), + [sym_raw_string] = ACTIONS(152), + [anon_sym_DOLLAR] = ACTIONS(574), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(152), + [anon_sym_LT_LPAREN] = ACTIONS(152), + [anon_sym_GT_LPAREN] = ACTIONS(152), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(154), }, [115] = { - [sym_variable_assignment] = STATE(275), - [sym_subscript] = STATE(314), - [aux_sym_declaration_command_repeat1] = STATE(315), - [sym_word] = ACTIONS(458), - [sym_variable_name] = ACTIONS(516), - [anon_sym_PIPE] = ACTIONS(462), - [anon_sym_PIPE_AMP] = ACTIONS(464), - [anon_sym_AMP_AMP] = ACTIONS(464), - [anon_sym_PIPE_PIPE] = ACTIONS(464), - [anon_sym_BQUOTE] = ACTIONS(464), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(466), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(596), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), }, [116] = { - [aux_sym_concatenation_repeat1] = STATE(317), - [sym_file_descriptor] = ACTIONS(188), - [sym_word] = ACTIONS(188), - [sym__concat] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(518), - [anon_sym_PIPE_AMP] = ACTIONS(188), - [anon_sym_AMP_AMP] = ACTIONS(188), - [anon_sym_PIPE_PIPE] = ACTIONS(188), - [anon_sym_LT] = ACTIONS(480), - [anon_sym_GT] = ACTIONS(480), - [anon_sym_GT_GT] = ACTIONS(188), - [anon_sym_AMP_GT] = ACTIONS(480), - [anon_sym_AMP_GT_GT] = ACTIONS(188), - [anon_sym_LT_AMP] = ACTIONS(188), - [anon_sym_GT_AMP] = ACTIONS(188), - [anon_sym_LT_LT] = ACTIONS(480), - [anon_sym_LT_LT_DASH] = ACTIONS(188), - [anon_sym_DQUOTE] = ACTIONS(188), - [sym_raw_string] = ACTIONS(188), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(188), - [anon_sym_BQUOTE] = ACTIONS(188), - [anon_sym_LT_LPAREN] = ACTIONS(188), - [anon_sym_GT_LPAREN] = ACTIONS(188), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(480), + [sym_file_redirect] = STATE(339), + [sym_heredoc_redirect] = STATE(339), + [sym_herestring_redirect] = STATE(339), + [sym_concatenation] = STATE(340), + [sym_string] = STATE(338), + [sym_simple_expansion] = STATE(338), + [sym_expansion] = STATE(338), + [sym_command_substitution] = STATE(338), + [sym_process_substitution] = STATE(338), + [aux_sym_for_statement_repeat1] = STATE(341), + [aux_sym_command_repeat2] = STATE(342), + [sym_file_descriptor] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(604), + [anon_sym_RPAREN] = ACTIONS(606), + [anon_sym_PIPE_AMP] = ACTIONS(606), + [anon_sym_AMP_AMP] = ACTIONS(606), + [anon_sym_PIPE_PIPE] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(608), + [anon_sym_GT] = ACTIONS(608), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_AMP_GT] = ACTIONS(608), + [anon_sym_AMP_GT_GT] = ACTIONS(610), + [anon_sym_LT_AMP] = ACTIONS(610), + [anon_sym_GT_AMP] = ACTIONS(610), + [anon_sym_LT_LT] = ACTIONS(612), + [anon_sym_LT_LT_DASH] = ACTIONS(614), + [anon_sym_LT_LT_LT] = ACTIONS(616), + [sym__special_characters] = ACTIONS(618), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(620), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(622), }, [117] = { - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_BQUOTE] = ACTIONS(486), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(596), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), }, [118] = { - [sym_file_redirect] = STATE(304), - [sym_heredoc_redirect] = STATE(304), - [sym_concatenation] = STATE(305), - [sym_string] = STATE(321), - [sym_simple_expansion] = STATE(321), - [sym_expansion] = STATE(321), - [sym_command_substitution] = STATE(321), - [sym_process_substitution] = STATE(321), - [aux_sym_for_statement_repeat1] = STATE(324), - [aux_sym_command_repeat2] = STATE(325), - [sym_file_descriptor] = ACTIONS(526), - [sym_word] = ACTIONS(528), - [anon_sym_PIPE] = ACTIONS(496), - [anon_sym_PIPE_AMP] = ACTIONS(498), - [anon_sym_AMP_AMP] = ACTIONS(498), - [anon_sym_PIPE_PIPE] = ACTIONS(498), - [anon_sym_LT] = ACTIONS(530), - [anon_sym_GT] = ACTIONS(530), - [anon_sym_GT_GT] = ACTIONS(532), - [anon_sym_AMP_GT] = ACTIONS(530), - [anon_sym_AMP_GT_GT] = ACTIONS(532), - [anon_sym_LT_AMP] = ACTIONS(532), - [anon_sym_GT_AMP] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(504), - [anon_sym_LT_LT_DASH] = ACTIONS(506), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(528), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(498), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(534), + [sym__assignment] = STATE(296), + [anon_sym_EQ] = ACTIONS(546), + [anon_sym_PLUS_EQ] = ACTIONS(546), + [sym_comment] = ACTIONS(48), }, [119] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(486), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), + [sym_file_descriptor] = ACTIONS(152), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_RPAREN] = ACTIONS(152), + [anon_sym_PIPE_AMP] = ACTIONS(152), + [anon_sym_AMP_AMP] = ACTIONS(152), + [anon_sym_PIPE_PIPE] = ACTIONS(574), + [anon_sym_LT] = ACTIONS(574), + [anon_sym_GT] = ACTIONS(574), + [anon_sym_GT_GT] = ACTIONS(152), + [anon_sym_AMP_GT] = ACTIONS(574), + [anon_sym_AMP_GT_GT] = ACTIONS(152), + [anon_sym_LT_AMP] = ACTIONS(152), + [anon_sym_GT_AMP] = ACTIONS(152), + [anon_sym_LT_LT] = ACTIONS(574), + [anon_sym_LT_LT_DASH] = ACTIONS(152), + [anon_sym_LT_LT_LT] = ACTIONS(152), + [sym__special_characters] = ACTIONS(574), + [anon_sym_DQUOTE] = ACTIONS(152), + [sym_raw_string] = ACTIONS(152), + [anon_sym_DOLLAR] = ACTIONS(574), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(152), + [anon_sym_LT_LPAREN] = ACTIONS(152), + [anon_sym_GT_LPAREN] = ACTIONS(152), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(154), }, [120] = { - [sym__assignment] = STATE(264), - [anon_sym_EQ] = ACTIONS(512), - [anon_sym_PLUS_EQ] = ACTIONS(512), - [sym_comment] = ACTIONS(46), + [sym_command_name] = STATE(343), + [sym_variable_assignment] = STATE(27), + [sym_subscript] = STATE(157), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(280), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(626), }, [121] = { - [sym_command_name] = STATE(327), - [sym_variable_assignment] = STATE(26), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_command_repeat1] = STATE(143), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(178), - [sym_variable_name] = ACTIONS(242), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(178), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(536), + [sym__assignment] = STATE(296), + [anon_sym_EQ] = ACTIONS(628), + [anon_sym_PLUS_EQ] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(58), + [sym_comment] = ACTIONS(48), }, [122] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(538), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(630), }, [123] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(538), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), + [sym_variable_assignment] = STATE(309), + [sym_subscript] = STATE(347), + [aux_sym_declaration_command_repeat1] = STATE(348), + [sym_variable_name] = ACTIONS(632), + [anon_sym_PIPE] = ACTIONS(560), + [anon_sym_PIPE_AMP] = ACTIONS(562), + [anon_sym_AMP_AMP] = ACTIONS(562), + [anon_sym_PIPE_PIPE] = ACTIONS(560), + [anon_sym_BQUOTE] = ACTIONS(562), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(564), + [sym_word] = ACTIONS(566), }, [124] = { - [anon_sym_RPAREN] = ACTIONS(540), - [sym_comment] = ACTIONS(46), + [aux_sym_concatenation_repeat1] = STATE(350), + [sym_file_descriptor] = ACTIONS(134), + [sym__concat] = ACTIONS(634), + [anon_sym_PIPE] = ACTIONS(570), + [anon_sym_PIPE_AMP] = ACTIONS(134), + [anon_sym_AMP_AMP] = ACTIONS(134), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_LT] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(570), + [anon_sym_GT_GT] = ACTIONS(134), + [anon_sym_AMP_GT] = ACTIONS(570), + [anon_sym_AMP_GT_GT] = ACTIONS(134), + [anon_sym_LT_AMP] = ACTIONS(134), + [anon_sym_GT_AMP] = ACTIONS(134), + [anon_sym_LT_LT] = ACTIONS(570), + [anon_sym_LT_LT_DASH] = ACTIONS(134), + [anon_sym_LT_LT_LT] = ACTIONS(134), + [sym__special_characters] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(134), + [sym_raw_string] = ACTIONS(134), + [anon_sym_DOLLAR] = ACTIONS(570), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(134), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), + [anon_sym_BQUOTE] = ACTIONS(134), + [anon_sym_LT_LPAREN] = ACTIONS(134), + [anon_sym_GT_LPAREN] = ACTIONS(134), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(138), }, [125] = { - [aux_sym_concatenation_repeat1] = STATE(149), - [sym_file_descriptor] = ACTIONS(542), - [sym_word] = ACTIONS(542), - [sym__concat] = ACTIONS(56), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_SEMI_SEMI] = ACTIONS(544), - [anon_sym_PIPE_AMP] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_AMP_GT] = ACTIONS(544), - [anon_sym_AMP_GT_GT] = ACTIONS(544), - [anon_sym_LT_AMP] = ACTIONS(544), - [anon_sym_GT_AMP] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_LT_LT_DASH] = ACTIONS(544), - [anon_sym_DQUOTE] = ACTIONS(544), - [sym_raw_string] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(544), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(544), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(544), - [anon_sym_BQUOTE] = ACTIONS(544), - [anon_sym_LT_LPAREN] = ACTIONS(544), - [anon_sym_GT_LPAREN] = ACTIONS(544), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_LF] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(544), + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(352), + [anon_sym_DQUOTE] = ACTIONS(636), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), }, [126] = { - [sym_for_statement] = STATE(330), - [sym_while_statement] = STATE(330), - [sym_if_statement] = STATE(330), - [sym_case_statement] = STATE(330), - [sym_function_definition] = STATE(330), - [sym_subshell] = STATE(330), - [sym_pipeline] = STATE(330), - [sym_list] = STATE(330), - [sym_command] = STATE(330), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(331), - [sym_declaration_command] = STATE(330), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), + [aux_sym_concatenation_repeat1] = STATE(350), + [sym_file_descriptor] = ACTIONS(152), + [sym__concat] = ACTIONS(634), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_PIPE_AMP] = ACTIONS(152), + [anon_sym_AMP_AMP] = ACTIONS(152), + [anon_sym_PIPE_PIPE] = ACTIONS(574), + [anon_sym_LT] = ACTIONS(574), + [anon_sym_GT] = ACTIONS(574), + [anon_sym_GT_GT] = ACTIONS(152), + [anon_sym_AMP_GT] = ACTIONS(574), + [anon_sym_AMP_GT_GT] = ACTIONS(152), + [anon_sym_LT_AMP] = ACTIONS(152), + [anon_sym_GT_AMP] = ACTIONS(152), + [anon_sym_LT_LT] = ACTIONS(574), + [anon_sym_LT_LT_DASH] = ACTIONS(152), + [anon_sym_LT_LT_LT] = ACTIONS(152), + [sym__special_characters] = ACTIONS(574), + [anon_sym_DQUOTE] = ACTIONS(152), + [sym_raw_string] = ACTIONS(152), + [anon_sym_DOLLAR] = ACTIONS(574), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(152), + [anon_sym_LT_LPAREN] = ACTIONS(152), + [anon_sym_GT_LPAREN] = ACTIONS(152), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(154), }, [127] = { - [sym_file_descriptor] = ACTIONS(546), - [sym_word] = ACTIONS(546), - [sym_variable_name] = ACTIONS(546), - [ts_builtin_sym_end] = ACTIONS(546), - [anon_sym_for] = ACTIONS(548), - [anon_sym_while] = ACTIONS(548), - [anon_sym_if] = ACTIONS(548), - [anon_sym_case] = ACTIONS(548), - [anon_sym_function] = ACTIONS(548), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RBRACE] = ACTIONS(546), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_typeset] = ACTIONS(548), - [anon_sym_export] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(548), - [anon_sym_local] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_GT] = ACTIONS(548), - [anon_sym_GT_GT] = ACTIONS(546), - [anon_sym_AMP_GT] = ACTIONS(548), - [anon_sym_AMP_GT_GT] = ACTIONS(546), - [anon_sym_LT_AMP] = ACTIONS(546), - [anon_sym_GT_AMP] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(546), - [sym_raw_string] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(546), - [anon_sym_BQUOTE] = ACTIONS(546), - [anon_sym_LT_LPAREN] = ACTIONS(546), - [anon_sym_GT_LPAREN] = ACTIONS(546), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(550), + [anon_sym_DOLLAR] = ACTIONS(638), + [anon_sym_DASH] = ACTIONS(638), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(640), + [anon_sym_STAR] = ACTIONS(638), + [anon_sym_AT] = ACTIONS(638), + [anon_sym_QMARK] = ACTIONS(638), + [anon_sym_0] = ACTIONS(642), + [anon_sym__] = ACTIONS(642), }, [128] = { - [sym_for_statement] = STATE(332), - [sym_while_statement] = STATE(332), - [sym_if_statement] = STATE(332), - [sym_case_statement] = STATE(332), - [sym_function_definition] = STATE(332), - [sym_subshell] = STATE(332), - [sym_pipeline] = STATE(332), - [sym_list] = STATE(332), - [sym_command] = STATE(332), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(333), - [sym_declaration_command] = STATE(332), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), + [sym_subscript] = STATE(359), + [sym_variable_name] = ACTIONS(644), + [anon_sym_DOLLAR] = ACTIONS(646), + [anon_sym_POUND] = ACTIONS(648), + [anon_sym_DASH] = ACTIONS(646), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym_QMARK] = ACTIONS(646), + [anon_sym_0] = ACTIONS(652), + [anon_sym__] = ACTIONS(652), }, [129] = { - [anon_sym_LT] = ACTIONS(552), - [anon_sym_GT] = ACTIONS(552), - [anon_sym_GT_GT] = ACTIONS(554), - [anon_sym_AMP_GT] = ACTIONS(552), - [anon_sym_AMP_GT_GT] = ACTIONS(554), - [anon_sym_LT_AMP] = ACTIONS(554), - [anon_sym_GT_AMP] = ACTIONS(554), - [sym_comment] = ACTIONS(46), + [sym_for_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_function_definition] = STATE(360), + [sym_subshell] = STATE(360), + [sym_pipeline] = STATE(360), + [sym_list] = STATE(360), + [sym_command] = STATE(360), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(361), + [sym_declaration_command] = STATE(360), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, [130] = { - [aux_sym_concatenation_repeat1] = STATE(32), - [sym_file_descriptor] = ACTIONS(556), - [sym_word] = ACTIONS(556), - [sym__concat] = ACTIONS(56), - [anon_sym_PIPE] = ACTIONS(558), - [anon_sym_SEMI_SEMI] = ACTIONS(558), - [anon_sym_PIPE_AMP] = ACTIONS(558), - [anon_sym_AMP_AMP] = ACTIONS(558), - [anon_sym_PIPE_PIPE] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(558), - [anon_sym_GT] = ACTIONS(558), - [anon_sym_GT_GT] = ACTIONS(558), - [anon_sym_AMP_GT] = ACTIONS(558), - [anon_sym_AMP_GT_GT] = ACTIONS(558), - [anon_sym_LT_AMP] = ACTIONS(558), - [anon_sym_GT_AMP] = ACTIONS(558), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_LT_LT_DASH] = ACTIONS(558), - [anon_sym_DQUOTE] = ACTIONS(558), - [sym_raw_string] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(558), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(558), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(558), - [anon_sym_BQUOTE] = ACTIONS(558), - [anon_sym_LT_LPAREN] = ACTIONS(558), - [anon_sym_GT_LPAREN] = ACTIONS(558), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LF] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(558), + [sym_for_statement] = STATE(362), + [sym_while_statement] = STATE(362), + [sym_if_statement] = STATE(362), + [sym_case_statement] = STATE(362), + [sym_function_definition] = STATE(362), + [sym_subshell] = STATE(362), + [sym_pipeline] = STATE(362), + [sym_list] = STATE(362), + [sym_command] = STATE(362), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(363), + [sym_declaration_command] = STATE(362), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), }, [131] = { - [sym_concatenation] = STATE(343), - [sym_string] = STATE(335), - [sym_simple_expansion] = STATE(335), - [sym_expansion] = STATE(335), - [sym_command_substitution] = STATE(335), - [sym_process_substitution] = STATE(335), - [sym_word] = ACTIONS(560), - [anon_sym_DQUOTE] = ACTIONS(562), - [sym_raw_string] = ACTIONS(560), - [anon_sym_DOLLAR] = ACTIONS(564), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(566), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(568), - [anon_sym_BQUOTE] = ACTIONS(570), - [anon_sym_LT_LPAREN] = ACTIONS(572), - [anon_sym_GT_LPAREN] = ACTIONS(572), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(574), + [sym_for_statement] = STATE(364), + [sym_while_statement] = STATE(364), + [sym_if_statement] = STATE(364), + [sym_case_statement] = STATE(364), + [sym_function_definition] = STATE(364), + [sym_subshell] = STATE(364), + [sym_pipeline] = STATE(364), + [sym_list] = STATE(364), + [sym_command] = STATE(364), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(365), + [sym_declaration_command] = STATE(364), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, [132] = { - [sym_heredoc] = STATE(346), - [sym__simple_heredoc] = ACTIONS(576), - [sym__heredoc_beginning] = ACTIONS(578), - [sym_comment] = ACTIONS(46), + [aux_sym_concatenation_repeat1] = STATE(350), + [sym_file_descriptor] = ACTIONS(152), + [sym__concat] = ACTIONS(634), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_PIPE_AMP] = ACTIONS(152), + [anon_sym_AMP_AMP] = ACTIONS(152), + [anon_sym_PIPE_PIPE] = ACTIONS(574), + [anon_sym_LT] = ACTIONS(574), + [anon_sym_GT] = ACTIONS(574), + [anon_sym_GT_GT] = ACTIONS(152), + [anon_sym_AMP_GT] = ACTIONS(574), + [anon_sym_AMP_GT_GT] = ACTIONS(152), + [anon_sym_LT_AMP] = ACTIONS(152), + [anon_sym_GT_AMP] = ACTIONS(152), + [anon_sym_LT_LT] = ACTIONS(574), + [anon_sym_LT_LT_DASH] = ACTIONS(152), + [anon_sym_LT_LT_LT] = ACTIONS(152), + [sym__special_characters] = ACTIONS(574), + [anon_sym_DQUOTE] = ACTIONS(152), + [sym_raw_string] = ACTIONS(152), + [anon_sym_DOLLAR] = ACTIONS(574), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(152), + [anon_sym_BQUOTE] = ACTIONS(152), + [anon_sym_LT_LPAREN] = ACTIONS(152), + [anon_sym_GT_LPAREN] = ACTIONS(152), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(154), }, [133] = { - [aux_sym_concatenation_repeat1] = STATE(125), - [sym_file_descriptor] = ACTIONS(580), - [sym_word] = ACTIONS(580), - [sym__concat] = ACTIONS(56), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_SEMI_SEMI] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(582), - [anon_sym_AMP_AMP] = ACTIONS(582), - [anon_sym_PIPE_PIPE] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(582), - [anon_sym_GT_GT] = ACTIONS(582), - [anon_sym_AMP_GT] = ACTIONS(582), - [anon_sym_AMP_GT_GT] = ACTIONS(582), - [anon_sym_LT_AMP] = ACTIONS(582), - [anon_sym_GT_AMP] = ACTIONS(582), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_LT_LT_DASH] = ACTIONS(582), - [anon_sym_DQUOTE] = ACTIONS(582), - [sym_raw_string] = ACTIONS(582), - [anon_sym_DOLLAR] = ACTIONS(582), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(582), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(582), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_LF] = ACTIONS(582), - [anon_sym_AMP] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(596), + [sym_comment] = ACTIONS(48), }, [134] = { - [sym_file_descriptor] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_RPAREN] = ACTIONS(586), - [anon_sym_SEMI_SEMI] = ACTIONS(586), - [anon_sym_PIPE_AMP] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(586), - [anon_sym_PIPE_PIPE] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_AMP_GT] = ACTIONS(586), - [anon_sym_AMP_GT_GT] = ACTIONS(586), - [anon_sym_LT_AMP] = ACTIONS(586), - [anon_sym_GT_AMP] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_LT_LT_DASH] = ACTIONS(586), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(586), - [anon_sym_LF] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), + [sym_file_redirect] = STATE(339), + [sym_heredoc_redirect] = STATE(339), + [sym_herestring_redirect] = STATE(339), + [sym_concatenation] = STATE(340), + [sym_string] = STATE(373), + [sym_simple_expansion] = STATE(373), + [sym_expansion] = STATE(373), + [sym_command_substitution] = STATE(373), + [sym_process_substitution] = STATE(373), + [aux_sym_for_statement_repeat1] = STATE(374), + [aux_sym_command_repeat2] = STATE(375), + [sym_file_descriptor] = ACTIONS(662), + [anon_sym_PIPE] = ACTIONS(604), + [anon_sym_PIPE_AMP] = ACTIONS(606), + [anon_sym_AMP_AMP] = ACTIONS(606), + [anon_sym_PIPE_PIPE] = ACTIONS(604), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_GT] = ACTIONS(664), + [anon_sym_GT_GT] = ACTIONS(666), + [anon_sym_AMP_GT] = ACTIONS(664), + [anon_sym_AMP_GT_GT] = ACTIONS(666), + [anon_sym_LT_AMP] = ACTIONS(666), + [anon_sym_GT_AMP] = ACTIONS(666), + [anon_sym_LT_LT] = ACTIONS(612), + [anon_sym_LT_LT_DASH] = ACTIONS(614), + [anon_sym_LT_LT_LT] = ACTIONS(668), + [sym__special_characters] = ACTIONS(670), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(672), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(606), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(674), }, [135] = { - [sym_file_descriptor] = ACTIONS(556), - [sym_word] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(558), - [anon_sym_RPAREN] = ACTIONS(558), - [anon_sym_SEMI_SEMI] = ACTIONS(558), - [anon_sym_PIPE_AMP] = ACTIONS(558), - [anon_sym_AMP_AMP] = ACTIONS(558), - [anon_sym_PIPE_PIPE] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(558), - [anon_sym_GT] = ACTIONS(558), - [anon_sym_GT_GT] = ACTIONS(558), - [anon_sym_AMP_GT] = ACTIONS(558), - [anon_sym_AMP_GT_GT] = ACTIONS(558), - [anon_sym_LT_AMP] = ACTIONS(558), - [anon_sym_GT_AMP] = ACTIONS(558), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_LT_LT_DASH] = ACTIONS(558), - [anon_sym_DQUOTE] = ACTIONS(558), - [sym_raw_string] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(558), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(558), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(558), - [anon_sym_BQUOTE] = ACTIONS(558), - [anon_sym_LT_LPAREN] = ACTIONS(558), - [anon_sym_GT_LPAREN] = ACTIONS(558), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LF] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(558), + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(596), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), }, [136] = { - [sym_file_redirect] = STATE(134), - [sym_heredoc_redirect] = STATE(134), - [sym_concatenation] = STATE(135), - [sym_string] = STATE(130), - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [sym_process_substitution] = STATE(130), - [aux_sym_for_statement_repeat1] = STATE(347), - [aux_sym_command_repeat2] = STATE(348), - [sym_file_descriptor] = ACTIONS(208), - [sym_word] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(588), - [anon_sym_SEMI_SEMI] = ACTIONS(588), - [anon_sym_PIPE_AMP] = ACTIONS(588), - [anon_sym_AMP_AMP] = ACTIONS(588), - [anon_sym_PIPE_PIPE] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [anon_sym_GT_GT] = ACTIONS(214), - [anon_sym_AMP_GT] = ACTIONS(214), - [anon_sym_AMP_GT_GT] = ACTIONS(214), - [anon_sym_LT_AMP] = ACTIONS(214), - [anon_sym_GT_AMP] = ACTIONS(214), - [anon_sym_LT_LT] = ACTIONS(216), - [anon_sym_LT_LT_DASH] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(218), - [sym_raw_string] = ACTIONS(220), - [anon_sym_DOLLAR] = ACTIONS(222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(226), - [anon_sym_BQUOTE] = ACTIONS(228), - [anon_sym_LT_LPAREN] = ACTIONS(230), - [anon_sym_GT_LPAREN] = ACTIONS(230), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(232), - [anon_sym_SEMI] = ACTIONS(588), - [anon_sym_LF] = ACTIONS(588), - [anon_sym_AMP] = ACTIONS(588), + [sym__assignment] = STATE(296), + [anon_sym_EQ] = ACTIONS(628), + [anon_sym_PLUS_EQ] = ACTIONS(628), + [sym_comment] = ACTIONS(48), }, [137] = { - [sym_file_redirect] = STATE(134), - [sym_heredoc_redirect] = STATE(134), - [aux_sym_command_repeat2] = STATE(349), - [sym_file_descriptor] = ACTIONS(208), - [anon_sym_PIPE] = ACTIONS(588), - [anon_sym_SEMI_SEMI] = ACTIONS(588), - [anon_sym_PIPE_AMP] = ACTIONS(588), - [anon_sym_AMP_AMP] = ACTIONS(588), - [anon_sym_PIPE_PIPE] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [anon_sym_GT_GT] = ACTIONS(214), - [anon_sym_AMP_GT] = ACTIONS(214), - [anon_sym_AMP_GT_GT] = ACTIONS(214), - [anon_sym_LT_AMP] = ACTIONS(214), - [anon_sym_GT_AMP] = ACTIONS(214), - [anon_sym_LT_LT] = ACTIONS(216), - [anon_sym_LT_LT_DASH] = ACTIONS(216), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(588), - [anon_sym_LF] = ACTIONS(588), - [anon_sym_AMP] = ACTIONS(588), + [sym_command_name] = STATE(376), + [sym_variable_assignment] = STATE(27), + [sym_subscript] = STATE(157), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(280), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(678), }, [138] = { - [sym__terminated_statement] = STATE(21), - [sym_for_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_function_definition] = STATE(22), - [sym_subshell] = STATE(22), - [sym_pipeline] = STATE(22), - [sym_list] = STATE(22), - [sym_command] = STATE(22), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(24), - [sym_declaration_command] = STATE(22), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(138), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(590), - [sym_word] = ACTIONS(593), - [sym_variable_name] = ACTIONS(596), - [ts_builtin_sym_end] = ACTIONS(599), - [anon_sym_for] = ACTIONS(601), - [anon_sym_while] = ACTIONS(604), - [anon_sym_if] = ACTIONS(607), - [anon_sym_case] = ACTIONS(610), - [anon_sym_function] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_declare] = ACTIONS(619), - [anon_sym_typeset] = ACTIONS(619), - [anon_sym_export] = ACTIONS(619), - [anon_sym_readonly] = ACTIONS(619), - [anon_sym_local] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(622), - [anon_sym_GT_GT] = ACTIONS(625), - [anon_sym_AMP_GT] = ACTIONS(622), - [anon_sym_AMP_GT_GT] = ACTIONS(625), - [anon_sym_LT_AMP] = ACTIONS(625), - [anon_sym_GT_AMP] = ACTIONS(625), - [anon_sym_DQUOTE] = ACTIONS(628), - [sym_raw_string] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(634), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(637), - [anon_sym_BQUOTE] = ACTIONS(640), - [anon_sym_LT_LPAREN] = ACTIONS(643), - [anon_sym_GT_LPAREN] = ACTIONS(643), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(646), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(680), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), }, [139] = { - [sym__assignment] = STATE(351), - [anon_sym_EQ] = ACTIONS(649), - [anon_sym_PLUS_EQ] = ACTIONS(649), - [anon_sym_LBRACK] = ACTIONS(64), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(680), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), }, [140] = { - [aux_sym_concatenation_repeat1] = STATE(125), - [sym_file_descriptor] = ACTIONS(188), - [sym_word] = ACTIONS(188), - [sym__concat] = ACTIONS(56), - [anon_sym_PIPE] = ACTIONS(190), - [anon_sym_SEMI_SEMI] = ACTIONS(190), - [anon_sym_PIPE_AMP] = ACTIONS(190), - [anon_sym_AMP_AMP] = ACTIONS(190), - [anon_sym_PIPE_PIPE] = ACTIONS(190), - [anon_sym_LT] = ACTIONS(190), - [anon_sym_GT] = ACTIONS(190), - [anon_sym_GT_GT] = ACTIONS(190), - [anon_sym_AMP_GT] = ACTIONS(190), - [anon_sym_AMP_GT_GT] = ACTIONS(190), - [anon_sym_LT_AMP] = ACTIONS(190), - [anon_sym_GT_AMP] = ACTIONS(190), - [anon_sym_LT_LT] = ACTIONS(190), - [anon_sym_LT_LT_DASH] = ACTIONS(190), - [anon_sym_DQUOTE] = ACTIONS(190), - [sym_raw_string] = ACTIONS(190), - [anon_sym_DOLLAR] = ACTIONS(190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(190), - [anon_sym_LT_LPAREN] = ACTIONS(190), - [anon_sym_GT_LPAREN] = ACTIONS(190), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(190), - [anon_sym_SEMI] = ACTIONS(190), - [anon_sym_LF] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(190), + [anon_sym_RPAREN] = ACTIONS(682), + [sym_comment] = ACTIONS(48), }, [141] = { - [sym_file_redirect] = STATE(134), - [sym_heredoc_redirect] = STATE(134), - [sym_concatenation] = STATE(135), - [sym_string] = STATE(130), - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [sym_process_substitution] = STATE(130), - [aux_sym_for_statement_repeat1] = STATE(352), - [aux_sym_command_repeat2] = STATE(348), - [sym_file_descriptor] = ACTIONS(208), - [sym_word] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(588), - [anon_sym_SEMI_SEMI] = ACTIONS(588), - [anon_sym_PIPE_AMP] = ACTIONS(588), - [anon_sym_AMP_AMP] = ACTIONS(588), - [anon_sym_PIPE_PIPE] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [anon_sym_GT_GT] = ACTIONS(214), - [anon_sym_AMP_GT] = ACTIONS(214), - [anon_sym_AMP_GT_GT] = ACTIONS(214), - [anon_sym_LT_AMP] = ACTIONS(214), - [anon_sym_GT_AMP] = ACTIONS(214), - [anon_sym_LT_LT] = ACTIONS(216), - [anon_sym_LT_LT_DASH] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(218), - [sym_raw_string] = ACTIONS(220), - [anon_sym_DOLLAR] = ACTIONS(222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(226), - [anon_sym_BQUOTE] = ACTIONS(228), - [anon_sym_LT_LPAREN] = ACTIONS(230), - [anon_sym_GT_LPAREN] = ACTIONS(230), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(232), - [anon_sym_SEMI] = ACTIONS(588), - [anon_sym_LF] = ACTIONS(588), - [anon_sym_AMP] = ACTIONS(588), + [sym_for_statement] = STATE(379), + [sym_while_statement] = STATE(379), + [sym_if_statement] = STATE(379), + [sym_case_statement] = STATE(379), + [sym_function_definition] = STATE(379), + [sym_subshell] = STATE(379), + [sym_pipeline] = STATE(379), + [sym_list] = STATE(379), + [sym_command] = STATE(379), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(380), + [sym_declaration_command] = STATE(379), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), }, [142] = { - [sym__assignment] = STATE(351), - [anon_sym_EQ] = ACTIONS(649), - [anon_sym_PLUS_EQ] = ACTIONS(649), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(684), + [ts_builtin_sym_end] = ACTIONS(684), + [anon_sym_for] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_case] = ACTIONS(686), + [anon_sym_SEMI_SEMI] = ACTIONS(684), + [anon_sym_function] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_declare] = ACTIONS(686), + [anon_sym_typeset] = ACTIONS(686), + [anon_sym_export] = ACTIONS(686), + [anon_sym_readonly] = ACTIONS(686), + [anon_sym_local] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(684), + [anon_sym_AMP_GT] = ACTIONS(686), + [anon_sym_AMP_GT_GT] = ACTIONS(684), + [anon_sym_LT_AMP] = ACTIONS(684), + [anon_sym_GT_AMP] = ACTIONS(684), + [sym__special_characters] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(684), + [sym_raw_string] = ACTIONS(684), + [anon_sym_DOLLAR] = ACTIONS(686), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(684), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(684), + [anon_sym_BQUOTE] = ACTIONS(684), + [anon_sym_LT_LPAREN] = ACTIONS(684), + [anon_sym_GT_LPAREN] = ACTIONS(684), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(688), }, [143] = { - [sym_variable_assignment] = STATE(26), - [sym_subscript] = STATE(142), - [sym_file_redirect] = STATE(26), - [aux_sym_command_repeat1] = STATE(143), - [sym_file_descriptor] = ACTIONS(651), - [sym_word] = ACTIONS(654), - [sym_variable_name] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(659), - [anon_sym_GT] = ACTIONS(659), - [anon_sym_GT_GT] = ACTIONS(662), - [anon_sym_AMP_GT] = ACTIONS(659), - [anon_sym_AMP_GT_GT] = ACTIONS(662), - [anon_sym_LT_AMP] = ACTIONS(662), - [anon_sym_GT_AMP] = ACTIONS(662), - [anon_sym_DQUOTE] = ACTIONS(654), - [sym_raw_string] = ACTIONS(654), - [anon_sym_DOLLAR] = ACTIONS(665), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(654), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(654), - [anon_sym_BQUOTE] = ACTIONS(654), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_GT_LPAREN] = ACTIONS(654), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(665), + [sym_for_statement] = STATE(381), + [sym_while_statement] = STATE(381), + [sym_if_statement] = STATE(381), + [sym_case_statement] = STATE(381), + [sym_function_definition] = STATE(381), + [sym_subshell] = STATE(381), + [sym_pipeline] = STATE(381), + [sym_list] = STATE(381), + [sym_command] = STATE(381), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(382), + [sym_declaration_command] = STATE(381), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), }, [144] = { - [aux_sym_concatenation_repeat1] = STATE(225), - [sym_file_descriptor] = ACTIONS(667), - [sym_word] = ACTIONS(667), - [sym__concat] = ACTIONS(374), - [sym_variable_name] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(667), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(667), - [anon_sym_LT_AMP] = ACTIONS(667), - [anon_sym_GT_AMP] = ACTIONS(667), - [anon_sym_DQUOTE] = ACTIONS(667), - [sym_raw_string] = ACTIONS(667), - [anon_sym_DOLLAR] = ACTIONS(669), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(667), - [anon_sym_BQUOTE] = ACTIONS(667), - [anon_sym_LT_LPAREN] = ACTIONS(667), - [anon_sym_GT_LPAREN] = ACTIONS(667), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(692), + [anon_sym_LT_AMP] = ACTIONS(692), + [anon_sym_GT_AMP] = ACTIONS(692), + [sym_comment] = ACTIONS(48), }, [145] = { - [aux_sym_concatenation_repeat1] = STATE(240), - [sym_file_descriptor] = ACTIONS(671), - [sym_word] = ACTIONS(671), - [sym__concat] = ACTIONS(374), - [sym_variable_name] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(671), - [anon_sym_GT_AMP] = ACTIONS(671), - [anon_sym_DQUOTE] = ACTIONS(671), - [sym_raw_string] = ACTIONS(671), - [anon_sym_DOLLAR] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(671), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(671), - [anon_sym_BQUOTE] = ACTIONS(671), - [anon_sym_LT_LPAREN] = ACTIONS(671), - [anon_sym_GT_LPAREN] = ACTIONS(671), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(673), + [sym_concatenation] = STATE(392), + [sym_string] = STATE(386), + [sym_simple_expansion] = STATE(386), + [sym_expansion] = STATE(386), + [sym_command_substitution] = STATE(386), + [sym_process_substitution] = STATE(386), + [sym__special_characters] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(696), + [sym_raw_string] = ACTIONS(698), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(704), + [anon_sym_BQUOTE] = ACTIONS(706), + [anon_sym_LT_LPAREN] = ACTIONS(708), + [anon_sym_GT_LPAREN] = ACTIONS(708), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(710), }, [146] = { - [sym_file_descriptor] = ACTIONS(667), - [sym_word] = ACTIONS(667), - [sym_variable_name] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(667), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(667), - [anon_sym_LT_AMP] = ACTIONS(667), - [anon_sym_GT_AMP] = ACTIONS(667), - [anon_sym_DQUOTE] = ACTIONS(667), - [sym_raw_string] = ACTIONS(667), - [anon_sym_DOLLAR] = ACTIONS(669), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(667), - [anon_sym_BQUOTE] = ACTIONS(667), - [anon_sym_LT_LPAREN] = ACTIONS(667), - [anon_sym_GT_LPAREN] = ACTIONS(667), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(669), + [sym_heredoc] = STATE(395), + [sym__simple_heredoc] = ACTIONS(712), + [sym__heredoc_beginning] = ACTIONS(714), + [sym_comment] = ACTIONS(48), }, [147] = { - [sym_file_descriptor] = ACTIONS(675), - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(677), - [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_SEMI_SEMI] = ACTIONS(677), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(677), - [anon_sym_GT_GT] = ACTIONS(677), - [anon_sym_AMP_GT] = ACTIONS(677), - [anon_sym_AMP_GT_GT] = ACTIONS(677), - [anon_sym_LT_AMP] = ACTIONS(677), - [anon_sym_GT_AMP] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(677), - [anon_sym_LT_LT_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(677), - [sym_raw_string] = ACTIONS(677), - [anon_sym_DOLLAR] = ACTIONS(677), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(677), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(677), - [anon_sym_BQUOTE] = ACTIONS(677), - [anon_sym_LT_LPAREN] = ACTIONS(677), - [anon_sym_GT_LPAREN] = ACTIONS(677), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(677), + [sym_concatenation] = STATE(398), + [sym_string] = STATE(397), + [sym_simple_expansion] = STATE(397), + [sym_expansion] = STATE(397), + [sym_command_substitution] = STATE(397), + [sym_process_substitution] = STATE(397), + [sym__special_characters] = ACTIONS(716), + [anon_sym_DQUOTE] = ACTIONS(696), + [sym_raw_string] = ACTIONS(718), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(704), + [anon_sym_BQUOTE] = ACTIONS(706), + [anon_sym_LT_LPAREN] = ACTIONS(708), + [anon_sym_GT_LPAREN] = ACTIONS(708), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(720), }, [148] = { - [sym_file_descriptor] = ACTIONS(679), - [sym_word] = ACTIONS(679), - [sym__concat] = ACTIONS(679), - [anon_sym_PIPE] = ACTIONS(681), - [anon_sym_RPAREN] = ACTIONS(681), - [anon_sym_SEMI_SEMI] = ACTIONS(681), - [anon_sym_PIPE_AMP] = ACTIONS(681), - [anon_sym_AMP_AMP] = ACTIONS(681), - [anon_sym_PIPE_PIPE] = ACTIONS(681), - [anon_sym_LT] = ACTIONS(681), - [anon_sym_GT] = ACTIONS(681), - [anon_sym_GT_GT] = ACTIONS(681), - [anon_sym_AMP_GT] = ACTIONS(681), - [anon_sym_AMP_GT_GT] = ACTIONS(681), - [anon_sym_LT_AMP] = ACTIONS(681), - [anon_sym_GT_AMP] = ACTIONS(681), - [anon_sym_LT_LT] = ACTIONS(681), - [anon_sym_LT_LT_DASH] = ACTIONS(681), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_raw_string] = ACTIONS(681), - [anon_sym_DOLLAR] = ACTIONS(681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(681), - [anon_sym_LT_LPAREN] = ACTIONS(681), - [anon_sym_GT_LPAREN] = ACTIONS(681), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(681), - [anon_sym_SEMI] = ACTIONS(681), - [anon_sym_LF] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - }, - [149] = { - [aux_sym_concatenation_repeat1] = STATE(149), - [sym_file_descriptor] = ACTIONS(675), - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(683), - [anon_sym_PIPE] = ACTIONS(677), - [anon_sym_SEMI_SEMI] = ACTIONS(677), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(677), - [anon_sym_GT_GT] = ACTIONS(677), - [anon_sym_AMP_GT] = ACTIONS(677), - [anon_sym_AMP_GT_GT] = ACTIONS(677), - [anon_sym_LT_AMP] = ACTIONS(677), - [anon_sym_GT_AMP] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(677), - [anon_sym_LT_LT_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(677), - [sym_raw_string] = ACTIONS(677), - [anon_sym_DOLLAR] = ACTIONS(677), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(677), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(677), - [anon_sym_BQUOTE] = ACTIONS(677), - [anon_sym_LT_LPAREN] = ACTIONS(677), - [anon_sym_GT_LPAREN] = ACTIONS(677), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(677), - }, - [150] = { - [aux_sym_concatenation_repeat1] = STATE(354), - [sym_file_descriptor] = ACTIONS(686), - [sym_word] = ACTIONS(686), - [sym__concat] = ACTIONS(688), - [sym_variable_name] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_SEMI_SEMI] = ACTIONS(690), - [anon_sym_PIPE_AMP] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(690), - [anon_sym_PIPE_PIPE] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_AMP_GT] = ACTIONS(690), - [anon_sym_AMP_GT_GT] = ACTIONS(690), - [anon_sym_LT_AMP] = ACTIONS(690), - [anon_sym_GT_AMP] = ACTIONS(690), - [anon_sym_DQUOTE] = ACTIONS(690), - [sym_raw_string] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(690), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(690), - [anon_sym_BQUOTE] = ACTIONS(690), - [anon_sym_LT_LPAREN] = ACTIONS(690), - [anon_sym_GT_LPAREN] = ACTIONS(690), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(690), - [anon_sym_SEMI] = ACTIONS(690), - [anon_sym_LF] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - }, - [151] = { - [sym_file_descriptor] = ACTIONS(686), - [sym_word] = ACTIONS(686), - [sym_variable_name] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_RPAREN] = ACTIONS(690), - [anon_sym_SEMI_SEMI] = ACTIONS(690), - [anon_sym_PIPE_AMP] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(690), - [anon_sym_PIPE_PIPE] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_AMP_GT] = ACTIONS(690), - [anon_sym_AMP_GT_GT] = ACTIONS(690), - [anon_sym_LT_AMP] = ACTIONS(690), - [anon_sym_GT_AMP] = ACTIONS(690), - [anon_sym_DQUOTE] = ACTIONS(690), - [sym_raw_string] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(690), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(690), - [anon_sym_BQUOTE] = ACTIONS(690), - [anon_sym_LT_LPAREN] = ACTIONS(690), - [anon_sym_GT_LPAREN] = ACTIONS(690), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(690), - [anon_sym_SEMI] = ACTIONS(690), - [anon_sym_LF] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - }, - [152] = { - [sym_concatenation] = STATE(364), - [sym_string] = STATE(355), - [sym_simple_expansion] = STATE(355), - [sym_expansion] = STATE(355), - [sym_command_substitution] = STATE(355), - [sym_process_substitution] = STATE(355), - [aux_sym_for_statement_repeat1] = STATE(365), - [sym_word] = ACTIONS(692), - [anon_sym_RPAREN] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(696), - [sym_raw_string] = ACTIONS(692), - [anon_sym_DOLLAR] = ACTIONS(698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(702), - [anon_sym_BQUOTE] = ACTIONS(704), - [anon_sym_LT_LPAREN] = ACTIONS(706), - [anon_sym_GT_LPAREN] = ACTIONS(706), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(708), - }, - [153] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(367), - [anon_sym_DQUOTE] = ACTIONS(710), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), - }, - [154] = { - [sym_special_variable_name] = STATE(370), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_POUND] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(712), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(714), - [anon_sym_STAR] = ACTIONS(712), - [anon_sym_QMARK] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(712), - [anon_sym_BANG] = ACTIONS(712), - [anon_sym_0] = ACTIONS(716), - [anon_sym__] = ACTIONS(716), - }, - [155] = { - [sym_special_variable_name] = STATE(373), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(718), - [anon_sym_AT] = ACTIONS(138), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [156] = { - [sym_for_statement] = STATE(374), - [sym_while_statement] = STATE(374), - [sym_if_statement] = STATE(374), - [sym_case_statement] = STATE(374), - [sym_function_definition] = STATE(374), - [sym_subshell] = STATE(374), - [sym_pipeline] = STATE(374), - [sym_list] = STATE(374), - [sym_command] = STATE(374), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(375), - [sym_declaration_command] = STATE(374), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), - }, - [157] = { - [sym_for_statement] = STATE(376), - [sym_while_statement] = STATE(376), - [sym_if_statement] = STATE(376), - [sym_case_statement] = STATE(376), - [sym_function_definition] = STATE(376), - [sym_subshell] = STATE(376), - [sym_pipeline] = STATE(376), - [sym_list] = STATE(376), - [sym_command] = STATE(376), - [sym_command_name] = STATE(118), - [sym_variable_assignment] = STATE(377), - [sym_declaration_command] = STATE(376), - [sym_subscript] = STATE(120), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_command_repeat1] = STATE(121), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(178), - [sym_variable_name] = ACTIONS(180), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(184), - [anon_sym_typeset] = ACTIONS(184), - [anon_sym_export] = ACTIONS(184), - [anon_sym_readonly] = ACTIONS(184), - [anon_sym_local] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(178), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(186), - }, - [158] = { - [sym_for_statement] = STATE(378), - [sym_while_statement] = STATE(378), - [sym_if_statement] = STATE(378), - [sym_case_statement] = STATE(378), - [sym_function_definition] = STATE(378), - [sym_subshell] = STATE(378), - [sym_pipeline] = STATE(378), - [sym_list] = STATE(378), - [sym_command] = STATE(378), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(379), - [sym_declaration_command] = STATE(378), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), - }, - [159] = { - [aux_sym_concatenation_repeat1] = STATE(380), + [aux_sym_concatenation_repeat1] = STATE(83), [sym_file_descriptor] = ACTIONS(722), - [sym_word] = ACTIONS(722), - [sym__concat] = ACTIONS(688), - [sym_variable_name] = ACTIONS(722), + [sym__concat] = ACTIONS(136), [anon_sym_PIPE] = ACTIONS(724), [anon_sym_SEMI_SEMI] = ACTIONS(724), [anon_sym_PIPE_AMP] = ACTIONS(724), @@ -9940,6 +12044,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(724), [anon_sym_LT_AMP] = ACTIONS(724), [anon_sym_GT_AMP] = ACTIONS(724), + [anon_sym_LT_LT] = ACTIONS(724), + [anon_sym_LT_LT_DASH] = ACTIONS(724), + [anon_sym_LT_LT_LT] = ACTIONS(724), + [sym__special_characters] = ACTIONS(724), [anon_sym_DQUOTE] = ACTIONS(724), [sym_raw_string] = ACTIONS(724), [anon_sym_DOLLAR] = ACTIONS(724), @@ -9948,6118 +12056,1987 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(724), [anon_sym_LT_LPAREN] = ACTIONS(724), [anon_sym_GT_LPAREN] = ACTIONS(724), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(724), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(724), [anon_sym_SEMI] = ACTIONS(724), [anon_sym_LF] = ACTIONS(724), [anon_sym_AMP] = ACTIONS(724), }, + [149] = { + [aux_sym_concatenation_repeat1] = STATE(83), + [sym_file_descriptor] = ACTIONS(726), + [sym__concat] = ACTIONS(136), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_SEMI_SEMI] = ACTIONS(728), + [anon_sym_PIPE_AMP] = ACTIONS(728), + [anon_sym_AMP_AMP] = ACTIONS(728), + [anon_sym_PIPE_PIPE] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(728), + [anon_sym_GT] = ACTIONS(728), + [anon_sym_GT_GT] = ACTIONS(728), + [anon_sym_AMP_GT] = ACTIONS(728), + [anon_sym_AMP_GT_GT] = ACTIONS(728), + [anon_sym_LT_AMP] = ACTIONS(728), + [anon_sym_GT_AMP] = ACTIONS(728), + [anon_sym_LT_LT] = ACTIONS(728), + [anon_sym_LT_LT_DASH] = ACTIONS(728), + [anon_sym_LT_LT_LT] = ACTIONS(728), + [sym__special_characters] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(728), + [sym_raw_string] = ACTIONS(728), + [anon_sym_DOLLAR] = ACTIONS(728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(728), + [anon_sym_BQUOTE] = ACTIONS(728), + [anon_sym_LT_LPAREN] = ACTIONS(728), + [anon_sym_GT_LPAREN] = ACTIONS(728), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(728), + [anon_sym_SEMI] = ACTIONS(728), + [anon_sym_LF] = ACTIONS(728), + [anon_sym_AMP] = ACTIONS(728), + }, + [150] = { + [sym_file_descriptor] = ACTIONS(730), + [anon_sym_PIPE] = ACTIONS(732), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_SEMI_SEMI] = ACTIONS(732), + [anon_sym_PIPE_AMP] = ACTIONS(732), + [anon_sym_AMP_AMP] = ACTIONS(732), + [anon_sym_PIPE_PIPE] = ACTIONS(732), + [anon_sym_LT] = ACTIONS(732), + [anon_sym_GT] = ACTIONS(732), + [anon_sym_GT_GT] = ACTIONS(732), + [anon_sym_AMP_GT] = ACTIONS(732), + [anon_sym_AMP_GT_GT] = ACTIONS(732), + [anon_sym_LT_AMP] = ACTIONS(732), + [anon_sym_GT_AMP] = ACTIONS(732), + [anon_sym_LT_LT] = ACTIONS(732), + [anon_sym_LT_LT_DASH] = ACTIONS(732), + [anon_sym_LT_LT_LT] = ACTIONS(732), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(732), + [anon_sym_LF] = ACTIONS(732), + [anon_sym_AMP] = ACTIONS(732), + }, + [151] = { + [sym_file_descriptor] = ACTIONS(726), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_SEMI_SEMI] = ACTIONS(728), + [anon_sym_PIPE_AMP] = ACTIONS(728), + [anon_sym_AMP_AMP] = ACTIONS(728), + [anon_sym_PIPE_PIPE] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(728), + [anon_sym_GT] = ACTIONS(728), + [anon_sym_GT_GT] = ACTIONS(728), + [anon_sym_AMP_GT] = ACTIONS(728), + [anon_sym_AMP_GT_GT] = ACTIONS(728), + [anon_sym_LT_AMP] = ACTIONS(728), + [anon_sym_GT_AMP] = ACTIONS(728), + [anon_sym_LT_LT] = ACTIONS(728), + [anon_sym_LT_LT_DASH] = ACTIONS(728), + [anon_sym_LT_LT_LT] = ACTIONS(728), + [sym__special_characters] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(728), + [sym_raw_string] = ACTIONS(728), + [anon_sym_DOLLAR] = ACTIONS(728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(728), + [anon_sym_BQUOTE] = ACTIONS(728), + [anon_sym_LT_LPAREN] = ACTIONS(728), + [anon_sym_GT_LPAREN] = ACTIONS(728), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(728), + [anon_sym_SEMI] = ACTIONS(728), + [anon_sym_LF] = ACTIONS(728), + [anon_sym_AMP] = ACTIONS(728), + }, + [152] = { + [sym_file_redirect] = STATE(150), + [sym_heredoc_redirect] = STATE(150), + [sym_herestring_redirect] = STATE(150), + [sym_concatenation] = STATE(151), + [sym_string] = STATE(149), + [sym_simple_expansion] = STATE(149), + [sym_expansion] = STATE(149), + [sym_command_substitution] = STATE(149), + [sym_process_substitution] = STATE(149), + [aux_sym_for_statement_repeat1] = STATE(399), + [aux_sym_command_repeat2] = STATE(400), + [sym_file_descriptor] = ACTIONS(246), + [anon_sym_PIPE] = ACTIONS(734), + [anon_sym_SEMI_SEMI] = ACTIONS(734), + [anon_sym_PIPE_AMP] = ACTIONS(734), + [anon_sym_AMP_AMP] = ACTIONS(734), + [anon_sym_PIPE_PIPE] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(250), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_AMP_GT] = ACTIONS(250), + [anon_sym_AMP_GT_GT] = ACTIONS(250), + [anon_sym_LT_AMP] = ACTIONS(250), + [anon_sym_GT_AMP] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(254), + [sym__special_characters] = ACTIONS(256), + [anon_sym_DQUOTE] = ACTIONS(258), + [sym_raw_string] = ACTIONS(260), + [anon_sym_DOLLAR] = ACTIONS(262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(264), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), + [anon_sym_BQUOTE] = ACTIONS(268), + [anon_sym_LT_LPAREN] = ACTIONS(270), + [anon_sym_GT_LPAREN] = ACTIONS(270), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(734), + [anon_sym_LF] = ACTIONS(734), + [anon_sym_AMP] = ACTIONS(734), + }, + [153] = { + [sym_file_redirect] = STATE(150), + [sym_heredoc_redirect] = STATE(150), + [sym_herestring_redirect] = STATE(150), + [aux_sym_command_repeat2] = STATE(401), + [sym_file_descriptor] = ACTIONS(246), + [anon_sym_PIPE] = ACTIONS(734), + [anon_sym_SEMI_SEMI] = ACTIONS(734), + [anon_sym_PIPE_AMP] = ACTIONS(734), + [anon_sym_AMP_AMP] = ACTIONS(734), + [anon_sym_PIPE_PIPE] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(250), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_AMP_GT] = ACTIONS(250), + [anon_sym_AMP_GT_GT] = ACTIONS(250), + [anon_sym_LT_AMP] = ACTIONS(250), + [anon_sym_GT_AMP] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(254), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(734), + [anon_sym_LF] = ACTIONS(734), + [anon_sym_AMP] = ACTIONS(734), + }, + [154] = { + [sym__terminated_statement] = STATE(22), + [sym_for_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_function_definition] = STATE(23), + [sym_subshell] = STATE(23), + [sym_pipeline] = STATE(23), + [sym_list] = STATE(23), + [sym_command] = STATE(23), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(25), + [sym_declaration_command] = STATE(23), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(154), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(736), + [sym_variable_name] = ACTIONS(739), + [ts_builtin_sym_end] = ACTIONS(742), + [anon_sym_for] = ACTIONS(744), + [anon_sym_while] = ACTIONS(747), + [anon_sym_if] = ACTIONS(750), + [anon_sym_case] = ACTIONS(753), + [anon_sym_function] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_declare] = ACTIONS(762), + [anon_sym_typeset] = ACTIONS(762), + [anon_sym_export] = ACTIONS(762), + [anon_sym_readonly] = ACTIONS(762), + [anon_sym_local] = ACTIONS(762), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(768), + [anon_sym_AMP_GT] = ACTIONS(765), + [anon_sym_AMP_GT_GT] = ACTIONS(768), + [anon_sym_LT_AMP] = ACTIONS(768), + [anon_sym_GT_AMP] = ACTIONS(768), + [sym__special_characters] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(774), + [sym_raw_string] = ACTIONS(777), + [anon_sym_DOLLAR] = ACTIONS(780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(786), + [anon_sym_BQUOTE] = ACTIONS(789), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(795), + }, + [155] = { + [sym__assignment] = STATE(403), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_PLUS_EQ] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(58), + [sym_comment] = ACTIONS(48), + }, + [156] = { + [sym_file_redirect] = STATE(150), + [sym_heredoc_redirect] = STATE(150), + [sym_herestring_redirect] = STATE(150), + [sym_concatenation] = STATE(151), + [sym_string] = STATE(149), + [sym_simple_expansion] = STATE(149), + [sym_expansion] = STATE(149), + [sym_command_substitution] = STATE(149), + [sym_process_substitution] = STATE(149), + [aux_sym_for_statement_repeat1] = STATE(404), + [aux_sym_command_repeat2] = STATE(400), + [sym_file_descriptor] = ACTIONS(246), + [anon_sym_PIPE] = ACTIONS(734), + [anon_sym_SEMI_SEMI] = ACTIONS(734), + [anon_sym_PIPE_AMP] = ACTIONS(734), + [anon_sym_AMP_AMP] = ACTIONS(734), + [anon_sym_PIPE_PIPE] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(250), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_AMP_GT] = ACTIONS(250), + [anon_sym_AMP_GT_GT] = ACTIONS(250), + [anon_sym_LT_AMP] = ACTIONS(250), + [anon_sym_GT_AMP] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(254), + [sym__special_characters] = ACTIONS(256), + [anon_sym_DQUOTE] = ACTIONS(258), + [sym_raw_string] = ACTIONS(260), + [anon_sym_DOLLAR] = ACTIONS(262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(264), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), + [anon_sym_BQUOTE] = ACTIONS(268), + [anon_sym_LT_LPAREN] = ACTIONS(270), + [anon_sym_GT_LPAREN] = ACTIONS(270), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(734), + [anon_sym_LF] = ACTIONS(734), + [anon_sym_AMP] = ACTIONS(734), + }, + [157] = { + [sym__assignment] = STATE(403), + [anon_sym_EQ] = ACTIONS(798), + [anon_sym_PLUS_EQ] = ACTIONS(798), + [sym_comment] = ACTIONS(48), + }, + [158] = { + [sym_variable_assignment] = STATE(27), + [sym_subscript] = STATE(157), + [sym_file_redirect] = STATE(27), + [aux_sym_command_repeat1] = STATE(158), + [sym_file_descriptor] = ACTIONS(800), + [sym_variable_name] = ACTIONS(803), + [anon_sym_LT] = ACTIONS(806), + [anon_sym_GT] = ACTIONS(806), + [anon_sym_GT_GT] = ACTIONS(809), + [anon_sym_AMP_GT] = ACTIONS(806), + [anon_sym_AMP_GT_GT] = ACTIONS(809), + [anon_sym_LT_AMP] = ACTIONS(809), + [anon_sym_GT_AMP] = ACTIONS(809), + [sym__special_characters] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [sym_raw_string] = ACTIONS(814), + [anon_sym_DOLLAR] = ACTIONS(812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(814), + [anon_sym_BQUOTE] = ACTIONS(814), + [anon_sym_LT_LPAREN] = ACTIONS(814), + [anon_sym_GT_LPAREN] = ACTIONS(814), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(812), + }, + [159] = { + [aux_sym_concatenation_repeat1] = STATE(252), + [sym_file_descriptor] = ACTIONS(816), + [sym__concat] = ACTIONS(448), + [sym_variable_name] = ACTIONS(816), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_GT] = ACTIONS(818), + [anon_sym_GT_GT] = ACTIONS(816), + [anon_sym_AMP_GT] = ACTIONS(818), + [anon_sym_AMP_GT_GT] = ACTIONS(816), + [anon_sym_LT_AMP] = ACTIONS(816), + [anon_sym_GT_AMP] = ACTIONS(816), + [sym__special_characters] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(816), + [sym_raw_string] = ACTIONS(816), + [anon_sym_DOLLAR] = ACTIONS(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(816), + [anon_sym_BQUOTE] = ACTIONS(816), + [anon_sym_LT_LPAREN] = ACTIONS(816), + [anon_sym_GT_LPAREN] = ACTIONS(816), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(818), + }, [160] = { - [aux_sym_concatenation_repeat1] = STATE(383), - [sym__concat] = ACTIONS(726), - [anon_sym_RBRACK] = ACTIONS(728), - [sym_comment] = ACTIONS(46), + [aux_sym_concatenation_repeat1] = STATE(252), + [sym_file_descriptor] = ACTIONS(820), + [sym__concat] = ACTIONS(448), + [sym_variable_name] = ACTIONS(820), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_AMP_GT] = ACTIONS(822), + [anon_sym_AMP_GT_GT] = ACTIONS(820), + [anon_sym_LT_AMP] = ACTIONS(820), + [anon_sym_GT_AMP] = ACTIONS(820), + [sym__special_characters] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(820), + [sym_raw_string] = ACTIONS(820), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_LT_LPAREN] = ACTIONS(820), + [anon_sym_GT_LPAREN] = ACTIONS(820), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(822), }, [161] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(385), - [anon_sym_DQUOTE] = ACTIONS(730), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), + [sym_file_descriptor] = ACTIONS(820), + [sym_variable_name] = ACTIONS(820), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_AMP_GT] = ACTIONS(822), + [anon_sym_AMP_GT_GT] = ACTIONS(820), + [anon_sym_LT_AMP] = ACTIONS(820), + [anon_sym_GT_AMP] = ACTIONS(820), + [sym__special_characters] = ACTIONS(822), + [anon_sym_DQUOTE] = ACTIONS(820), + [sym_raw_string] = ACTIONS(820), + [anon_sym_DOLLAR] = ACTIONS(822), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(820), + [anon_sym_LT_LPAREN] = ACTIONS(820), + [anon_sym_GT_LPAREN] = ACTIONS(820), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(822), }, [162] = { - [sym_special_variable_name] = STATE(388), - [anon_sym_DOLLAR] = ACTIONS(732), - [anon_sym_POUND] = ACTIONS(732), - [anon_sym_AT] = ACTIONS(732), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(734), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_QMARK] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_BANG] = ACTIONS(732), - [anon_sym_0] = ACTIONS(736), - [anon_sym__] = ACTIONS(736), - }, - [163] = { - [sym_special_variable_name] = STATE(391), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(738), - [anon_sym_AT] = ACTIONS(138), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(740), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [164] = { - [sym_for_statement] = STATE(392), - [sym_while_statement] = STATE(392), - [sym_if_statement] = STATE(392), - [sym_case_statement] = STATE(392), - [sym_function_definition] = STATE(392), - [sym_subshell] = STATE(392), - [sym_pipeline] = STATE(392), - [sym_list] = STATE(392), - [sym_command] = STATE(392), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(393), - [sym_declaration_command] = STATE(392), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), - }, - [165] = { - [sym_for_statement] = STATE(394), - [sym_while_statement] = STATE(394), - [sym_if_statement] = STATE(394), - [sym_case_statement] = STATE(394), - [sym_function_definition] = STATE(394), - [sym_subshell] = STATE(394), - [sym_pipeline] = STATE(394), - [sym_list] = STATE(394), - [sym_command] = STATE(394), - [sym_command_name] = STATE(118), - [sym_variable_assignment] = STATE(395), - [sym_declaration_command] = STATE(394), - [sym_subscript] = STATE(120), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_command_repeat1] = STATE(121), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(178), - [sym_variable_name] = ACTIONS(180), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(184), - [anon_sym_typeset] = ACTIONS(184), - [anon_sym_export] = ACTIONS(184), - [anon_sym_readonly] = ACTIONS(184), - [anon_sym_local] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(178), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(186), - }, - [166] = { - [sym_for_statement] = STATE(396), - [sym_while_statement] = STATE(396), - [sym_if_statement] = STATE(396), - [sym_case_statement] = STATE(396), - [sym_function_definition] = STATE(396), - [sym_subshell] = STATE(396), - [sym_pipeline] = STATE(396), - [sym_list] = STATE(396), - [sym_command] = STATE(396), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(397), - [sym_declaration_command] = STATE(396), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), - }, - [167] = { - [aux_sym_concatenation_repeat1] = STATE(399), - [sym__concat] = ACTIONS(726), - [anon_sym_RBRACK] = ACTIONS(742), - [sym_comment] = ACTIONS(46), - }, - [168] = { - [anon_sym_RBRACK] = ACTIONS(728), - [sym_comment] = ACTIONS(46), - }, - [169] = { - [sym_concatenation] = STATE(408), - [sym_string] = STATE(400), - [sym_simple_expansion] = STATE(400), - [sym_expansion] = STATE(400), - [sym_command_substitution] = STATE(400), - [sym_process_substitution] = STATE(400), - [aux_sym_for_statement_repeat1] = STATE(409), - [sym_word] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(746), - [sym_raw_string] = ACTIONS(744), - [anon_sym_DOLLAR] = ACTIONS(748), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(752), - [anon_sym_BQUOTE] = ACTIONS(754), - [anon_sym_LT_LPAREN] = ACTIONS(756), - [anon_sym_GT_LPAREN] = ACTIONS(756), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(758), - }, - [170] = { - [sym__terminated_statement] = STATE(411), - [sym_for_statement] = STATE(412), - [sym_while_statement] = STATE(412), - [sym_if_statement] = STATE(412), - [sym_case_statement] = STATE(412), - [sym_function_definition] = STATE(412), - [sym_subshell] = STATE(412), - [sym_pipeline] = STATE(412), - [sym_list] = STATE(412), - [sym_command] = STATE(412), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(413), - [sym_declaration_command] = STATE(412), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(414), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(760), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), - }, - [171] = { - [anon_sym_PIPE] = ACTIONS(762), - [anon_sym_RPAREN] = ACTIONS(762), - [anon_sym_SEMI_SEMI] = ACTIONS(762), - [anon_sym_PIPE_AMP] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(762), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LF] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(762), - }, - [172] = { - [anon_sym_do] = ACTIONS(546), - [anon_sym_then] = ACTIONS(546), - [sym_comment] = ACTIONS(46), - }, - [173] = { - [sym__terminated_statement] = STATE(418), - [sym_for_statement] = STATE(419), - [sym_while_statement] = STATE(419), - [sym_if_statement] = STATE(419), - [sym_elif_clause] = STATE(420), - [sym_else_clause] = STATE(421), - [sym_case_statement] = STATE(419), - [sym_function_definition] = STATE(419), - [sym_subshell] = STATE(419), - [sym_pipeline] = STATE(419), - [sym_list] = STATE(419), - [sym_command] = STATE(419), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(422), - [sym_declaration_command] = STATE(419), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(423), - [aux_sym_if_statement_repeat1] = STATE(424), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(764), - [anon_sym_elif] = ACTIONS(766), - [anon_sym_else] = ACTIONS(768), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), - }, - [174] = { - [sym_string] = STATE(425), - [sym_simple_expansion] = STATE(425), - [sym_expansion] = STATE(425), - [sym_command_substitution] = STATE(425), - [sym_process_substitution] = STATE(425), - [sym_word] = ACTIONS(770), - [anon_sym_DQUOTE] = ACTIONS(70), - [sym_raw_string] = ACTIONS(770), - [anon_sym_DOLLAR] = ACTIONS(72), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(74), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(76), - [anon_sym_BQUOTE] = ACTIONS(78), - [anon_sym_LT_LPAREN] = ACTIONS(80), - [anon_sym_GT_LPAREN] = ACTIONS(80), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(772), - }, - [175] = { - [anon_sym_SEMI_SEMI] = ACTIONS(774), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(774), - [anon_sym_LF] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(774), - }, - [176] = { - [anon_sym_in] = ACTIONS(776), - [sym_comment] = ACTIONS(46), - }, - [177] = { - [aux_sym_concatenation_repeat1] = STATE(429), - [sym__concat] = ACTIONS(306), - [anon_sym_in] = ACTIONS(256), - [anon_sym_SEMI_SEMI] = ACTIONS(256), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(256), - [anon_sym_LF] = ACTIONS(256), - [anon_sym_AMP] = ACTIONS(256), - }, - [178] = { - [sym__concat] = ACTIONS(394), - [anon_sym_in] = ACTIONS(396), - [anon_sym_SEMI_SEMI] = ACTIONS(396), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(396), - [anon_sym_LF] = ACTIONS(396), - [anon_sym_AMP] = ACTIONS(396), - }, - [179] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(252), - [anon_sym_DQUOTE] = ACTIONS(778), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), - }, - [180] = { - [sym__concat] = ACTIONS(412), - [anon_sym_in] = ACTIONS(414), - [anon_sym_SEMI_SEMI] = ACTIONS(414), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(414), - [anon_sym_LF] = ACTIONS(414), - [anon_sym_AMP] = ACTIONS(414), - }, - [181] = { - [sym__concat] = ACTIONS(416), - [anon_sym_in] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(418), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(418), - [anon_sym_LF] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - }, - [182] = { - [sym__concat] = ACTIONS(420), - [anon_sym_in] = ACTIONS(422), - [anon_sym_SEMI_SEMI] = ACTIONS(422), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LF] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(422), - }, - [183] = { - [sym_special_variable_name] = STATE(432), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(138), - [anon_sym_AT] = ACTIONS(138), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_COLON_QMARK] = ACTIONS(412), - [anon_sym_COLON_DASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(412), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [184] = { - [anon_sym_RBRACE] = ACTIONS(782), - [anon_sym_EQ] = ACTIONS(784), - [anon_sym_LBRACK] = ACTIONS(786), - [anon_sym_COLON] = ACTIONS(788), - [anon_sym_COLON_QMARK] = ACTIONS(784), - [anon_sym_COLON_DASH] = ACTIONS(784), - [anon_sym_PERCENT] = ACTIONS(784), - [anon_sym_SLASH] = ACTIONS(784), - [sym_comment] = ACTIONS(46), - }, - [185] = { - [anon_sym_RBRACE] = ACTIONS(790), - [anon_sym_EQ] = ACTIONS(792), - [anon_sym_LBRACK] = ACTIONS(794), - [anon_sym_COLON] = ACTIONS(796), - [anon_sym_COLON_QMARK] = ACTIONS(792), - [anon_sym_COLON_DASH] = ACTIONS(792), - [anon_sym_PERCENT] = ACTIONS(792), - [anon_sym_SLASH] = ACTIONS(792), - [sym_comment] = ACTIONS(46), - }, - [186] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [187] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [188] = { - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_BQUOTE] = ACTIONS(798), - [sym_comment] = ACTIONS(46), - }, - [189] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(798), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [190] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(800), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [191] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(800), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [192] = { - [anon_sym_SEMI_SEMI] = ACTIONS(802), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_LF] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(802), - }, - [193] = { - [anon_sym_in] = ACTIONS(804), - [sym_comment] = ACTIONS(46), - }, - [194] = { - [aux_sym_concatenation_repeat1] = STATE(429), - [sym__concat] = ACTIONS(306), - [anon_sym_in] = ACTIONS(544), - [anon_sym_SEMI_SEMI] = ACTIONS(544), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_LF] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(544), - }, - [195] = { - [anon_sym_RPAREN] = ACTIONS(806), - [sym_comment] = ACTIONS(46), - }, - [196] = { - [sym__terminated_statement] = STATE(21), - [sym_for_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_function_definition] = STATE(22), - [sym_subshell] = STATE(22), - [sym_pipeline] = STATE(22), - [sym_list] = STATE(22), - [sym_command] = STATE(22), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(24), - [sym_declaration_command] = STATE(22), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(445), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(808), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), - }, - [197] = { - [sym_file_redirect] = STATE(448), - [sym_file_descriptor] = ACTIONS(810), - [anon_sym_PIPE] = ACTIONS(812), - [anon_sym_SEMI_SEMI] = ACTIONS(812), - [anon_sym_PIPE_AMP] = ACTIONS(812), - [anon_sym_AMP_AMP] = ACTIONS(812), - [anon_sym_PIPE_PIPE] = ACTIONS(812), - [anon_sym_LT] = ACTIONS(814), - [anon_sym_GT] = ACTIONS(814), - [anon_sym_GT_GT] = ACTIONS(814), - [anon_sym_AMP_GT] = ACTIONS(814), - [anon_sym_AMP_GT_GT] = ACTIONS(814), - [anon_sym_LT_AMP] = ACTIONS(814), - [anon_sym_GT_AMP] = ACTIONS(814), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(812), - [anon_sym_LF] = ACTIONS(812), - [anon_sym_AMP] = ACTIONS(812), - }, - [198] = { - [aux_sym_concatenation_repeat1] = STATE(449), - [sym_file_descriptor] = ACTIONS(254), - [sym_word] = ACTIONS(254), - [sym__concat] = ACTIONS(56), - [anon_sym_PIPE] = ACTIONS(256), - [anon_sym_RPAREN] = ACTIONS(256), - [anon_sym_SEMI_SEMI] = ACTIONS(256), - [anon_sym_PIPE_AMP] = ACTIONS(256), - [anon_sym_AMP_AMP] = ACTIONS(256), - [anon_sym_PIPE_PIPE] = ACTIONS(256), - [anon_sym_LT] = ACTIONS(256), - [anon_sym_GT] = ACTIONS(256), - [anon_sym_GT_GT] = ACTIONS(256), - [anon_sym_AMP_GT] = ACTIONS(256), - [anon_sym_AMP_GT_GT] = ACTIONS(256), - [anon_sym_LT_AMP] = ACTIONS(256), - [anon_sym_GT_AMP] = ACTIONS(256), - [anon_sym_LT_LT] = ACTIONS(256), - [anon_sym_LT_LT_DASH] = ACTIONS(256), - [anon_sym_DQUOTE] = ACTIONS(256), - [sym_raw_string] = ACTIONS(256), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(256), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(256), - [anon_sym_BQUOTE] = ACTIONS(256), - [anon_sym_LT_LPAREN] = ACTIONS(256), - [anon_sym_GT_LPAREN] = ACTIONS(256), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(256), - [anon_sym_SEMI] = ACTIONS(256), - [anon_sym_LF] = ACTIONS(256), - [anon_sym_AMP] = ACTIONS(256), - }, - [199] = { - [sym_concatenation] = STATE(151), - [sym_string] = STATE(450), - [sym_array] = STATE(151), - [sym_simple_expansion] = STATE(450), - [sym_expansion] = STATE(450), - [sym_command_substitution] = STATE(450), - [sym_process_substitution] = STATE(450), - [sym_word] = ACTIONS(816), - [sym__empty_value] = ACTIONS(260), - [anon_sym_LPAREN] = ACTIONS(262), - [anon_sym_DQUOTE] = ACTIONS(264), - [sym_raw_string] = ACTIONS(816), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(270), - [anon_sym_BQUOTE] = ACTIONS(272), - [anon_sym_LT_LPAREN] = ACTIONS(274), - [anon_sym_GT_LPAREN] = ACTIONS(274), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(818), - }, - [200] = { - [sym_compound_statement] = STATE(453), - [anon_sym_LPAREN] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(330), - [sym_comment] = ACTIONS(46), - }, - [201] = { - [sym__assignment] = STATE(222), - [anon_sym_EQ] = ACTIONS(822), - [anon_sym_PLUS_EQ] = ACTIONS(822), - [anon_sym_LBRACK] = ACTIONS(64), - [sym_comment] = ACTIONS(46), - }, - [202] = { - [sym__assignment] = STATE(222), - [anon_sym_EQ] = ACTIONS(822), - [anon_sym_PLUS_EQ] = ACTIONS(822), - [sym_comment] = ACTIONS(46), - }, - [203] = { - [sym_variable_assignment] = STATE(62), - [sym_subscript] = STATE(202), - [aux_sym_declaration_command_repeat1] = STATE(455), - [sym_word] = ACTIONS(96), - [sym_variable_name] = ACTIONS(336), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_RPAREN] = ACTIONS(370), - [anon_sym_SEMI_SEMI] = ACTIONS(370), - [anon_sym_PIPE_AMP] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(370), - [anon_sym_PIPE_PIPE] = ACTIONS(370), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(102), - [anon_sym_SEMI] = ACTIONS(370), - [anon_sym_LF] = ACTIONS(370), - [anon_sym_AMP] = ACTIONS(370), - }, - [204] = { - [anon_sym_RPAREN] = ACTIONS(824), - [sym_comment] = ACTIONS(46), - }, - [205] = { - [aux_sym_concatenation_repeat1] = STATE(449), - [sym_file_descriptor] = ACTIONS(542), - [sym_word] = ACTIONS(542), - [sym__concat] = ACTIONS(56), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(544), - [anon_sym_SEMI_SEMI] = ACTIONS(544), - [anon_sym_PIPE_AMP] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_AMP_GT] = ACTIONS(544), - [anon_sym_AMP_GT_GT] = ACTIONS(544), - [anon_sym_LT_AMP] = ACTIONS(544), - [anon_sym_GT_AMP] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_LT_LT_DASH] = ACTIONS(544), - [anon_sym_DQUOTE] = ACTIONS(544), - [sym_raw_string] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(544), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(544), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(544), - [anon_sym_BQUOTE] = ACTIONS(544), - [anon_sym_LT_LPAREN] = ACTIONS(544), - [anon_sym_GT_LPAREN] = ACTIONS(544), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_LF] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(544), - }, - [206] = { - [sym_for_statement] = STATE(330), - [sym_while_statement] = STATE(330), - [sym_if_statement] = STATE(330), - [sym_case_statement] = STATE(330), - [sym_function_definition] = STATE(330), - [sym_subshell] = STATE(330), - [sym_pipeline] = STATE(330), - [sym_list] = STATE(330), - [sym_command] = STATE(330), - [sym_command_name] = STATE(57), - [sym_variable_assignment] = STATE(331), - [sym_declaration_command] = STATE(330), - [sym_subscript] = STATE(59), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(51), - [sym_simple_expansion] = STATE(51), - [sym_expansion] = STATE(51), - [sym_command_substitution] = STATE(51), - [sym_process_substitution] = STATE(51), - [aux_sym_command_repeat1] = STATE(61), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(86), - [sym_variable_name] = ACTIONS(88), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(90), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(92), - [anon_sym_typeset] = ACTIONS(92), - [anon_sym_export] = ACTIONS(92), - [anon_sym_readonly] = ACTIONS(92), - [anon_sym_local] = ACTIONS(92), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(86), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(94), - }, - [207] = { + [sym_file_descriptor] = ACTIONS(824), + [sym_variable_name] = ACTIONS(824), [anon_sym_PIPE] = ACTIONS(826), [anon_sym_RPAREN] = ACTIONS(826), [anon_sym_SEMI_SEMI] = ACTIONS(826), [anon_sym_PIPE_AMP] = ACTIONS(826), [anon_sym_AMP_AMP] = ACTIONS(826), [anon_sym_PIPE_PIPE] = ACTIONS(826), - [sym_comment] = ACTIONS(60), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(826), + [anon_sym_AMP_GT_GT] = ACTIONS(826), + [anon_sym_LT_AMP] = ACTIONS(826), + [anon_sym_GT_AMP] = ACTIONS(826), + [sym__special_characters] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(826), [anon_sym_SEMI] = ACTIONS(826), [anon_sym_LF] = ACTIONS(826), [anon_sym_AMP] = ACTIONS(826), }, - [208] = { - [sym_file_descriptor] = ACTIONS(546), - [sym_word] = ACTIONS(546), - [sym_variable_name] = ACTIONS(546), - [anon_sym_for] = ACTIONS(548), - [anon_sym_while] = ACTIONS(548), - [anon_sym_if] = ACTIONS(548), - [anon_sym_case] = ACTIONS(548), + [163] = { + [sym_concatenation] = STATE(414), + [sym_string] = STATE(408), + [sym_simple_expansion] = STATE(408), + [sym_expansion] = STATE(408), + [sym_command_substitution] = STATE(408), + [sym_process_substitution] = STATE(408), + [aux_sym_for_statement_repeat1] = STATE(415), [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_function] = ACTIONS(548), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_typeset] = ACTIONS(548), - [anon_sym_export] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(548), - [anon_sym_local] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_GT] = ACTIONS(548), - [anon_sym_GT_GT] = ACTIONS(546), - [anon_sym_AMP_GT] = ACTIONS(548), - [anon_sym_AMP_GT_GT] = ACTIONS(546), - [anon_sym_LT_AMP] = ACTIONS(546), - [anon_sym_GT_AMP] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(546), - [sym_raw_string] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(546), - [anon_sym_BQUOTE] = ACTIONS(546), - [anon_sym_LT_LPAREN] = ACTIONS(546), - [anon_sym_GT_LPAREN] = ACTIONS(546), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(550), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(846), + }, + [164] = { + [aux_sym_concatenation_repeat1] = STATE(417), + [sym_file_descriptor] = ACTIONS(848), + [sym__concat] = ACTIONS(850), + [sym_variable_name] = ACTIONS(848), + [anon_sym_PIPE] = ACTIONS(852), + [anon_sym_SEMI_SEMI] = ACTIONS(852), + [anon_sym_PIPE_AMP] = ACTIONS(852), + [anon_sym_AMP_AMP] = ACTIONS(852), + [anon_sym_PIPE_PIPE] = ACTIONS(852), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_GT] = ACTIONS(852), + [anon_sym_AMP_GT] = ACTIONS(852), + [anon_sym_AMP_GT_GT] = ACTIONS(852), + [anon_sym_LT_AMP] = ACTIONS(852), + [anon_sym_GT_AMP] = ACTIONS(852), + [sym__special_characters] = ACTIONS(852), + [anon_sym_DQUOTE] = ACTIONS(852), + [sym_raw_string] = ACTIONS(852), + [anon_sym_DOLLAR] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(852), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(852), + [anon_sym_BQUOTE] = ACTIONS(852), + [anon_sym_LT_LPAREN] = ACTIONS(852), + [anon_sym_GT_LPAREN] = ACTIONS(852), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(852), + [anon_sym_SEMI] = ACTIONS(852), + [anon_sym_LF] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(852), + }, + [165] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(419), + [anon_sym_DQUOTE] = ACTIONS(854), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [166] = { + [aux_sym_concatenation_repeat1] = STATE(417), + [sym_file_descriptor] = ACTIONS(824), + [sym__concat] = ACTIONS(850), + [sym_variable_name] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(826), + [anon_sym_AMP_GT_GT] = ACTIONS(826), + [anon_sym_LT_AMP] = ACTIONS(826), + [anon_sym_GT_AMP] = ACTIONS(826), + [sym__special_characters] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + }, + [167] = { + [anon_sym_DOLLAR] = ACTIONS(856), + [anon_sym_DASH] = ACTIONS(856), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(858), + [anon_sym_STAR] = ACTIONS(856), + [anon_sym_AT] = ACTIONS(856), + [anon_sym_QMARK] = ACTIONS(856), + [anon_sym_0] = ACTIONS(860), + [anon_sym__] = ACTIONS(860), + }, + [168] = { + [sym_subscript] = STATE(426), + [sym_variable_name] = ACTIONS(862), + [anon_sym_DOLLAR] = ACTIONS(864), + [anon_sym_POUND] = ACTIONS(866), + [anon_sym_DASH] = ACTIONS(864), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(868), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_AT] = ACTIONS(864), + [anon_sym_QMARK] = ACTIONS(864), + [anon_sym_0] = ACTIONS(870), + [anon_sym__] = ACTIONS(870), + }, + [169] = { + [sym_for_statement] = STATE(427), + [sym_while_statement] = STATE(427), + [sym_if_statement] = STATE(427), + [sym_case_statement] = STATE(427), + [sym_function_definition] = STATE(427), + [sym_subshell] = STATE(427), + [sym_pipeline] = STATE(427), + [sym_list] = STATE(427), + [sym_command] = STATE(427), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(428), + [sym_declaration_command] = STATE(427), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [170] = { + [sym_for_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_case_statement] = STATE(429), + [sym_function_definition] = STATE(429), + [sym_subshell] = STATE(429), + [sym_pipeline] = STATE(429), + [sym_list] = STATE(429), + [sym_command] = STATE(429), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(430), + [sym_declaration_command] = STATE(429), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), + }, + [171] = { + [sym_for_statement] = STATE(431), + [sym_while_statement] = STATE(431), + [sym_if_statement] = STATE(431), + [sym_case_statement] = STATE(431), + [sym_function_definition] = STATE(431), + [sym_subshell] = STATE(431), + [sym_pipeline] = STATE(431), + [sym_list] = STATE(431), + [sym_command] = STATE(431), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(432), + [sym_declaration_command] = STATE(431), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [172] = { + [aux_sym_concatenation_repeat1] = STATE(435), + [sym__concat] = ACTIONS(872), + [anon_sym_RBRACK] = ACTIONS(874), + [sym_comment] = ACTIONS(48), + }, + [173] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(437), + [anon_sym_DQUOTE] = ACTIONS(876), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [174] = { + [aux_sym_concatenation_repeat1] = STATE(435), + [sym__concat] = ACTIONS(878), + [anon_sym_RBRACK] = ACTIONS(880), + [sym_comment] = ACTIONS(48), + }, + [175] = { + [anon_sym_DOLLAR] = ACTIONS(882), + [anon_sym_DASH] = ACTIONS(882), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(884), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_AT] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_0] = ACTIONS(886), + [anon_sym__] = ACTIONS(886), + }, + [176] = { + [sym_subscript] = STATE(446), + [sym_variable_name] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_POUND] = ACTIONS(892), + [anon_sym_DASH] = ACTIONS(890), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(890), + [anon_sym_AT] = ACTIONS(890), + [anon_sym_QMARK] = ACTIONS(890), + [anon_sym_0] = ACTIONS(896), + [anon_sym__] = ACTIONS(896), + }, + [177] = { + [sym_for_statement] = STATE(447), + [sym_while_statement] = STATE(447), + [sym_if_statement] = STATE(447), + [sym_case_statement] = STATE(447), + [sym_function_definition] = STATE(447), + [sym_subshell] = STATE(447), + [sym_pipeline] = STATE(447), + [sym_list] = STATE(447), + [sym_command] = STATE(447), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(448), + [sym_declaration_command] = STATE(447), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [178] = { + [sym_for_statement] = STATE(449), + [sym_while_statement] = STATE(449), + [sym_if_statement] = STATE(449), + [sym_case_statement] = STATE(449), + [sym_function_definition] = STATE(449), + [sym_subshell] = STATE(449), + [sym_pipeline] = STATE(449), + [sym_list] = STATE(449), + [sym_command] = STATE(449), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(450), + [sym_declaration_command] = STATE(449), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), + }, + [179] = { + [sym_for_statement] = STATE(451), + [sym_while_statement] = STATE(451), + [sym_if_statement] = STATE(451), + [sym_case_statement] = STATE(451), + [sym_function_definition] = STATE(451), + [sym_subshell] = STATE(451), + [sym_pipeline] = STATE(451), + [sym_list] = STATE(451), + [sym_command] = STATE(451), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(452), + [sym_declaration_command] = STATE(451), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [180] = { + [sym__concat] = ACTIONS(898), + [anon_sym_RBRACK] = ACTIONS(880), + [sym_comment] = ACTIONS(48), + }, + [181] = { + [sym_concatenation] = STATE(462), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_for_statement_repeat1] = STATE(463), + [sym__special_characters] = ACTIONS(900), + [anon_sym_DQUOTE] = ACTIONS(902), + [sym_raw_string] = ACTIONS(904), + [anon_sym_DOLLAR] = ACTIONS(906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(908), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(910), + [anon_sym_BQUOTE] = ACTIONS(912), + [anon_sym_LT_LPAREN] = ACTIONS(914), + [anon_sym_GT_LPAREN] = ACTIONS(914), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(916), + }, + [182] = { + [sym__terminated_statement] = STATE(465), + [sym_for_statement] = STATE(466), + [sym_while_statement] = STATE(466), + [sym_if_statement] = STATE(466), + [sym_case_statement] = STATE(466), + [sym_function_definition] = STATE(466), + [sym_subshell] = STATE(466), + [sym_pipeline] = STATE(466), + [sym_list] = STATE(466), + [sym_command] = STATE(466), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(467), + [sym_declaration_command] = STATE(466), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(468), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_done] = ACTIONS(918), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), + }, + [183] = { + [anon_sym_PIPE] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_SEMI_SEMI] = ACTIONS(920), + [anon_sym_PIPE_AMP] = ACTIONS(920), + [anon_sym_AMP_AMP] = ACTIONS(920), + [anon_sym_PIPE_PIPE] = ACTIONS(920), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_LF] = ACTIONS(920), + [anon_sym_AMP] = ACTIONS(920), + }, + [184] = { + [anon_sym_do] = ACTIONS(684), + [anon_sym_then] = ACTIONS(684), + [sym_comment] = ACTIONS(48), + }, + [185] = { + [sym__terminated_statement] = STATE(472), + [sym_for_statement] = STATE(473), + [sym_while_statement] = STATE(473), + [sym_if_statement] = STATE(473), + [sym_elif_clause] = STATE(474), + [sym_else_clause] = STATE(475), + [sym_case_statement] = STATE(473), + [sym_function_definition] = STATE(473), + [sym_subshell] = STATE(473), + [sym_pipeline] = STATE(473), + [sym_list] = STATE(473), + [sym_command] = STATE(473), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(476), + [sym_declaration_command] = STATE(473), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(477), + [aux_sym_if_statement_repeat1] = STATE(478), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_fi] = ACTIONS(922), + [anon_sym_elif] = ACTIONS(924), + [anon_sym_else] = ACTIONS(926), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), + }, + [186] = { + [sym_string] = STATE(479), + [sym_simple_expansion] = STATE(479), + [sym_expansion] = STATE(479), + [sym_command_substitution] = STATE(479), + [sym_process_substitution] = STATE(479), + [sym__special_characters] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(64), + [sym_raw_string] = ACTIONS(930), + [anon_sym_DOLLAR] = ACTIONS(68), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(70), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(72), + [anon_sym_BQUOTE] = ACTIONS(74), + [anon_sym_LT_LPAREN] = ACTIONS(76), + [anon_sym_GT_LPAREN] = ACTIONS(76), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(928), + }, + [187] = { + [anon_sym_SEMI_SEMI] = ACTIONS(932), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_LF] = ACTIONS(932), + [anon_sym_AMP] = ACTIONS(932), + }, + [188] = { + [anon_sym_in] = ACTIONS(934), + [sym_comment] = ACTIONS(48), + }, + [189] = { + [aux_sym_concatenation_repeat1] = STATE(482), + [sym__concat] = ACTIONS(342), + [anon_sym_in] = ACTIONS(480), + [anon_sym_SEMI_SEMI] = ACTIONS(480), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(480), + [anon_sym_LF] = ACTIONS(480), + [anon_sym_AMP] = ACTIONS(480), + }, + [190] = { + [sym__concat] = ACTIONS(482), + [anon_sym_in] = ACTIONS(484), + [anon_sym_SEMI_SEMI] = ACTIONS(484), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(484), + [anon_sym_LF] = ACTIONS(484), + [anon_sym_AMP] = ACTIONS(484), + }, + [191] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(936), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [192] = { + [anon_sym_SEMI_SEMI] = ACTIONS(938), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(938), + [anon_sym_LF] = ACTIONS(938), + [anon_sym_AMP] = ACTIONS(938), + }, + [193] = { + [anon_sym_in] = ACTIONS(940), + [sym_comment] = ACTIONS(48), + }, + [194] = { + [sym__concat] = ACTIONS(510), + [anon_sym_in] = ACTIONS(512), + [anon_sym_SEMI_SEMI] = ACTIONS(512), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_LF] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(512), + }, + [195] = { + [sym__concat] = ACTIONS(514), + [anon_sym_in] = ACTIONS(516), + [anon_sym_SEMI_SEMI] = ACTIONS(516), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_LF] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(516), + }, + [196] = { + [anon_sym_EQ] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [197] = { + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_EQ] = ACTIONS(946), + [anon_sym_COLON] = ACTIONS(948), + [anon_sym_COLON_QMARK] = ACTIONS(946), + [anon_sym_COLON_DASH] = ACTIONS(946), + [anon_sym_PERCENT] = ACTIONS(946), + [anon_sym_SLASH] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(946), + [sym_comment] = ACTIONS(48), + }, + [198] = { + [sym_subscript] = STATE(492), + [sym_variable_name] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(954), + [anon_sym_STAR] = ACTIONS(952), + [anon_sym_AT] = ACTIONS(952), + [anon_sym_QMARK] = ACTIONS(952), + [anon_sym_0] = ACTIONS(956), + [anon_sym__] = ACTIONS(956), + }, + [199] = { + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(960), + [anon_sym_COLON] = ACTIONS(962), + [anon_sym_COLON_QMARK] = ACTIONS(960), + [anon_sym_COLON_DASH] = ACTIONS(960), + [anon_sym_PERCENT] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_DASH] = ACTIONS(960), + [sym_comment] = ACTIONS(48), + }, + [200] = { + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_EQ] = ACTIONS(942), + [anon_sym_COLON] = ACTIONS(966), + [anon_sym_COLON_QMARK] = ACTIONS(942), + [anon_sym_COLON_DASH] = ACTIONS(942), + [anon_sym_PERCENT] = ACTIONS(942), + [anon_sym_SLASH] = ACTIONS(942), + [anon_sym_DASH] = ACTIONS(942), + [sym_comment] = ACTIONS(48), + }, + [201] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(968), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [202] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(968), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [203] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(968), + [sym_comment] = ACTIONS(48), + }, + [204] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(968), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [205] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(970), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [206] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(970), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [207] = { + [anon_sym_RPAREN] = ACTIONS(972), + [sym_comment] = ACTIONS(48), + }, + [208] = { + [sym__terminated_statement] = STATE(500), + [sym_for_statement] = STATE(501), + [sym_while_statement] = STATE(501), + [sym_if_statement] = STATE(501), + [sym_case_statement] = STATE(501), + [sym_function_definition] = STATE(501), + [sym_subshell] = STATE(501), + [sym_pipeline] = STATE(501), + [sym_list] = STATE(501), + [sym_command] = STATE(501), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(502), + [sym_declaration_command] = STATE(501), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(503), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), }, [209] = { - [sym_for_statement] = STATE(458), - [sym_while_statement] = STATE(458), - [sym_if_statement] = STATE(458), - [sym_case_statement] = STATE(458), - [sym_function_definition] = STATE(458), - [sym_subshell] = STATE(458), - [sym_pipeline] = STATE(458), - [sym_list] = STATE(458), - [sym_command] = STATE(458), - [sym_command_name] = STATE(57), - [sym_variable_assignment] = STATE(459), - [sym_declaration_command] = STATE(458), - [sym_subscript] = STATE(59), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(51), - [sym_simple_expansion] = STATE(51), - [sym_expansion] = STATE(51), - [sym_command_substitution] = STATE(51), - [sym_process_substitution] = STATE(51), - [aux_sym_command_repeat1] = STATE(61), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(86), - [sym_variable_name] = ACTIONS(88), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(90), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(92), - [anon_sym_typeset] = ACTIONS(92), - [anon_sym_export] = ACTIONS(92), - [anon_sym_readonly] = ACTIONS(92), - [anon_sym_local] = ACTIONS(92), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(86), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(94), + [sym_file_redirect] = STATE(506), + [sym_file_descriptor] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_SEMI_SEMI] = ACTIONS(980), + [anon_sym_PIPE_AMP] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(982), + [anon_sym_GT] = ACTIONS(982), + [anon_sym_GT_GT] = ACTIONS(982), + [anon_sym_AMP_GT] = ACTIONS(982), + [anon_sym_AMP_GT_GT] = ACTIONS(982), + [anon_sym_LT_AMP] = ACTIONS(982), + [anon_sym_GT_AMP] = ACTIONS(982), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_LF] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(980), }, [210] = { - [anon_sym_LT] = ACTIONS(830), - [anon_sym_GT] = ACTIONS(830), - [anon_sym_GT_GT] = ACTIONS(832), - [anon_sym_AMP_GT] = ACTIONS(830), - [anon_sym_AMP_GT_GT] = ACTIONS(832), - [anon_sym_LT_AMP] = ACTIONS(832), - [anon_sym_GT_AMP] = ACTIONS(832), - [sym_comment] = ACTIONS(46), + [sym_concatenation] = STATE(162), + [sym_string] = STATE(509), + [sym_array] = STATE(162), + [sym_simple_expansion] = STATE(509), + [sym_expansion] = STATE(509), + [sym_command_substitution] = STATE(509), + [sym_process_substitution] = STATE(509), + [sym__empty_value] = ACTIONS(290), + [anon_sym_LPAREN] = ACTIONS(292), + [sym__special_characters] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_raw_string] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(992), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(994), + [anon_sym_BQUOTE] = ACTIONS(996), + [anon_sym_LT_LPAREN] = ACTIONS(998), + [anon_sym_GT_LPAREN] = ACTIONS(998), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1000), }, [211] = { - [aux_sym_concatenation_repeat1] = STATE(198), - [sym_file_descriptor] = ACTIONS(556), - [sym_word] = ACTIONS(556), - [sym__concat] = ACTIONS(56), - [anon_sym_PIPE] = ACTIONS(558), - [anon_sym_RPAREN] = ACTIONS(558), - [anon_sym_SEMI_SEMI] = ACTIONS(558), - [anon_sym_PIPE_AMP] = ACTIONS(558), - [anon_sym_AMP_AMP] = ACTIONS(558), - [anon_sym_PIPE_PIPE] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(558), - [anon_sym_GT] = ACTIONS(558), - [anon_sym_GT_GT] = ACTIONS(558), - [anon_sym_AMP_GT] = ACTIONS(558), - [anon_sym_AMP_GT_GT] = ACTIONS(558), - [anon_sym_LT_AMP] = ACTIONS(558), - [anon_sym_GT_AMP] = ACTIONS(558), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_LT_LT_DASH] = ACTIONS(558), - [anon_sym_DQUOTE] = ACTIONS(558), - [sym_raw_string] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(558), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(558), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(558), - [anon_sym_BQUOTE] = ACTIONS(558), - [anon_sym_LT_LPAREN] = ACTIONS(558), - [anon_sym_GT_LPAREN] = ACTIONS(558), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LF] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(558), + [sym_compound_statement] = STATE(516), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_LBRACE] = ACTIONS(372), + [sym_comment] = ACTIONS(48), }, [212] = { - [sym_concatenation] = STATE(343), - [sym_string] = STATE(461), - [sym_simple_expansion] = STATE(461), - [sym_expansion] = STATE(461), - [sym_command_substitution] = STATE(461), - [sym_process_substitution] = STATE(461), - [sym_word] = ACTIONS(834), - [anon_sym_DQUOTE] = ACTIONS(562), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(564), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(566), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(568), - [anon_sym_BQUOTE] = ACTIONS(570), - [anon_sym_LT_LPAREN] = ACTIONS(572), - [anon_sym_GT_LPAREN] = ACTIONS(572), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(836), + [sym__assignment] = STATE(249), + [anon_sym_EQ] = ACTIONS(1004), + [anon_sym_PLUS_EQ] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(58), + [sym_comment] = ACTIONS(48), }, [213] = { - [aux_sym_concatenation_repeat1] = STATE(205), - [sym_file_descriptor] = ACTIONS(580), - [sym_word] = ACTIONS(580), - [sym__concat] = ACTIONS(56), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_RPAREN] = ACTIONS(582), - [anon_sym_SEMI_SEMI] = ACTIONS(582), - [anon_sym_PIPE_AMP] = ACTIONS(582), - [anon_sym_AMP_AMP] = ACTIONS(582), - [anon_sym_PIPE_PIPE] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(582), - [anon_sym_GT_GT] = ACTIONS(582), - [anon_sym_AMP_GT] = ACTIONS(582), - [anon_sym_AMP_GT_GT] = ACTIONS(582), - [anon_sym_LT_AMP] = ACTIONS(582), - [anon_sym_GT_AMP] = ACTIONS(582), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_LT_LT_DASH] = ACTIONS(582), - [anon_sym_DQUOTE] = ACTIONS(582), - [sym_raw_string] = ACTIONS(582), - [anon_sym_DOLLAR] = ACTIONS(582), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(582), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(582), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_LF] = ACTIONS(582), - [anon_sym_AMP] = ACTIONS(582), + [sym__assignment] = STATE(249), + [anon_sym_EQ] = ACTIONS(1004), + [anon_sym_PLUS_EQ] = ACTIONS(1004), + [sym_comment] = ACTIONS(48), }, [214] = { - [sym_file_redirect] = STATE(134), - [sym_heredoc_redirect] = STATE(134), - [sym_concatenation] = STATE(135), - [sym_string] = STATE(211), - [sym_simple_expansion] = STATE(211), - [sym_expansion] = STATE(211), - [sym_command_substitution] = STATE(211), - [sym_process_substitution] = STATE(211), - [aux_sym_for_statement_repeat1] = STATE(463), - [aux_sym_command_repeat2] = STATE(464), - [sym_file_descriptor] = ACTIONS(348), - [sym_word] = ACTIONS(350), - [anon_sym_PIPE] = ACTIONS(588), - [anon_sym_RPAREN] = ACTIONS(588), - [anon_sym_SEMI_SEMI] = ACTIONS(588), - [anon_sym_PIPE_AMP] = ACTIONS(588), - [anon_sym_AMP_AMP] = ACTIONS(588), - [anon_sym_PIPE_PIPE] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(352), - [anon_sym_GT] = ACTIONS(352), - [anon_sym_GT_GT] = ACTIONS(352), - [anon_sym_AMP_GT] = ACTIONS(352), - [anon_sym_AMP_GT_GT] = ACTIONS(352), - [anon_sym_LT_AMP] = ACTIONS(352), - [anon_sym_GT_AMP] = ACTIONS(352), - [anon_sym_LT_LT] = ACTIONS(216), - [anon_sym_LT_LT_DASH] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(218), - [sym_raw_string] = ACTIONS(354), - [anon_sym_DOLLAR] = ACTIONS(222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(226), - [anon_sym_BQUOTE] = ACTIONS(228), - [anon_sym_LT_LPAREN] = ACTIONS(230), - [anon_sym_GT_LPAREN] = ACTIONS(230), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(356), - [anon_sym_SEMI] = ACTIONS(588), - [anon_sym_LF] = ACTIONS(588), - [anon_sym_AMP] = ACTIONS(588), + [sym_variable_assignment] = STATE(70), + [sym_subscript] = STATE(213), + [aux_sym_declaration_command_repeat1] = STATE(518), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(444), + [anon_sym_RPAREN] = ACTIONS(444), + [anon_sym_SEMI_SEMI] = ACTIONS(444), + [anon_sym_PIPE_AMP] = ACTIONS(444), + [anon_sym_AMP_AMP] = ACTIONS(444), + [anon_sym_PIPE_PIPE] = ACTIONS(444), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(112), + [sym_word] = ACTIONS(114), + [anon_sym_SEMI] = ACTIONS(444), + [anon_sym_LF] = ACTIONS(444), + [anon_sym_AMP] = ACTIONS(444), }, [215] = { - [sym_file_redirect] = STATE(134), - [sym_heredoc_redirect] = STATE(134), - [aux_sym_command_repeat2] = STATE(465), - [sym_file_descriptor] = ACTIONS(348), - [anon_sym_PIPE] = ACTIONS(588), - [anon_sym_RPAREN] = ACTIONS(588), - [anon_sym_SEMI_SEMI] = ACTIONS(588), - [anon_sym_PIPE_AMP] = ACTIONS(588), - [anon_sym_AMP_AMP] = ACTIONS(588), - [anon_sym_PIPE_PIPE] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(352), - [anon_sym_GT] = ACTIONS(352), - [anon_sym_GT_GT] = ACTIONS(352), - [anon_sym_AMP_GT] = ACTIONS(352), - [anon_sym_AMP_GT_GT] = ACTIONS(352), - [anon_sym_LT_AMP] = ACTIONS(352), - [anon_sym_GT_AMP] = ACTIONS(352), - [anon_sym_LT_LT] = ACTIONS(216), - [anon_sym_LT_LT_DASH] = ACTIONS(216), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(588), - [anon_sym_LF] = ACTIONS(588), - [anon_sym_AMP] = ACTIONS(588), + [sym_string] = STATE(519), + [sym_simple_expansion] = STATE(519), + [sym_expansion] = STATE(519), + [sym_command_substitution] = STATE(519), + [sym_process_substitution] = STATE(519), + [sym__special_characters] = ACTIONS(1006), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1006), }, [216] = { - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_RPAREN] = ACTIONS(838), - [anon_sym_SEMI_SEMI] = ACTIONS(840), - [anon_sym_PIPE_AMP] = ACTIONS(340), - [anon_sym_AMP_AMP] = ACTIONS(346), - [anon_sym_PIPE_PIPE] = ACTIONS(346), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(840), - [anon_sym_LF] = ACTIONS(840), - [anon_sym_AMP] = ACTIONS(840), + [aux_sym_concatenation_repeat1] = STATE(520), + [sym_file_descriptor] = ACTIONS(478), + [sym__concat] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(480), + [anon_sym_SEMI_SEMI] = ACTIONS(480), + [anon_sym_PIPE_AMP] = ACTIONS(480), + [anon_sym_AMP_AMP] = ACTIONS(480), + [anon_sym_PIPE_PIPE] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_GT_GT] = ACTIONS(480), + [anon_sym_AMP_GT] = ACTIONS(480), + [anon_sym_AMP_GT_GT] = ACTIONS(480), + [anon_sym_LT_AMP] = ACTIONS(480), + [anon_sym_GT_AMP] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(480), + [anon_sym_LT_LT_DASH] = ACTIONS(480), + [anon_sym_LT_LT_LT] = ACTIONS(480), + [sym__special_characters] = ACTIONS(480), + [anon_sym_DQUOTE] = ACTIONS(480), + [sym_raw_string] = ACTIONS(480), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(480), + [anon_sym_LT_LPAREN] = ACTIONS(480), + [anon_sym_GT_LPAREN] = ACTIONS(480), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(480), + [anon_sym_SEMI] = ACTIONS(480), + [anon_sym_LF] = ACTIONS(480), + [anon_sym_AMP] = ACTIONS(480), }, [217] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_RPAREN] = ACTIONS(838), - [anon_sym_SEMI_SEMI] = ACTIONS(840), - [anon_sym_PIPE_AMP] = ACTIONS(340), - [anon_sym_AMP_AMP] = ACTIONS(346), - [anon_sym_PIPE_PIPE] = ACTIONS(346), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(236), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(236), - [anon_sym_SEMI] = ACTIONS(840), - [anon_sym_LF] = ACTIONS(840), - [anon_sym_AMP] = ACTIONS(840), + [sym_file_descriptor] = ACTIONS(482), + [sym__concat] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(484), + [anon_sym_RPAREN] = ACTIONS(484), + [anon_sym_SEMI_SEMI] = ACTIONS(484), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(484), + [anon_sym_PIPE_PIPE] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_GT_GT] = ACTIONS(484), + [anon_sym_AMP_GT] = ACTIONS(484), + [anon_sym_AMP_GT_GT] = ACTIONS(484), + [anon_sym_LT_AMP] = ACTIONS(484), + [anon_sym_GT_AMP] = ACTIONS(484), + [anon_sym_LT_LT] = ACTIONS(484), + [anon_sym_LT_LT_DASH] = ACTIONS(484), + [anon_sym_LT_LT_LT] = ACTIONS(484), + [sym__special_characters] = ACTIONS(484), + [anon_sym_DQUOTE] = ACTIONS(484), + [sym_raw_string] = ACTIONS(484), + [anon_sym_DOLLAR] = ACTIONS(484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(484), + [anon_sym_BQUOTE] = ACTIONS(484), + [anon_sym_LT_LPAREN] = ACTIONS(484), + [anon_sym_GT_LPAREN] = ACTIONS(484), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(484), + [anon_sym_SEMI] = ACTIONS(484), + [anon_sym_LF] = ACTIONS(484), + [anon_sym_AMP] = ACTIONS(484), }, [218] = { - [sym__terminated_statement] = STATE(21), - [sym_for_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_function_definition] = STATE(22), - [sym_subshell] = STATE(22), - [sym_pipeline] = STATE(22), - [sym_list] = STATE(22), - [sym_command] = STATE(22), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(24), - [sym_declaration_command] = STATE(22), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(218), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(590), - [sym_word] = ACTIONS(593), - [sym_variable_name] = ACTIONS(596), - [anon_sym_for] = ACTIONS(601), - [anon_sym_while] = ACTIONS(604), - [anon_sym_if] = ACTIONS(607), - [anon_sym_case] = ACTIONS(610), - [anon_sym_function] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_declare] = ACTIONS(619), - [anon_sym_typeset] = ACTIONS(619), - [anon_sym_export] = ACTIONS(619), - [anon_sym_readonly] = ACTIONS(619), - [anon_sym_local] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(622), - [anon_sym_GT_GT] = ACTIONS(625), - [anon_sym_AMP_GT] = ACTIONS(622), - [anon_sym_AMP_GT_GT] = ACTIONS(625), - [anon_sym_LT_AMP] = ACTIONS(625), - [anon_sym_GT_AMP] = ACTIONS(625), - [anon_sym_DQUOTE] = ACTIONS(628), - [sym_raw_string] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(634), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(637), - [anon_sym_BQUOTE] = ACTIONS(640), - [anon_sym_LT_LPAREN] = ACTIONS(643), - [anon_sym_GT_LPAREN] = ACTIONS(643), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(646), + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), }, [219] = { - [aux_sym_concatenation_repeat1] = STATE(205), - [sym_file_descriptor] = ACTIONS(188), - [sym_word] = ACTIONS(188), - [sym__concat] = ACTIONS(56), - [anon_sym_PIPE] = ACTIONS(190), - [anon_sym_RPAREN] = ACTIONS(190), - [anon_sym_SEMI_SEMI] = ACTIONS(190), - [anon_sym_PIPE_AMP] = ACTIONS(190), - [anon_sym_AMP_AMP] = ACTIONS(190), - [anon_sym_PIPE_PIPE] = ACTIONS(190), - [anon_sym_LT] = ACTIONS(190), - [anon_sym_GT] = ACTIONS(190), - [anon_sym_GT_GT] = ACTIONS(190), - [anon_sym_AMP_GT] = ACTIONS(190), - [anon_sym_AMP_GT_GT] = ACTIONS(190), - [anon_sym_LT_AMP] = ACTIONS(190), - [anon_sym_GT_AMP] = ACTIONS(190), - [anon_sym_LT_LT] = ACTIONS(190), - [anon_sym_LT_LT_DASH] = ACTIONS(190), - [anon_sym_DQUOTE] = ACTIONS(190), - [sym_raw_string] = ACTIONS(190), - [anon_sym_DOLLAR] = ACTIONS(190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(190), - [anon_sym_BQUOTE] = ACTIONS(190), - [anon_sym_LT_LPAREN] = ACTIONS(190), - [anon_sym_GT_LPAREN] = ACTIONS(190), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(190), - [anon_sym_SEMI] = ACTIONS(190), - [anon_sym_LF] = ACTIONS(190), - [anon_sym_AMP] = ACTIONS(190), + [sym_file_descriptor] = ACTIONS(510), + [sym__concat] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(512), + [anon_sym_RPAREN] = ACTIONS(512), + [anon_sym_SEMI_SEMI] = ACTIONS(512), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(512), + [anon_sym_PIPE_PIPE] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_AMP_GT] = ACTIONS(512), + [anon_sym_AMP_GT_GT] = ACTIONS(512), + [anon_sym_LT_AMP] = ACTIONS(512), + [anon_sym_GT_AMP] = ACTIONS(512), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_LT_LT_DASH] = ACTIONS(512), + [anon_sym_LT_LT_LT] = ACTIONS(512), + [sym__special_characters] = ACTIONS(512), + [anon_sym_DQUOTE] = ACTIONS(512), + [sym_raw_string] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(512), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(512), + [anon_sym_BQUOTE] = ACTIONS(512), + [anon_sym_LT_LPAREN] = ACTIONS(512), + [anon_sym_GT_LPAREN] = ACTIONS(512), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(512), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_LF] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(512), }, [220] = { - [sym_file_redirect] = STATE(134), - [sym_heredoc_redirect] = STATE(134), - [sym_concatenation] = STATE(135), - [sym_string] = STATE(211), - [sym_simple_expansion] = STATE(211), - [sym_expansion] = STATE(211), - [sym_command_substitution] = STATE(211), - [sym_process_substitution] = STATE(211), - [aux_sym_for_statement_repeat1] = STATE(467), - [aux_sym_command_repeat2] = STATE(464), - [sym_file_descriptor] = ACTIONS(348), - [sym_word] = ACTIONS(350), - [anon_sym_PIPE] = ACTIONS(588), - [anon_sym_RPAREN] = ACTIONS(588), - [anon_sym_SEMI_SEMI] = ACTIONS(588), - [anon_sym_PIPE_AMP] = ACTIONS(588), - [anon_sym_AMP_AMP] = ACTIONS(588), - [anon_sym_PIPE_PIPE] = ACTIONS(588), - [anon_sym_LT] = ACTIONS(352), - [anon_sym_GT] = ACTIONS(352), - [anon_sym_GT_GT] = ACTIONS(352), - [anon_sym_AMP_GT] = ACTIONS(352), - [anon_sym_AMP_GT_GT] = ACTIONS(352), - [anon_sym_LT_AMP] = ACTIONS(352), - [anon_sym_GT_AMP] = ACTIONS(352), - [anon_sym_LT_LT] = ACTIONS(216), - [anon_sym_LT_LT_DASH] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(218), - [sym_raw_string] = ACTIONS(354), - [anon_sym_DOLLAR] = ACTIONS(222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(226), - [anon_sym_BQUOTE] = ACTIONS(228), - [anon_sym_LT_LPAREN] = ACTIONS(230), - [anon_sym_GT_LPAREN] = ACTIONS(230), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(356), - [anon_sym_SEMI] = ACTIONS(588), - [anon_sym_LF] = ACTIONS(588), - [anon_sym_AMP] = ACTIONS(588), + [sym_file_descriptor] = ACTIONS(514), + [sym__concat] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(516), + [anon_sym_SEMI_SEMI] = ACTIONS(516), + [anon_sym_PIPE_AMP] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(516), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_GT_GT] = ACTIONS(516), + [anon_sym_AMP_GT] = ACTIONS(516), + [anon_sym_AMP_GT_GT] = ACTIONS(516), + [anon_sym_LT_AMP] = ACTIONS(516), + [anon_sym_GT_AMP] = ACTIONS(516), + [anon_sym_LT_LT] = ACTIONS(516), + [anon_sym_LT_LT_DASH] = ACTIONS(516), + [anon_sym_LT_LT_LT] = ACTIONS(516), + [sym__special_characters] = ACTIONS(516), + [anon_sym_DQUOTE] = ACTIONS(516), + [sym_raw_string] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(516), + [anon_sym_BQUOTE] = ACTIONS(516), + [anon_sym_LT_LPAREN] = ACTIONS(516), + [anon_sym_GT_LPAREN] = ACTIONS(516), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_LF] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(516), }, [221] = { - [sym_concatenation] = STATE(469), - [sym_string] = STATE(468), - [sym_array] = STATE(469), - [sym_simple_expansion] = STATE(468), - [sym_expansion] = STATE(468), - [sym_command_substitution] = STATE(468), - [sym_process_substitution] = STATE(468), - [sym_word] = ACTIONS(842), - [sym__empty_value] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [sym_raw_string] = ACTIONS(842), - [anon_sym_DOLLAR] = ACTIONS(850), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(854), - [anon_sym_BQUOTE] = ACTIONS(856), - [anon_sym_LT_LPAREN] = ACTIONS(858), - [anon_sym_GT_LPAREN] = ACTIONS(858), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(860), + [anon_sym_EQ] = ACTIONS(1012), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), }, [222] = { - [sym_word] = ACTIONS(294), - [sym_variable_name] = ACTIONS(294), - [anon_sym_PIPE] = ACTIONS(296), - [anon_sym_RPAREN] = ACTIONS(296), - [anon_sym_SEMI_SEMI] = ACTIONS(296), - [anon_sym_PIPE_AMP] = ACTIONS(296), - [anon_sym_AMP_AMP] = ACTIONS(296), - [anon_sym_PIPE_PIPE] = ACTIONS(296), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(296), - [anon_sym_SEMI] = ACTIONS(296), - [anon_sym_LF] = ACTIONS(296), - [anon_sym_AMP] = ACTIONS(296), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_COLON] = ACTIONS(1018), + [anon_sym_COLON_QMARK] = ACTIONS(1016), + [anon_sym_COLON_DASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1016), + [sym_comment] = ACTIONS(48), }, [223] = { - [sym_variable_assignment] = STATE(62), - [sym_subscript] = STATE(65), - [aux_sym_declaration_command_repeat1] = STATE(223), - [sym_word] = ACTIONS(862), - [sym_variable_name] = ACTIONS(865), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_SEMI_SEMI] = ACTIONS(868), - [anon_sym_PIPE_AMP] = ACTIONS(868), - [anon_sym_AMP_AMP] = ACTIONS(868), - [anon_sym_PIPE_PIPE] = ACTIONS(868), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(870), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_LF] = ACTIONS(868), - [anon_sym_AMP] = ACTIONS(868), + [sym_subscript] = STATE(528), + [sym_variable_name] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH] = ACTIONS(1022), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1022), + [anon_sym_QMARK] = ACTIONS(1022), + [anon_sym_0] = ACTIONS(1026), + [anon_sym__] = ACTIONS(1026), }, [224] = { - [sym_string] = STATE(478), - [sym_simple_expansion] = STATE(478), - [sym_expansion] = STATE(478), - [sym_command_substitution] = STATE(478), - [sym_process_substitution] = STATE(478), - [sym_word] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(106), - [sym_raw_string] = ACTIONS(873), - [anon_sym_DOLLAR] = ACTIONS(108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(110), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(112), - [anon_sym_BQUOTE] = ACTIONS(114), - [anon_sym_LT_LPAREN] = ACTIONS(116), - [anon_sym_GT_LPAREN] = ACTIONS(116), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(875), + [anon_sym_RBRACE] = ACTIONS(1028), + [anon_sym_EQ] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1032), + [anon_sym_COLON_QMARK] = ACTIONS(1030), + [anon_sym_COLON_DASH] = ACTIONS(1030), + [anon_sym_PERCENT] = ACTIONS(1030), + [anon_sym_SLASH] = ACTIONS(1030), + [anon_sym_DASH] = ACTIONS(1030), + [sym_comment] = ACTIONS(48), }, [225] = { - [aux_sym_concatenation_repeat1] = STATE(480), - [sym_file_descriptor] = ACTIONS(254), - [sym_word] = ACTIONS(254), - [sym__concat] = ACTIONS(374), - [sym_variable_name] = ACTIONS(254), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_GT_GT] = ACTIONS(254), - [anon_sym_AMP_GT] = ACTIONS(877), - [anon_sym_AMP_GT_GT] = ACTIONS(254), - [anon_sym_LT_AMP] = ACTIONS(254), - [anon_sym_GT_AMP] = ACTIONS(254), - [anon_sym_DQUOTE] = ACTIONS(254), - [sym_raw_string] = ACTIONS(254), - [anon_sym_DOLLAR] = ACTIONS(877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(254), - [anon_sym_LT_LPAREN] = ACTIONS(254), - [anon_sym_GT_LPAREN] = ACTIONS(254), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_EQ] = ACTIONS(1012), + [anon_sym_COLON] = ACTIONS(1036), + [anon_sym_COLON_QMARK] = ACTIONS(1012), + [anon_sym_COLON_DASH] = ACTIONS(1012), + [anon_sym_PERCENT] = ACTIONS(1012), + [anon_sym_SLASH] = ACTIONS(1012), + [anon_sym_DASH] = ACTIONS(1012), + [sym_comment] = ACTIONS(48), }, [226] = { - [sym_file_descriptor] = ACTIONS(394), - [sym_word] = ACTIONS(394), - [sym__concat] = ACTIONS(394), - [sym_variable_name] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(879), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_AMP_GT] = ACTIONS(879), - [anon_sym_AMP_GT_GT] = ACTIONS(394), - [anon_sym_LT_AMP] = ACTIONS(394), - [anon_sym_GT_AMP] = ACTIONS(394), - [anon_sym_DQUOTE] = ACTIONS(394), - [sym_raw_string] = ACTIONS(394), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(394), - [anon_sym_BQUOTE] = ACTIONS(394), - [anon_sym_LT_LPAREN] = ACTIONS(394), - [anon_sym_GT_LPAREN] = ACTIONS(394), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(879), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1038), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), }, [227] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(252), - [anon_sym_DQUOTE] = ACTIONS(881), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1038), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), }, [228] = { - [sym_file_descriptor] = ACTIONS(412), - [sym_word] = ACTIONS(412), - [sym__concat] = ACTIONS(412), - [sym_variable_name] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(424), - [anon_sym_GT] = ACTIONS(424), - [anon_sym_GT_GT] = ACTIONS(412), - [anon_sym_AMP_GT] = ACTIONS(424), - [anon_sym_AMP_GT_GT] = ACTIONS(412), - [anon_sym_LT_AMP] = ACTIONS(412), - [anon_sym_GT_AMP] = ACTIONS(412), - [anon_sym_DQUOTE] = ACTIONS(412), - [sym_raw_string] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(412), - [anon_sym_BQUOTE] = ACTIONS(412), - [anon_sym_LT_LPAREN] = ACTIONS(412), - [anon_sym_GT_LPAREN] = ACTIONS(412), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(424), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(1038), + [sym_comment] = ACTIONS(48), }, [229] = { - [sym_file_descriptor] = ACTIONS(416), - [sym_word] = ACTIONS(416), - [sym__concat] = ACTIONS(416), - [sym_variable_name] = ACTIONS(416), - [anon_sym_LT] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_GT_GT] = ACTIONS(416), - [anon_sym_AMP_GT] = ACTIONS(883), - [anon_sym_AMP_GT_GT] = ACTIONS(416), - [anon_sym_LT_AMP] = ACTIONS(416), - [anon_sym_GT_AMP] = ACTIONS(416), - [anon_sym_DQUOTE] = ACTIONS(416), - [sym_raw_string] = ACTIONS(416), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(416), - [anon_sym_BQUOTE] = ACTIONS(416), - [anon_sym_LT_LPAREN] = ACTIONS(416), - [anon_sym_GT_LPAREN] = ACTIONS(416), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(883), + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(1038), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), }, [230] = { - [sym_file_descriptor] = ACTIONS(420), - [sym_word] = ACTIONS(420), - [sym__concat] = ACTIONS(420), - [sym_variable_name] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(420), - [anon_sym_AMP_GT] = ACTIONS(885), - [anon_sym_AMP_GT_GT] = ACTIONS(420), - [anon_sym_LT_AMP] = ACTIONS(420), - [anon_sym_GT_AMP] = ACTIONS(420), - [anon_sym_DQUOTE] = ACTIONS(420), - [sym_raw_string] = ACTIONS(420), - [anon_sym_DOLLAR] = ACTIONS(885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(420), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), - [anon_sym_BQUOTE] = ACTIONS(420), - [anon_sym_LT_LPAREN] = ACTIONS(420), - [anon_sym_GT_LPAREN] = ACTIONS(420), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1040), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), }, [231] = { - [sym_special_variable_name] = STATE(483), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(138), - [anon_sym_AT] = ACTIONS(138), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_COLON_QMARK] = ACTIONS(412), - [anon_sym_COLON_DASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(412), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(887), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1040), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), }, [232] = { - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_EQ] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(893), - [anon_sym_COLON] = ACTIONS(895), - [anon_sym_COLON_QMARK] = ACTIONS(891), - [anon_sym_COLON_DASH] = ACTIONS(891), - [anon_sym_PERCENT] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(891), - [sym_comment] = ACTIONS(46), + [anon_sym_RPAREN] = ACTIONS(1042), + [sym_comment] = ACTIONS(48), }, [233] = { - [anon_sym_RBRACE] = ACTIONS(897), - [anon_sym_EQ] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(901), - [anon_sym_COLON] = ACTIONS(903), - [anon_sym_COLON_QMARK] = ACTIONS(899), - [anon_sym_COLON_DASH] = ACTIONS(899), - [anon_sym_PERCENT] = ACTIONS(899), - [anon_sym_SLASH] = ACTIONS(899), - [sym_comment] = ACTIONS(46), + [sym_for_statement] = STATE(379), + [sym_while_statement] = STATE(379), + [sym_if_statement] = STATE(379), + [sym_case_statement] = STATE(379), + [sym_function_definition] = STATE(379), + [sym_subshell] = STATE(379), + [sym_pipeline] = STATE(379), + [sym_list] = STATE(379), + [sym_command] = STATE(379), + [sym_command_name] = STATE(63), + [sym_variable_assignment] = STATE(380), + [sym_declaration_command] = STATE(379), + [sym_subscript] = STATE(65), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(55), + [sym_simple_expansion] = STATE(55), + [sym_expansion] = STATE(55), + [sym_command_substitution] = STATE(55), + [sym_process_substitution] = STATE(55), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(82), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(84), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(86), + [anon_sym_typeset] = ACTIONS(86), + [anon_sym_export] = ACTIONS(86), + [anon_sym_readonly] = ACTIONS(86), + [anon_sym_local] = ACTIONS(86), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(88), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(92), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(104), }, [234] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(905), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(1044), + [anon_sym_SEMI_SEMI] = ACTIONS(1044), + [anon_sym_PIPE_AMP] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1044), + [anon_sym_PIPE_PIPE] = ACTIONS(1044), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_LF] = ACTIONS(1044), + [anon_sym_AMP] = ACTIONS(1044), }, [235] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(905), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(684), + [anon_sym_for] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_case] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(1046), + [anon_sym_function] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_declare] = ACTIONS(686), + [anon_sym_typeset] = ACTIONS(686), + [anon_sym_export] = ACTIONS(686), + [anon_sym_readonly] = ACTIONS(686), + [anon_sym_local] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(684), + [anon_sym_AMP_GT] = ACTIONS(686), + [anon_sym_AMP_GT_GT] = ACTIONS(684), + [anon_sym_LT_AMP] = ACTIONS(684), + [anon_sym_GT_AMP] = ACTIONS(684), + [sym__special_characters] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(684), + [sym_raw_string] = ACTIONS(684), + [anon_sym_DOLLAR] = ACTIONS(686), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(684), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(684), + [anon_sym_BQUOTE] = ACTIONS(684), + [anon_sym_LT_LPAREN] = ACTIONS(684), + [anon_sym_GT_LPAREN] = ACTIONS(684), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(688), }, [236] = { - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_BQUOTE] = ACTIONS(905), - [sym_comment] = ACTIONS(46), + [sym_for_statement] = STATE(536), + [sym_while_statement] = STATE(536), + [sym_if_statement] = STATE(536), + [sym_case_statement] = STATE(536), + [sym_function_definition] = STATE(536), + [sym_subshell] = STATE(536), + [sym_pipeline] = STATE(536), + [sym_list] = STATE(536), + [sym_command] = STATE(536), + [sym_command_name] = STATE(63), + [sym_variable_assignment] = STATE(537), + [sym_declaration_command] = STATE(536), + [sym_subscript] = STATE(65), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(55), + [sym_simple_expansion] = STATE(55), + [sym_expansion] = STATE(55), + [sym_command_substitution] = STATE(55), + [sym_process_substitution] = STATE(55), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(82), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(84), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(86), + [anon_sym_typeset] = ACTIONS(86), + [anon_sym_export] = ACTIONS(86), + [anon_sym_readonly] = ACTIONS(86), + [anon_sym_local] = ACTIONS(86), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(88), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(92), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(104), }, [237] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(905), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), + [anon_sym_LT] = ACTIONS(1048), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1050), + [anon_sym_AMP_GT] = ACTIONS(1048), + [anon_sym_AMP_GT_GT] = ACTIONS(1050), + [anon_sym_LT_AMP] = ACTIONS(1050), + [anon_sym_GT_AMP] = ACTIONS(1050), + [sym_comment] = ACTIONS(48), }, [238] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(907), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), + [sym_concatenation] = STATE(392), + [sym_string] = STATE(541), + [sym_simple_expansion] = STATE(541), + [sym_expansion] = STATE(541), + [sym_command_substitution] = STATE(541), + [sym_process_substitution] = STATE(541), + [sym__special_characters] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_raw_string] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1058), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1060), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1062), + [anon_sym_BQUOTE] = ACTIONS(1064), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1068), }, [239] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(907), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), + [sym_concatenation] = STATE(398), + [sym_string] = STATE(548), + [sym_simple_expansion] = STATE(548), + [sym_expansion] = STATE(548), + [sym_command_substitution] = STATE(548), + [sym_process_substitution] = STATE(548), + [sym__special_characters] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_raw_string] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1058), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1060), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1062), + [anon_sym_BQUOTE] = ACTIONS(1064), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1074), }, [240] = { - [aux_sym_concatenation_repeat1] = STATE(480), - [sym_file_descriptor] = ACTIONS(542), - [sym_word] = ACTIONS(542), - [sym__concat] = ACTIONS(374), - [sym_variable_name] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_AMP_GT] = ACTIONS(909), - [anon_sym_AMP_GT_GT] = ACTIONS(542), - [anon_sym_LT_AMP] = ACTIONS(542), - [anon_sym_GT_AMP] = ACTIONS(542), - [anon_sym_DQUOTE] = ACTIONS(542), - [sym_raw_string] = ACTIONS(542), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(542), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(542), - [anon_sym_BQUOTE] = ACTIONS(542), - [anon_sym_LT_LPAREN] = ACTIONS(542), - [anon_sym_GT_LPAREN] = ACTIONS(542), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(909), - }, - [241] = { - [anon_sym_DQUOTE] = ACTIONS(414), - [sym__string_content] = ACTIONS(414), - [anon_sym_DOLLAR] = ACTIONS(414), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(414), - [anon_sym_BQUOTE] = ACTIONS(414), - [sym_comment] = ACTIONS(60), - }, - [242] = { - [anon_sym_DQUOTE] = ACTIONS(418), - [sym__string_content] = ACTIONS(418), - [anon_sym_DOLLAR] = ACTIONS(418), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), - [anon_sym_BQUOTE] = ACTIONS(418), - [sym_comment] = ACTIONS(60), - }, - [243] = { - [anon_sym_DQUOTE] = ACTIONS(422), - [sym__string_content] = ACTIONS(422), - [anon_sym_DOLLAR] = ACTIONS(422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(422), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(422), - [anon_sym_BQUOTE] = ACTIONS(422), - [sym_comment] = ACTIONS(60), - }, - [244] = { - [sym_special_variable_name] = STATE(493), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(138), - [anon_sym_AT] = ACTIONS(138), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_COLON_QMARK] = ACTIONS(412), - [anon_sym_COLON_DASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(412), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [245] = { - [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_EQ] = ACTIONS(915), - [anon_sym_LBRACK] = ACTIONS(917), - [anon_sym_COLON] = ACTIONS(919), - [anon_sym_COLON_QMARK] = ACTIONS(915), - [anon_sym_COLON_DASH] = ACTIONS(915), - [anon_sym_PERCENT] = ACTIONS(915), - [anon_sym_SLASH] = ACTIONS(915), - [sym_comment] = ACTIONS(46), - }, - [246] = { - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_EQ] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_COLON] = ACTIONS(927), - [anon_sym_COLON_QMARK] = ACTIONS(923), - [anon_sym_COLON_DASH] = ACTIONS(923), - [anon_sym_PERCENT] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [sym_comment] = ACTIONS(46), - }, - [247] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(929), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [248] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(929), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [249] = { - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_BQUOTE] = ACTIONS(929), - [sym_comment] = ACTIONS(46), - }, - [250] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(929), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [251] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_word] = ACTIONS(931), - [sym__concat] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_RPAREN] = ACTIONS(933), - [anon_sym_SEMI_SEMI] = ACTIONS(933), - [anon_sym_PIPE_AMP] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(933), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_GT_GT] = ACTIONS(933), - [anon_sym_AMP_GT] = ACTIONS(933), - [anon_sym_AMP_GT_GT] = ACTIONS(933), - [anon_sym_LT_AMP] = ACTIONS(933), - [anon_sym_GT_AMP] = ACTIONS(933), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_LT_LT_DASH] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_raw_string] = ACTIONS(933), - [anon_sym_DOLLAR] = ACTIONS(933), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), - [anon_sym_BQUOTE] = ACTIONS(933), - [anon_sym_LT_LPAREN] = ACTIONS(933), - [anon_sym_GT_LPAREN] = ACTIONS(933), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - }, - [252] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(252), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym__string_content] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(940), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(946), - [anon_sym_BQUOTE] = ACTIONS(949), - [sym_comment] = ACTIONS(60), - }, - [253] = { - [anon_sym_RBRACE] = ACTIONS(952), - [anon_sym_LBRACK] = ACTIONS(954), - [sym_comment] = ACTIONS(46), - }, - [254] = { - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_LBRACK] = ACTIONS(958), - [sym_comment] = ACTIONS(46), - }, - [255] = { - [sym_file_descriptor] = ACTIONS(960), - [sym_word] = ACTIONS(960), - [sym__concat] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_RPAREN] = ACTIONS(962), - [anon_sym_SEMI_SEMI] = ACTIONS(962), - [anon_sym_PIPE_AMP] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(962), - [anon_sym_PIPE_PIPE] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(962), - [anon_sym_GT] = ACTIONS(962), - [anon_sym_GT_GT] = ACTIONS(962), - [anon_sym_AMP_GT] = ACTIONS(962), - [anon_sym_AMP_GT_GT] = ACTIONS(962), - [anon_sym_LT_AMP] = ACTIONS(962), - [anon_sym_GT_AMP] = ACTIONS(962), - [anon_sym_LT_LT] = ACTIONS(962), - [anon_sym_LT_LT_DASH] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_raw_string] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(962), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_LT_LPAREN] = ACTIONS(962), - [anon_sym_GT_LPAREN] = ACTIONS(962), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_LF] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - }, - [256] = { - [sym_concatenation] = STATE(508), - [sym_string] = STATE(505), - [sym_simple_expansion] = STATE(505), - [sym_expansion] = STATE(505), - [sym_command_substitution] = STATE(505), - [sym_process_substitution] = STATE(505), - [sym_word] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(968), - }, - [257] = { - [anon_sym_AT] = ACTIONS(970), - [sym_comment] = ACTIONS(46), - }, - [258] = { - [sym_file_descriptor] = ACTIONS(972), - [sym_word] = ACTIONS(972), - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(974), - [anon_sym_SEMI_SEMI] = ACTIONS(974), - [anon_sym_PIPE_AMP] = ACTIONS(974), - [anon_sym_AMP_AMP] = ACTIONS(974), - [anon_sym_PIPE_PIPE] = ACTIONS(974), - [anon_sym_LT] = ACTIONS(974), - [anon_sym_GT] = ACTIONS(974), - [anon_sym_GT_GT] = ACTIONS(974), - [anon_sym_AMP_GT] = ACTIONS(974), - [anon_sym_AMP_GT_GT] = ACTIONS(974), - [anon_sym_LT_AMP] = ACTIONS(974), - [anon_sym_GT_AMP] = ACTIONS(974), - [anon_sym_LT_LT] = ACTIONS(974), - [anon_sym_LT_LT_DASH] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym_raw_string] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(974), - [anon_sym_BQUOTE] = ACTIONS(974), - [anon_sym_LT_LPAREN] = ACTIONS(974), - [anon_sym_GT_LPAREN] = ACTIONS(974), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_LF] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - }, - [259] = { - [sym_concatenation] = STATE(512), - [sym_string] = STATE(510), - [sym_simple_expansion] = STATE(510), - [sym_expansion] = STATE(510), - [sym_command_substitution] = STATE(510), - [sym_process_substitution] = STATE(510), - [sym_word] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(976), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(978), - }, - [260] = { - [anon_sym_AT] = ACTIONS(980), - [sym_comment] = ACTIONS(46), - }, - [261] = { - [sym_string] = STATE(514), - [sym_simple_expansion] = STATE(514), - [sym_expansion] = STATE(514), - [sym_command_substitution] = STATE(514), - [sym_process_substitution] = STATE(514), - [sym_word] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(984), - }, - [262] = { - [aux_sym_concatenation_repeat1] = STATE(516), - [sym_file_descriptor] = ACTIONS(254), - [sym_word] = ACTIONS(254), - [sym__concat] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_RPAREN] = ACTIONS(254), - [anon_sym_PIPE_AMP] = ACTIONS(254), - [anon_sym_AMP_AMP] = ACTIONS(254), - [anon_sym_PIPE_PIPE] = ACTIONS(254), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_GT_GT] = ACTIONS(254), - [anon_sym_AMP_GT] = ACTIONS(877), - [anon_sym_AMP_GT_GT] = ACTIONS(254), - [anon_sym_LT_AMP] = ACTIONS(254), - [anon_sym_GT_AMP] = ACTIONS(254), - [anon_sym_LT_LT] = ACTIONS(877), - [anon_sym_LT_LT_DASH] = ACTIONS(254), - [anon_sym_DQUOTE] = ACTIONS(254), - [sym_raw_string] = ACTIONS(254), - [anon_sym_DOLLAR] = ACTIONS(877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(254), - [anon_sym_LT_LPAREN] = ACTIONS(254), - [anon_sym_GT_LPAREN] = ACTIONS(254), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(877), - }, - [263] = { - [sym_concatenation] = STATE(518), - [sym_string] = STATE(517), - [sym_array] = STATE(518), - [sym_simple_expansion] = STATE(517), - [sym_expansion] = STATE(517), - [sym_command_substitution] = STATE(517), - [sym_process_substitution] = STATE(517), - [sym_word] = ACTIONS(986), - [sym__empty_value] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym_raw_string] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(996), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(998), - [anon_sym_BQUOTE] = ACTIONS(1000), - [anon_sym_LT_LPAREN] = ACTIONS(1002), - [anon_sym_GT_LPAREN] = ACTIONS(1002), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1004), - }, - [264] = { - [sym_file_descriptor] = ACTIONS(294), - [sym_word] = ACTIONS(294), - [sym_variable_name] = ACTIONS(294), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(294), - [anon_sym_PIPE_AMP] = ACTIONS(294), - [anon_sym_AMP_AMP] = ACTIONS(294), - [anon_sym_PIPE_PIPE] = ACTIONS(294), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_GT] = ACTIONS(294), - [anon_sym_AMP_GT] = ACTIONS(1006), - [anon_sym_AMP_GT_GT] = ACTIONS(294), - [anon_sym_LT_AMP] = ACTIONS(294), - [anon_sym_GT_AMP] = ACTIONS(294), - [anon_sym_DQUOTE] = ACTIONS(294), - [sym_raw_string] = ACTIONS(294), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), - [anon_sym_BQUOTE] = ACTIONS(294), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1006), - }, - [265] = { - [anon_sym_in] = ACTIONS(1008), - [sym_comment] = ACTIONS(46), - }, - [266] = { - [sym_do_group] = STATE(529), - [anon_sym_do] = ACTIONS(1010), - [sym_comment] = ACTIONS(46), - }, - [267] = { - [anon_sym_then] = ACTIONS(1012), - [sym_comment] = ACTIONS(46), - }, - [268] = { - [aux_sym_concatenation_repeat1] = STATE(177), - [sym__concat] = ACTIONS(306), - [anon_sym_in] = ACTIONS(1014), - [anon_sym_SEMI_SEMI] = ACTIONS(1016), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_LF] = ACTIONS(1016), - [anon_sym_AMP] = ACTIONS(1016), - }, - [269] = { - [aux_sym_concatenation_repeat1] = STATE(194), - [sym__concat] = ACTIONS(306), - [anon_sym_in] = ACTIONS(1018), - [anon_sym_SEMI_SEMI] = ACTIONS(1020), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_LF] = ACTIONS(1020), - [anon_sym_AMP] = ACTIONS(1020), - }, - [270] = { - [anon_sym_in] = ACTIONS(1014), - [anon_sym_SEMI_SEMI] = ACTIONS(1016), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_LF] = ACTIONS(1016), - [anon_sym_AMP] = ACTIONS(1016), - }, - [271] = { - [sym_compound_statement] = STATE(537), - [anon_sym_LPAREN] = ACTIONS(1022), - [anon_sym_LBRACE] = ACTIONS(1024), - [sym_comment] = ACTIONS(46), - }, - [272] = { - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_RPAREN] = ACTIONS(1026), - [anon_sym_SEMI_SEMI] = ACTIONS(1028), - [anon_sym_PIPE_AMP] = ACTIONS(340), - [anon_sym_AMP_AMP] = ACTIONS(346), - [anon_sym_PIPE_PIPE] = ACTIONS(346), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_LF] = ACTIONS(1028), - [anon_sym_AMP] = ACTIONS(1028), - }, - [273] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_RPAREN] = ACTIONS(1026), - [anon_sym_SEMI_SEMI] = ACTIONS(1028), - [anon_sym_PIPE_AMP] = ACTIONS(340), - [anon_sym_AMP_AMP] = ACTIONS(346), - [anon_sym_PIPE_PIPE] = ACTIONS(346), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(236), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(236), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_LF] = ACTIONS(1028), - [anon_sym_AMP] = ACTIONS(1028), - }, - [274] = { - [sym__terminated_statement] = STATE(21), - [sym_for_statement] = STATE(540), - [sym_while_statement] = STATE(540), - [sym_if_statement] = STATE(540), - [sym_case_statement] = STATE(540), - [sym_function_definition] = STATE(540), - [sym_subshell] = STATE(540), - [sym_pipeline] = STATE(540), - [sym_list] = STATE(540), - [sym_command] = STATE(540), - [sym_command_name] = STATE(57), - [sym_variable_assignment] = STATE(541), - [sym_declaration_command] = STATE(540), - [sym_subscript] = STATE(59), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(51), - [sym_simple_expansion] = STATE(51), - [sym_expansion] = STATE(51), - [sym_command_substitution] = STATE(51), - [sym_process_substitution] = STATE(51), - [aux_sym_program_repeat1] = STATE(218), - [aux_sym_command_repeat1] = STATE(61), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(86), - [sym_variable_name] = ACTIONS(88), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(90), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(92), - [anon_sym_typeset] = ACTIONS(92), - [anon_sym_export] = ACTIONS(92), - [anon_sym_readonly] = ACTIONS(92), - [anon_sym_local] = ACTIONS(92), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(86), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(94), - }, - [275] = { - [sym_word] = ACTIONS(360), - [sym_variable_name] = ACTIONS(360), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_RPAREN] = ACTIONS(360), - [anon_sym_PIPE_AMP] = ACTIONS(360), - [anon_sym_AMP_AMP] = ACTIONS(360), - [anon_sym_PIPE_PIPE] = ACTIONS(360), - [anon_sym_BQUOTE] = ACTIONS(360), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1030), - }, - [276] = { - [sym__assignment] = STATE(543), - [anon_sym_EQ] = ACTIONS(1032), - [anon_sym_PLUS_EQ] = ACTIONS(1032), - [anon_sym_LBRACK] = ACTIONS(64), - [sym_comment] = ACTIONS(46), - }, - [277] = { - [sym_word] = ACTIONS(366), - [sym_variable_name] = ACTIONS(366), - [anon_sym_PIPE] = ACTIONS(1034), - [anon_sym_RPAREN] = ACTIONS(366), - [anon_sym_PIPE_AMP] = ACTIONS(366), - [anon_sym_AMP_AMP] = ACTIONS(366), - [anon_sym_PIPE_PIPE] = ACTIONS(366), - [anon_sym_BQUOTE] = ACTIONS(366), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1034), - }, - [278] = { - [sym__assignment] = STATE(543), - [anon_sym_EQ] = ACTIONS(1032), - [anon_sym_PLUS_EQ] = ACTIONS(1032), - [sym_comment] = ACTIONS(46), - }, - [279] = { - [sym_variable_assignment] = STATE(275), - [sym_subscript] = STATE(278), - [aux_sym_declaration_command_repeat1] = STATE(544), - [sym_word] = ACTIONS(458), - [sym_variable_name] = ACTIONS(460), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_RPAREN] = ACTIONS(1038), - [anon_sym_PIPE_AMP] = ACTIONS(1038), - [anon_sym_AMP_AMP] = ACTIONS(1038), - [anon_sym_PIPE_PIPE] = ACTIONS(1038), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(466), - }, - [280] = { - [sym_file_descriptor] = ACTIONS(394), - [sym_word] = ACTIONS(394), - [sym__concat] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(394), - [anon_sym_PIPE_AMP] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(879), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_AMP_GT] = ACTIONS(879), - [anon_sym_AMP_GT_GT] = ACTIONS(394), - [anon_sym_LT_AMP] = ACTIONS(394), - [anon_sym_GT_AMP] = ACTIONS(394), - [anon_sym_LT_LT] = ACTIONS(879), - [anon_sym_LT_LT_DASH] = ACTIONS(394), - [anon_sym_DQUOTE] = ACTIONS(394), - [sym_raw_string] = ACTIONS(394), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(394), - [anon_sym_BQUOTE] = ACTIONS(394), - [anon_sym_LT_LPAREN] = ACTIONS(394), - [anon_sym_GT_LPAREN] = ACTIONS(394), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(879), - }, - [281] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(252), - [anon_sym_DQUOTE] = ACTIONS(1040), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), - }, - [282] = { - [sym_file_descriptor] = ACTIONS(412), - [sym_word] = ACTIONS(412), - [sym__concat] = ACTIONS(412), - [anon_sym_PIPE] = ACTIONS(424), - [anon_sym_RPAREN] = ACTIONS(412), - [anon_sym_PIPE_AMP] = ACTIONS(412), - [anon_sym_AMP_AMP] = ACTIONS(412), - [anon_sym_PIPE_PIPE] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(424), - [anon_sym_GT] = ACTIONS(424), - [anon_sym_GT_GT] = ACTIONS(412), - [anon_sym_AMP_GT] = ACTIONS(424), - [anon_sym_AMP_GT_GT] = ACTIONS(412), - [anon_sym_LT_AMP] = ACTIONS(412), - [anon_sym_GT_AMP] = ACTIONS(412), - [anon_sym_LT_LT] = ACTIONS(424), - [anon_sym_LT_LT_DASH] = ACTIONS(412), - [anon_sym_DQUOTE] = ACTIONS(412), - [sym_raw_string] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(412), - [anon_sym_BQUOTE] = ACTIONS(412), - [anon_sym_LT_LPAREN] = ACTIONS(412), - [anon_sym_GT_LPAREN] = ACTIONS(412), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(424), - }, - [283] = { - [sym_file_descriptor] = ACTIONS(416), - [sym_word] = ACTIONS(416), - [sym__concat] = ACTIONS(416), - [anon_sym_PIPE] = ACTIONS(883), - [anon_sym_RPAREN] = ACTIONS(416), - [anon_sym_PIPE_AMP] = ACTIONS(416), - [anon_sym_AMP_AMP] = ACTIONS(416), - [anon_sym_PIPE_PIPE] = ACTIONS(416), - [anon_sym_LT] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_GT_GT] = ACTIONS(416), - [anon_sym_AMP_GT] = ACTIONS(883), - [anon_sym_AMP_GT_GT] = ACTIONS(416), - [anon_sym_LT_AMP] = ACTIONS(416), - [anon_sym_GT_AMP] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(883), - [anon_sym_LT_LT_DASH] = ACTIONS(416), - [anon_sym_DQUOTE] = ACTIONS(416), - [sym_raw_string] = ACTIONS(416), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(416), - [anon_sym_BQUOTE] = ACTIONS(416), - [anon_sym_LT_LPAREN] = ACTIONS(416), - [anon_sym_GT_LPAREN] = ACTIONS(416), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(883), - }, - [284] = { - [sym_file_descriptor] = ACTIONS(420), - [sym_word] = ACTIONS(420), - [sym__concat] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(420), - [anon_sym_PIPE_AMP] = ACTIONS(420), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(420), - [anon_sym_AMP_GT] = ACTIONS(885), - [anon_sym_AMP_GT_GT] = ACTIONS(420), - [anon_sym_LT_AMP] = ACTIONS(420), - [anon_sym_GT_AMP] = ACTIONS(420), - [anon_sym_LT_LT] = ACTIONS(885), - [anon_sym_LT_LT_DASH] = ACTIONS(420), - [anon_sym_DQUOTE] = ACTIONS(420), - [sym_raw_string] = ACTIONS(420), - [anon_sym_DOLLAR] = ACTIONS(885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(420), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), - [anon_sym_BQUOTE] = ACTIONS(420), - [anon_sym_LT_LPAREN] = ACTIONS(420), - [anon_sym_GT_LPAREN] = ACTIONS(420), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(885), - }, - [285] = { - [sym_special_variable_name] = STATE(547), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(138), - [anon_sym_AT] = ACTIONS(138), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_COLON_QMARK] = ACTIONS(412), - [anon_sym_COLON_DASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(412), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1042), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [286] = { - [anon_sym_RBRACE] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_COLON_QMARK] = ACTIONS(1046), - [anon_sym_COLON_DASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [sym_comment] = ACTIONS(46), - }, - [287] = { - [anon_sym_RBRACE] = ACTIONS(1052), - [anon_sym_EQ] = ACTIONS(1054), - [anon_sym_LBRACK] = ACTIONS(1056), - [anon_sym_COLON] = ACTIONS(1058), - [anon_sym_COLON_QMARK] = ACTIONS(1054), - [anon_sym_COLON_DASH] = ACTIONS(1054), - [anon_sym_PERCENT] = ACTIONS(1054), - [anon_sym_SLASH] = ACTIONS(1054), - [sym_comment] = ACTIONS(46), - }, - [288] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1060), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [289] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1060), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [290] = { - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_BQUOTE] = ACTIONS(1060), - [sym_comment] = ACTIONS(46), - }, - [291] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(1060), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [292] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1062), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [293] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1062), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [294] = { - [anon_sym_RPAREN] = ACTIONS(1064), - [sym_comment] = ACTIONS(46), - }, - [295] = { - [aux_sym_concatenation_repeat1] = STATE(516), - [sym_file_descriptor] = ACTIONS(542), - [sym_word] = ACTIONS(542), - [sym__concat] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(542), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_AMP_GT] = ACTIONS(909), - [anon_sym_AMP_GT_GT] = ACTIONS(542), - [anon_sym_LT_AMP] = ACTIONS(542), - [anon_sym_GT_AMP] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(909), - [anon_sym_LT_LT_DASH] = ACTIONS(542), - [anon_sym_DQUOTE] = ACTIONS(542), - [sym_raw_string] = ACTIONS(542), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(542), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(542), - [anon_sym_BQUOTE] = ACTIONS(542), - [anon_sym_LT_LPAREN] = ACTIONS(542), - [anon_sym_GT_LPAREN] = ACTIONS(542), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(909), - }, - [296] = { - [sym_for_statement] = STATE(557), - [sym_while_statement] = STATE(557), - [sym_if_statement] = STATE(557), - [sym_case_statement] = STATE(557), - [sym_function_definition] = STATE(557), - [sym_subshell] = STATE(557), - [sym_pipeline] = STATE(557), - [sym_list] = STATE(557), - [sym_command] = STATE(557), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(558), - [sym_declaration_command] = STATE(557), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), - }, - [297] = { - [sym_file_descriptor] = ACTIONS(1066), - [sym_word] = ACTIONS(1066), - [sym__concat] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_SEMI_SEMI] = ACTIONS(1068), - [anon_sym_PIPE_AMP] = ACTIONS(1068), - [anon_sym_AMP_AMP] = ACTIONS(1068), - [anon_sym_PIPE_PIPE] = ACTIONS(1068), - [anon_sym_LT] = ACTIONS(1068), - [anon_sym_GT] = ACTIONS(1068), - [anon_sym_GT_GT] = ACTIONS(1068), - [anon_sym_AMP_GT] = ACTIONS(1068), - [anon_sym_AMP_GT_GT] = ACTIONS(1068), - [anon_sym_LT_AMP] = ACTIONS(1068), - [anon_sym_GT_AMP] = ACTIONS(1068), - [anon_sym_LT_LT] = ACTIONS(1068), - [anon_sym_LT_LT_DASH] = ACTIONS(1068), - [anon_sym_DQUOTE] = ACTIONS(1068), - [sym_raw_string] = ACTIONS(1068), - [anon_sym_DOLLAR] = ACTIONS(1068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1068), - [anon_sym_BQUOTE] = ACTIONS(1068), - [anon_sym_LT_LPAREN] = ACTIONS(1068), - [anon_sym_GT_LPAREN] = ACTIONS(1068), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_LF] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1068), - }, - [298] = { - [sym_for_statement] = STATE(559), - [sym_while_statement] = STATE(559), - [sym_if_statement] = STATE(559), - [sym_case_statement] = STATE(559), - [sym_function_definition] = STATE(559), - [sym_subshell] = STATE(559), - [sym_pipeline] = STATE(559), - [sym_list] = STATE(559), - [sym_command] = STATE(559), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(560), - [sym_declaration_command] = STATE(559), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), - }, - [299] = { - [anon_sym_LT] = ACTIONS(1070), - [anon_sym_GT] = ACTIONS(1070), - [anon_sym_GT_GT] = ACTIONS(1072), - [anon_sym_AMP_GT] = ACTIONS(1070), - [anon_sym_AMP_GT_GT] = ACTIONS(1072), - [anon_sym_LT_AMP] = ACTIONS(1072), - [anon_sym_GT_AMP] = ACTIONS(1072), - [sym_comment] = ACTIONS(46), - }, - [300] = { - [aux_sym_concatenation_repeat1] = STATE(262), - [sym_file_descriptor] = ACTIONS(556), - [sym_word] = ACTIONS(556), - [sym__concat] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(1074), - [anon_sym_RPAREN] = ACTIONS(556), - [anon_sym_PIPE_AMP] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(556), - [anon_sym_PIPE_PIPE] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(1074), - [anon_sym_GT] = ACTIONS(1074), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_AMP_GT] = ACTIONS(1074), - [anon_sym_AMP_GT_GT] = ACTIONS(556), - [anon_sym_LT_AMP] = ACTIONS(556), - [anon_sym_GT_AMP] = ACTIONS(556), - [anon_sym_LT_LT] = ACTIONS(1074), - [anon_sym_LT_LT_DASH] = ACTIONS(556), - [anon_sym_DQUOTE] = ACTIONS(556), - [sym_raw_string] = ACTIONS(556), - [anon_sym_DOLLAR] = ACTIONS(1074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(556), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(556), - [anon_sym_BQUOTE] = ACTIONS(556), - [anon_sym_LT_LPAREN] = ACTIONS(556), - [anon_sym_GT_LPAREN] = ACTIONS(556), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1074), - }, - [301] = { - [sym_concatenation] = STATE(570), - [sym_string] = STATE(562), - [sym_simple_expansion] = STATE(562), - [sym_expansion] = STATE(562), - [sym_command_substitution] = STATE(562), - [sym_process_substitution] = STATE(562), - [sym_word] = ACTIONS(1076), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym_raw_string] = ACTIONS(1076), - [anon_sym_DOLLAR] = ACTIONS(1080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1082), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1084), - [anon_sym_BQUOTE] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(1088), - [anon_sym_GT_LPAREN] = ACTIONS(1088), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1090), - }, - [302] = { - [sym_heredoc] = STATE(573), - [sym__simple_heredoc] = ACTIONS(1092), - [sym__heredoc_beginning] = ACTIONS(1094), - [sym_comment] = ACTIONS(46), - }, - [303] = { - [aux_sym_concatenation_repeat1] = STATE(295), - [sym_file_descriptor] = ACTIONS(580), - [sym_word] = ACTIONS(580), - [sym__concat] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_RPAREN] = ACTIONS(580), - [anon_sym_PIPE_AMP] = ACTIONS(580), - [anon_sym_AMP_AMP] = ACTIONS(580), - [anon_sym_PIPE_PIPE] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(1096), - [anon_sym_GT] = ACTIONS(1096), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_AMP_GT] = ACTIONS(1096), - [anon_sym_AMP_GT_GT] = ACTIONS(580), - [anon_sym_LT_AMP] = ACTIONS(580), - [anon_sym_GT_AMP] = ACTIONS(580), - [anon_sym_LT_LT] = ACTIONS(1096), - [anon_sym_LT_LT_DASH] = ACTIONS(580), - [anon_sym_DQUOTE] = ACTIONS(580), - [sym_raw_string] = ACTIONS(580), - [anon_sym_DOLLAR] = ACTIONS(1096), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(580), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(580), - [anon_sym_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(580), - [anon_sym_GT_LPAREN] = ACTIONS(580), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1096), - }, - [304] = { - [sym_file_descriptor] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_RPAREN] = ACTIONS(584), - [anon_sym_PIPE_AMP] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(584), - [anon_sym_PIPE_PIPE] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(584), - [anon_sym_AMP_GT] = ACTIONS(1098), - [anon_sym_AMP_GT_GT] = ACTIONS(584), - [anon_sym_LT_AMP] = ACTIONS(584), - [anon_sym_GT_AMP] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_LT_LT_DASH] = ACTIONS(584), - [anon_sym_BQUOTE] = ACTIONS(584), - [sym_comment] = ACTIONS(46), - }, - [305] = { - [sym_file_descriptor] = ACTIONS(556), - [sym_word] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(1074), - [anon_sym_RPAREN] = ACTIONS(556), - [anon_sym_PIPE_AMP] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(556), - [anon_sym_PIPE_PIPE] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(1074), - [anon_sym_GT] = ACTIONS(1074), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_AMP_GT] = ACTIONS(1074), - [anon_sym_AMP_GT_GT] = ACTIONS(556), - [anon_sym_LT_AMP] = ACTIONS(556), - [anon_sym_GT_AMP] = ACTIONS(556), - [anon_sym_LT_LT] = ACTIONS(1074), - [anon_sym_LT_LT_DASH] = ACTIONS(556), - [anon_sym_DQUOTE] = ACTIONS(556), - [sym_raw_string] = ACTIONS(556), - [anon_sym_DOLLAR] = ACTIONS(1074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(556), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(556), - [anon_sym_BQUOTE] = ACTIONS(556), - [anon_sym_LT_LPAREN] = ACTIONS(556), - [anon_sym_GT_LPAREN] = ACTIONS(556), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1074), - }, - [306] = { - [sym_file_redirect] = STATE(304), - [sym_heredoc_redirect] = STATE(304), - [sym_concatenation] = STATE(305), - [sym_string] = STATE(300), - [sym_simple_expansion] = STATE(300), - [sym_expansion] = STATE(300), - [sym_command_substitution] = STATE(300), - [sym_process_substitution] = STATE(300), - [aux_sym_for_statement_repeat1] = STATE(574), - [aux_sym_command_repeat2] = STATE(575), - [sym_file_descriptor] = ACTIONS(492), - [sym_word] = ACTIONS(494), - [anon_sym_PIPE] = ACTIONS(1100), - [anon_sym_RPAREN] = ACTIONS(1102), - [anon_sym_PIPE_AMP] = ACTIONS(1102), - [anon_sym_AMP_AMP] = ACTIONS(1102), - [anon_sym_PIPE_PIPE] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(500), - [anon_sym_GT_GT] = ACTIONS(502), - [anon_sym_AMP_GT] = ACTIONS(500), - [anon_sym_AMP_GT_GT] = ACTIONS(502), - [anon_sym_LT_AMP] = ACTIONS(502), - [anon_sym_GT_AMP] = ACTIONS(502), - [anon_sym_LT_LT] = ACTIONS(504), - [anon_sym_LT_LT_DASH] = ACTIONS(506), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(494), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(508), - }, - [307] = { - [sym_file_redirect] = STATE(304), - [sym_heredoc_redirect] = STATE(304), - [aux_sym_command_repeat2] = STATE(576), - [sym_file_descriptor] = ACTIONS(492), - [anon_sym_PIPE] = ACTIONS(1100), - [anon_sym_RPAREN] = ACTIONS(1102), - [anon_sym_PIPE_AMP] = ACTIONS(1102), - [anon_sym_AMP_AMP] = ACTIONS(1102), - [anon_sym_PIPE_PIPE] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(500), - [anon_sym_GT_GT] = ACTIONS(502), - [anon_sym_AMP_GT] = ACTIONS(500), - [anon_sym_AMP_GT_GT] = ACTIONS(502), - [anon_sym_LT_AMP] = ACTIONS(502), - [anon_sym_GT_AMP] = ACTIONS(502), - [anon_sym_LT_LT] = ACTIONS(504), - [anon_sym_LT_LT_DASH] = ACTIONS(506), - [sym_comment] = ACTIONS(46), - }, - [308] = { - [aux_sym_concatenation_repeat1] = STATE(295), - [sym_file_descriptor] = ACTIONS(188), - [sym_word] = ACTIONS(188), - [sym__concat] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(188), - [anon_sym_PIPE_AMP] = ACTIONS(188), - [anon_sym_AMP_AMP] = ACTIONS(188), - [anon_sym_PIPE_PIPE] = ACTIONS(188), - [anon_sym_LT] = ACTIONS(480), - [anon_sym_GT] = ACTIONS(480), - [anon_sym_GT_GT] = ACTIONS(188), - [anon_sym_AMP_GT] = ACTIONS(480), - [anon_sym_AMP_GT_GT] = ACTIONS(188), - [anon_sym_LT_AMP] = ACTIONS(188), - [anon_sym_GT_AMP] = ACTIONS(188), - [anon_sym_LT_LT] = ACTIONS(480), - [anon_sym_LT_LT_DASH] = ACTIONS(188), - [anon_sym_DQUOTE] = ACTIONS(188), - [sym_raw_string] = ACTIONS(188), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(188), - [anon_sym_BQUOTE] = ACTIONS(188), - [anon_sym_LT_LPAREN] = ACTIONS(188), - [anon_sym_GT_LPAREN] = ACTIONS(188), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(480), - }, - [309] = { - [sym_file_redirect] = STATE(304), - [sym_heredoc_redirect] = STATE(304), - [sym_concatenation] = STATE(305), - [sym_string] = STATE(300), - [sym_simple_expansion] = STATE(300), - [sym_expansion] = STATE(300), - [sym_command_substitution] = STATE(300), - [sym_process_substitution] = STATE(300), - [aux_sym_for_statement_repeat1] = STATE(577), - [aux_sym_command_repeat2] = STATE(575), - [sym_file_descriptor] = ACTIONS(492), - [sym_word] = ACTIONS(494), - [anon_sym_PIPE] = ACTIONS(1100), - [anon_sym_RPAREN] = ACTIONS(1102), - [anon_sym_PIPE_AMP] = ACTIONS(1102), - [anon_sym_AMP_AMP] = ACTIONS(1102), - [anon_sym_PIPE_PIPE] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(500), - [anon_sym_GT_GT] = ACTIONS(502), - [anon_sym_AMP_GT] = ACTIONS(500), - [anon_sym_AMP_GT_GT] = ACTIONS(502), - [anon_sym_LT_AMP] = ACTIONS(502), - [anon_sym_GT_AMP] = ACTIONS(502), - [anon_sym_LT_LT] = ACTIONS(504), - [anon_sym_LT_LT_DASH] = ACTIONS(506), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(494), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(508), - }, - [310] = { - [aux_sym_concatenation_repeat1] = STATE(578), - [sym_file_descriptor] = ACTIONS(254), - [sym_word] = ACTIONS(254), - [sym__concat] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_PIPE_AMP] = ACTIONS(254), - [anon_sym_AMP_AMP] = ACTIONS(254), - [anon_sym_PIPE_PIPE] = ACTIONS(254), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_GT_GT] = ACTIONS(254), - [anon_sym_AMP_GT] = ACTIONS(877), - [anon_sym_AMP_GT_GT] = ACTIONS(254), - [anon_sym_LT_AMP] = ACTIONS(254), - [anon_sym_GT_AMP] = ACTIONS(254), - [anon_sym_LT_LT] = ACTIONS(877), - [anon_sym_LT_LT_DASH] = ACTIONS(254), - [anon_sym_DQUOTE] = ACTIONS(254), - [sym_raw_string] = ACTIONS(254), - [anon_sym_DOLLAR] = ACTIONS(877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(254), - [anon_sym_LT_LPAREN] = ACTIONS(254), - [anon_sym_GT_LPAREN] = ACTIONS(254), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(877), - }, - [311] = { - [sym_concatenation] = STATE(518), - [sym_string] = STATE(579), - [sym_array] = STATE(518), - [sym_simple_expansion] = STATE(579), - [sym_expansion] = STATE(579), - [sym_command_substitution] = STATE(579), - [sym_process_substitution] = STATE(579), - [sym_word] = ACTIONS(1104), - [sym__empty_value] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym_raw_string] = ACTIONS(1104), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(996), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(998), - [anon_sym_BQUOTE] = ACTIONS(1000), - [anon_sym_LT_LPAREN] = ACTIONS(1002), - [anon_sym_GT_LPAREN] = ACTIONS(1002), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1106), - }, - [312] = { - [sym_compound_statement] = STATE(582), - [anon_sym_LPAREN] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1024), - [sym_comment] = ACTIONS(46), - }, - [313] = { - [sym__assignment] = STATE(543), - [anon_sym_EQ] = ACTIONS(1110), - [anon_sym_PLUS_EQ] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(64), - [sym_comment] = ACTIONS(46), - }, - [314] = { - [sym__assignment] = STATE(543), - [anon_sym_EQ] = ACTIONS(1110), - [anon_sym_PLUS_EQ] = ACTIONS(1110), - [sym_comment] = ACTIONS(46), - }, - [315] = { - [sym_variable_assignment] = STATE(275), - [sym_subscript] = STATE(314), - [aux_sym_declaration_command_repeat1] = STATE(584), - [sym_word] = ACTIONS(458), - [sym_variable_name] = ACTIONS(516), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_PIPE_AMP] = ACTIONS(1038), - [anon_sym_AMP_AMP] = ACTIONS(1038), - [anon_sym_PIPE_PIPE] = ACTIONS(1038), - [anon_sym_BQUOTE] = ACTIONS(1038), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(466), - }, - [316] = { - [anon_sym_RPAREN] = ACTIONS(1112), - [sym_comment] = ACTIONS(46), - }, - [317] = { - [aux_sym_concatenation_repeat1] = STATE(578), - [sym_file_descriptor] = ACTIONS(542), - [sym_word] = ACTIONS(542), - [sym__concat] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_AMP_GT] = ACTIONS(909), - [anon_sym_AMP_GT_GT] = ACTIONS(542), - [anon_sym_LT_AMP] = ACTIONS(542), - [anon_sym_GT_AMP] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(909), - [anon_sym_LT_LT_DASH] = ACTIONS(542), - [anon_sym_DQUOTE] = ACTIONS(542), - [sym_raw_string] = ACTIONS(542), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(542), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(542), - [anon_sym_BQUOTE] = ACTIONS(542), - [anon_sym_LT_LPAREN] = ACTIONS(542), - [anon_sym_GT_LPAREN] = ACTIONS(542), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(909), - }, - [318] = { - [sym_for_statement] = STATE(557), - [sym_while_statement] = STATE(557), - [sym_if_statement] = STATE(557), - [sym_case_statement] = STATE(557), - [sym_function_definition] = STATE(557), - [sym_subshell] = STATE(557), - [sym_pipeline] = STATE(557), - [sym_list] = STATE(557), - [sym_command] = STATE(557), - [sym_command_name] = STATE(118), - [sym_variable_assignment] = STATE(586), - [sym_declaration_command] = STATE(557), - [sym_subscript] = STATE(120), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_command_repeat1] = STATE(121), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(178), - [sym_variable_name] = ACTIONS(180), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(184), - [anon_sym_typeset] = ACTIONS(184), - [anon_sym_export] = ACTIONS(184), - [anon_sym_readonly] = ACTIONS(184), - [anon_sym_local] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(178), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(186), - }, - [319] = { - [sym_for_statement] = STATE(587), - [sym_while_statement] = STATE(587), - [sym_if_statement] = STATE(587), - [sym_case_statement] = STATE(587), - [sym_function_definition] = STATE(587), - [sym_subshell] = STATE(587), - [sym_pipeline] = STATE(587), - [sym_list] = STATE(587), - [sym_command] = STATE(587), - [sym_command_name] = STATE(118), - [sym_variable_assignment] = STATE(588), - [sym_declaration_command] = STATE(587), - [sym_subscript] = STATE(120), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_command_repeat1] = STATE(121), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(178), - [sym_variable_name] = ACTIONS(180), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(184), - [anon_sym_typeset] = ACTIONS(184), - [anon_sym_export] = ACTIONS(184), - [anon_sym_readonly] = ACTIONS(184), - [anon_sym_local] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(178), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(186), - }, - [320] = { - [anon_sym_LT] = ACTIONS(1114), - [anon_sym_GT] = ACTIONS(1114), - [anon_sym_GT_GT] = ACTIONS(1116), - [anon_sym_AMP_GT] = ACTIONS(1114), - [anon_sym_AMP_GT_GT] = ACTIONS(1116), - [anon_sym_LT_AMP] = ACTIONS(1116), - [anon_sym_GT_AMP] = ACTIONS(1116), - [sym_comment] = ACTIONS(46), - }, - [321] = { - [aux_sym_concatenation_repeat1] = STATE(310), - [sym_file_descriptor] = ACTIONS(556), - [sym_word] = ACTIONS(556), - [sym__concat] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(1074), - [anon_sym_PIPE_AMP] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(556), - [anon_sym_PIPE_PIPE] = ACTIONS(556), - [anon_sym_LT] = ACTIONS(1074), - [anon_sym_GT] = ACTIONS(1074), - [anon_sym_GT_GT] = ACTIONS(556), - [anon_sym_AMP_GT] = ACTIONS(1074), - [anon_sym_AMP_GT_GT] = ACTIONS(556), - [anon_sym_LT_AMP] = ACTIONS(556), - [anon_sym_GT_AMP] = ACTIONS(556), - [anon_sym_LT_LT] = ACTIONS(1074), - [anon_sym_LT_LT_DASH] = ACTIONS(556), - [anon_sym_DQUOTE] = ACTIONS(556), - [sym_raw_string] = ACTIONS(556), - [anon_sym_DOLLAR] = ACTIONS(1074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(556), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(556), - [anon_sym_BQUOTE] = ACTIONS(556), - [anon_sym_LT_LPAREN] = ACTIONS(556), - [anon_sym_GT_LPAREN] = ACTIONS(556), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1074), - }, - [322] = { - [sym_concatenation] = STATE(570), - [sym_string] = STATE(590), - [sym_simple_expansion] = STATE(590), - [sym_expansion] = STATE(590), - [sym_command_substitution] = STATE(590), - [sym_process_substitution] = STATE(590), - [sym_word] = ACTIONS(1118), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym_raw_string] = ACTIONS(1118), - [anon_sym_DOLLAR] = ACTIONS(1080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1082), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1084), - [anon_sym_BQUOTE] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(1088), - [anon_sym_GT_LPAREN] = ACTIONS(1088), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1120), - }, - [323] = { - [aux_sym_concatenation_repeat1] = STATE(317), - [sym_file_descriptor] = ACTIONS(580), - [sym_word] = ACTIONS(580), - [sym__concat] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(1096), - [anon_sym_PIPE_AMP] = ACTIONS(580), - [anon_sym_AMP_AMP] = ACTIONS(580), - [anon_sym_PIPE_PIPE] = ACTIONS(580), - [anon_sym_LT] = ACTIONS(1096), - [anon_sym_GT] = ACTIONS(1096), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_AMP_GT] = ACTIONS(1096), - [anon_sym_AMP_GT_GT] = ACTIONS(580), - [anon_sym_LT_AMP] = ACTIONS(580), - [anon_sym_GT_AMP] = ACTIONS(580), - [anon_sym_LT_LT] = ACTIONS(1096), - [anon_sym_LT_LT_DASH] = ACTIONS(580), - [anon_sym_DQUOTE] = ACTIONS(580), - [sym_raw_string] = ACTIONS(580), - [anon_sym_DOLLAR] = ACTIONS(1096), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(580), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(580), - [anon_sym_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(580), - [anon_sym_GT_LPAREN] = ACTIONS(580), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1096), - }, - [324] = { - [sym_file_redirect] = STATE(304), - [sym_heredoc_redirect] = STATE(304), - [sym_concatenation] = STATE(305), - [sym_string] = STATE(321), - [sym_simple_expansion] = STATE(321), - [sym_expansion] = STATE(321), - [sym_command_substitution] = STATE(321), - [sym_process_substitution] = STATE(321), - [aux_sym_for_statement_repeat1] = STATE(592), - [aux_sym_command_repeat2] = STATE(593), - [sym_file_descriptor] = ACTIONS(526), - [sym_word] = ACTIONS(528), - [anon_sym_PIPE] = ACTIONS(1100), - [anon_sym_PIPE_AMP] = ACTIONS(1102), - [anon_sym_AMP_AMP] = ACTIONS(1102), - [anon_sym_PIPE_PIPE] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(530), - [anon_sym_GT] = ACTIONS(530), - [anon_sym_GT_GT] = ACTIONS(532), - [anon_sym_AMP_GT] = ACTIONS(530), - [anon_sym_AMP_GT_GT] = ACTIONS(532), - [anon_sym_LT_AMP] = ACTIONS(532), - [anon_sym_GT_AMP] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(504), - [anon_sym_LT_LT_DASH] = ACTIONS(506), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(528), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(1102), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(534), - }, - [325] = { - [sym_file_redirect] = STATE(304), - [sym_heredoc_redirect] = STATE(304), - [aux_sym_command_repeat2] = STATE(594), - [sym_file_descriptor] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(1100), - [anon_sym_PIPE_AMP] = ACTIONS(1102), - [anon_sym_AMP_AMP] = ACTIONS(1102), - [anon_sym_PIPE_PIPE] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(530), - [anon_sym_GT] = ACTIONS(530), - [anon_sym_GT_GT] = ACTIONS(532), - [anon_sym_AMP_GT] = ACTIONS(530), - [anon_sym_AMP_GT_GT] = ACTIONS(532), - [anon_sym_LT_AMP] = ACTIONS(532), - [anon_sym_GT_AMP] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(504), - [anon_sym_LT_LT_DASH] = ACTIONS(506), - [anon_sym_BQUOTE] = ACTIONS(1102), - [sym_comment] = ACTIONS(46), - }, - [326] = { - [aux_sym_concatenation_repeat1] = STATE(317), - [sym_file_descriptor] = ACTIONS(188), - [sym_word] = ACTIONS(188), - [sym__concat] = ACTIONS(444), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_PIPE_AMP] = ACTIONS(188), - [anon_sym_AMP_AMP] = ACTIONS(188), - [anon_sym_PIPE_PIPE] = ACTIONS(188), - [anon_sym_LT] = ACTIONS(480), - [anon_sym_GT] = ACTIONS(480), - [anon_sym_GT_GT] = ACTIONS(188), - [anon_sym_AMP_GT] = ACTIONS(480), - [anon_sym_AMP_GT_GT] = ACTIONS(188), - [anon_sym_LT_AMP] = ACTIONS(188), - [anon_sym_GT_AMP] = ACTIONS(188), - [anon_sym_LT_LT] = ACTIONS(480), - [anon_sym_LT_LT_DASH] = ACTIONS(188), - [anon_sym_DQUOTE] = ACTIONS(188), - [sym_raw_string] = ACTIONS(188), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(188), - [anon_sym_BQUOTE] = ACTIONS(188), - [anon_sym_LT_LPAREN] = ACTIONS(188), - [anon_sym_GT_LPAREN] = ACTIONS(188), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(480), - }, - [327] = { - [sym_file_redirect] = STATE(304), - [sym_heredoc_redirect] = STATE(304), - [sym_concatenation] = STATE(305), - [sym_string] = STATE(321), - [sym_simple_expansion] = STATE(321), - [sym_expansion] = STATE(321), - [sym_command_substitution] = STATE(321), - [sym_process_substitution] = STATE(321), - [aux_sym_for_statement_repeat1] = STATE(595), - [aux_sym_command_repeat2] = STATE(593), - [sym_file_descriptor] = ACTIONS(526), - [sym_word] = ACTIONS(528), - [anon_sym_PIPE] = ACTIONS(1100), - [anon_sym_PIPE_AMP] = ACTIONS(1102), - [anon_sym_AMP_AMP] = ACTIONS(1102), - [anon_sym_PIPE_PIPE] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(530), - [anon_sym_GT] = ACTIONS(530), - [anon_sym_GT_GT] = ACTIONS(532), - [anon_sym_AMP_GT] = ACTIONS(530), - [anon_sym_AMP_GT_GT] = ACTIONS(532), - [anon_sym_LT_AMP] = ACTIONS(532), - [anon_sym_GT_AMP] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(504), - [anon_sym_LT_LT_DASH] = ACTIONS(506), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(528), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(1102), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(534), - }, - [328] = { - [sym_file_descriptor] = ACTIONS(1122), - [sym_word] = ACTIONS(1122), - [sym__concat] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1124), - [anon_sym_RPAREN] = ACTIONS(1124), - [anon_sym_SEMI_SEMI] = ACTIONS(1124), - [anon_sym_PIPE_AMP] = ACTIONS(1124), - [anon_sym_AMP_AMP] = ACTIONS(1124), - [anon_sym_PIPE_PIPE] = ACTIONS(1124), - [anon_sym_LT] = ACTIONS(1124), - [anon_sym_GT] = ACTIONS(1124), - [anon_sym_GT_GT] = ACTIONS(1124), - [anon_sym_AMP_GT] = ACTIONS(1124), - [anon_sym_AMP_GT_GT] = ACTIONS(1124), - [anon_sym_LT_AMP] = ACTIONS(1124), - [anon_sym_GT_AMP] = ACTIONS(1124), - [anon_sym_LT_LT] = ACTIONS(1124), - [anon_sym_LT_LT_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1124), - [sym_raw_string] = ACTIONS(1124), - [anon_sym_DOLLAR] = ACTIONS(1124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1124), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1124), - [anon_sym_BQUOTE] = ACTIONS(1124), - [anon_sym_LT_LPAREN] = ACTIONS(1124), - [anon_sym_GT_LPAREN] = ACTIONS(1124), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1124), - }, - [329] = { - [sym_compound_statement] = STATE(596), - [anon_sym_LBRACE] = ACTIONS(330), - [sym_comment] = ACTIONS(46), - }, - [330] = { - [anon_sym_PIPE] = ACTIONS(1126), - [anon_sym_RPAREN] = ACTIONS(1126), - [anon_sym_SEMI_SEMI] = ACTIONS(1126), - [anon_sym_PIPE_AMP] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_LF] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), - }, - [331] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(1126), - [anon_sym_RPAREN] = ACTIONS(1126), - [anon_sym_SEMI_SEMI] = ACTIONS(1126), - [anon_sym_PIPE_AMP] = ACTIONS(1126), - [anon_sym_AMP_AMP] = ACTIONS(1126), - [anon_sym_PIPE_PIPE] = ACTIONS(1126), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(236), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(236), - [anon_sym_SEMI] = ACTIONS(1126), - [anon_sym_LF] = ACTIONS(1126), - [anon_sym_AMP] = ACTIONS(1126), - }, - [332] = { - [anon_sym_PIPE] = ACTIONS(202), - [anon_sym_SEMI_SEMI] = ACTIONS(1128), - [anon_sym_PIPE_AMP] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1128), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), - }, - [333] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(202), - [anon_sym_SEMI_SEMI] = ACTIONS(1128), - [anon_sym_PIPE_AMP] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(236), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(236), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), - }, - [334] = { - [sym_concatenation] = STATE(599), - [sym_string] = STATE(597), - [sym_simple_expansion] = STATE(597), - [sym_expansion] = STATE(597), - [sym_command_substitution] = STATE(597), - [sym_process_substitution] = STATE(597), - [sym_word] = ACTIONS(1130), - [anon_sym_DQUOTE] = ACTIONS(562), - [sym_raw_string] = ACTIONS(1130), - [anon_sym_DOLLAR] = ACTIONS(564), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(566), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(568), - [anon_sym_BQUOTE] = ACTIONS(570), - [anon_sym_LT_LPAREN] = ACTIONS(572), - [anon_sym_GT_LPAREN] = ACTIONS(572), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1132), - }, - [335] = { - [aux_sym_concatenation_repeat1] = STATE(601), - [sym_file_descriptor] = ACTIONS(372), - [sym__concat] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(1136), - [anon_sym_SEMI_SEMI] = ACTIONS(1136), - [anon_sym_PIPE_AMP] = ACTIONS(1136), - [anon_sym_AMP_AMP] = ACTIONS(1136), - [anon_sym_PIPE_PIPE] = ACTIONS(1136), - [anon_sym_LT] = ACTIONS(1136), - [anon_sym_GT] = ACTIONS(1136), - [anon_sym_GT_GT] = ACTIONS(1136), - [anon_sym_AMP_GT] = ACTIONS(1136), - [anon_sym_AMP_GT_GT] = ACTIONS(1136), - [anon_sym_LT_AMP] = ACTIONS(1136), - [anon_sym_GT_AMP] = ACTIONS(1136), - [anon_sym_LT_LT] = ACTIONS(1136), - [anon_sym_LT_LT_DASH] = ACTIONS(1136), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym_LF] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1136), - }, - [336] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(603), - [anon_sym_DQUOTE] = ACTIONS(1138), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), - }, - [337] = { - [sym_special_variable_name] = STATE(606), - [anon_sym_DOLLAR] = ACTIONS(1140), - [anon_sym_POUND] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(1140), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1142), - [anon_sym_STAR] = ACTIONS(1140), - [anon_sym_QMARK] = ACTIONS(1140), - [anon_sym_DASH] = ACTIONS(1140), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_0] = ACTIONS(1144), - [anon_sym__] = ACTIONS(1144), - }, - [338] = { - [sym_special_variable_name] = STATE(609), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(1146), - [anon_sym_AT] = ACTIONS(138), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [339] = { - [sym_for_statement] = STATE(610), - [sym_while_statement] = STATE(610), - [sym_if_statement] = STATE(610), - [sym_case_statement] = STATE(610), - [sym_function_definition] = STATE(610), - [sym_subshell] = STATE(610), - [sym_pipeline] = STATE(610), - [sym_list] = STATE(610), - [sym_command] = STATE(610), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(611), - [sym_declaration_command] = STATE(610), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), - }, - [340] = { - [sym_for_statement] = STATE(612), - [sym_while_statement] = STATE(612), - [sym_if_statement] = STATE(612), - [sym_case_statement] = STATE(612), - [sym_function_definition] = STATE(612), - [sym_subshell] = STATE(612), - [sym_pipeline] = STATE(612), - [sym_list] = STATE(612), - [sym_command] = STATE(612), - [sym_command_name] = STATE(118), - [sym_variable_assignment] = STATE(613), - [sym_declaration_command] = STATE(612), - [sym_subscript] = STATE(120), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_command_repeat1] = STATE(121), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(178), - [sym_variable_name] = ACTIONS(180), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(184), - [anon_sym_typeset] = ACTIONS(184), - [anon_sym_export] = ACTIONS(184), - [anon_sym_readonly] = ACTIONS(184), - [anon_sym_local] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(178), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(186), - }, - [341] = { - [sym_for_statement] = STATE(614), - [sym_while_statement] = STATE(614), - [sym_if_statement] = STATE(614), - [sym_case_statement] = STATE(614), - [sym_function_definition] = STATE(614), - [sym_subshell] = STATE(614), - [sym_pipeline] = STATE(614), - [sym_list] = STATE(614), - [sym_command] = STATE(614), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(615), - [sym_declaration_command] = STATE(614), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), - }, - [342] = { - [aux_sym_concatenation_repeat1] = STATE(616), - [sym_file_descriptor] = ACTIONS(390), - [sym__concat] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_SEMI_SEMI] = ACTIONS(1150), - [anon_sym_PIPE_AMP] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_GT_GT] = ACTIONS(1150), - [anon_sym_AMP_GT] = ACTIONS(1150), - [anon_sym_AMP_GT_GT] = ACTIONS(1150), - [anon_sym_LT_AMP] = ACTIONS(1150), - [anon_sym_GT_AMP] = ACTIONS(1150), - [anon_sym_LT_LT] = ACTIONS(1150), - [anon_sym_LT_LT_DASH] = ACTIONS(1150), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), - }, - [343] = { - [sym_file_descriptor] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(1136), - [anon_sym_RPAREN] = ACTIONS(1136), - [anon_sym_SEMI_SEMI] = ACTIONS(1136), - [anon_sym_PIPE_AMP] = ACTIONS(1136), - [anon_sym_AMP_AMP] = ACTIONS(1136), - [anon_sym_PIPE_PIPE] = ACTIONS(1136), - [anon_sym_LT] = ACTIONS(1136), - [anon_sym_GT] = ACTIONS(1136), - [anon_sym_GT_GT] = ACTIONS(1136), - [anon_sym_AMP_GT] = ACTIONS(1136), - [anon_sym_AMP_GT_GT] = ACTIONS(1136), - [anon_sym_LT_AMP] = ACTIONS(1136), - [anon_sym_GT_AMP] = ACTIONS(1136), - [anon_sym_LT_LT] = ACTIONS(1136), - [anon_sym_LT_LT_DASH] = ACTIONS(1136), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym_LF] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1136), - }, - [344] = { - [sym_file_descriptor] = ACTIONS(1152), - [anon_sym_PIPE] = ACTIONS(1154), - [anon_sym_RPAREN] = ACTIONS(1154), - [anon_sym_SEMI_SEMI] = ACTIONS(1154), - [anon_sym_PIPE_AMP] = ACTIONS(1154), - [anon_sym_AMP_AMP] = ACTIONS(1154), - [anon_sym_PIPE_PIPE] = ACTIONS(1154), - [anon_sym_LT] = ACTIONS(1154), - [anon_sym_GT] = ACTIONS(1154), - [anon_sym_GT_GT] = ACTIONS(1154), - [anon_sym_AMP_GT] = ACTIONS(1154), - [anon_sym_AMP_GT_GT] = ACTIONS(1154), - [anon_sym_LT_AMP] = ACTIONS(1154), - [anon_sym_GT_AMP] = ACTIONS(1154), - [anon_sym_LT_LT] = ACTIONS(1154), - [anon_sym_LT_LT_DASH] = ACTIONS(1154), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1154), - [anon_sym_LF] = ACTIONS(1154), - [anon_sym_AMP] = ACTIONS(1154), - }, - [345] = { - [sym_simple_expansion] = STATE(617), - [sym_expansion] = STATE(617), - [aux_sym_heredoc_repeat1] = STATE(621), - [sym__heredoc_middle] = ACTIONS(1156), - [sym__heredoc_end] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1162), - [sym_comment] = ACTIONS(46), - }, - [346] = { - [sym_file_descriptor] = ACTIONS(1164), - [anon_sym_PIPE] = ACTIONS(1166), - [anon_sym_RPAREN] = ACTIONS(1166), - [anon_sym_SEMI_SEMI] = ACTIONS(1166), - [anon_sym_PIPE_AMP] = ACTIONS(1166), - [anon_sym_AMP_AMP] = ACTIONS(1166), - [anon_sym_PIPE_PIPE] = ACTIONS(1166), - [anon_sym_LT] = ACTIONS(1166), - [anon_sym_GT] = ACTIONS(1166), - [anon_sym_GT_GT] = ACTIONS(1166), - [anon_sym_AMP_GT] = ACTIONS(1166), - [anon_sym_AMP_GT_GT] = ACTIONS(1166), - [anon_sym_LT_AMP] = ACTIONS(1166), - [anon_sym_GT_AMP] = ACTIONS(1166), - [anon_sym_LT_LT] = ACTIONS(1166), - [anon_sym_LT_LT_DASH] = ACTIONS(1166), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1166), - [anon_sym_LF] = ACTIONS(1166), - [anon_sym_AMP] = ACTIONS(1166), - }, - [347] = { - [sym_concatenation] = STATE(135), - [sym_string] = STATE(130), - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [sym_process_substitution] = STATE(130), - [aux_sym_for_statement_repeat1] = STATE(347), - [sym_file_descriptor] = ACTIONS(1168), - [sym_word] = ACTIONS(1170), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_SEMI_SEMI] = ACTIONS(1173), - [anon_sym_PIPE_AMP] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(1173), - [anon_sym_PIPE_PIPE] = ACTIONS(1173), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_AMP_GT] = ACTIONS(1173), - [anon_sym_AMP_GT_GT] = ACTIONS(1173), - [anon_sym_LT_AMP] = ACTIONS(1173), - [anon_sym_GT_AMP] = ACTIONS(1173), - [anon_sym_LT_LT] = ACTIONS(1173), - [anon_sym_LT_LT_DASH] = ACTIONS(1173), - [anon_sym_DQUOTE] = ACTIONS(1175), - [sym_raw_string] = ACTIONS(1178), - [anon_sym_DOLLAR] = ACTIONS(1181), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1184), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1187), - [anon_sym_BQUOTE] = ACTIONS(1190), - [anon_sym_LT_LPAREN] = ACTIONS(1193), - [anon_sym_GT_LPAREN] = ACTIONS(1193), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym_LF] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1173), - }, - [348] = { - [sym_file_redirect] = STATE(134), - [sym_heredoc_redirect] = STATE(134), - [aux_sym_command_repeat2] = STATE(349), - [sym_file_descriptor] = ACTIONS(208), - [anon_sym_PIPE] = ACTIONS(1199), - [anon_sym_SEMI_SEMI] = ACTIONS(1199), - [anon_sym_PIPE_AMP] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [anon_sym_GT_GT] = ACTIONS(214), - [anon_sym_AMP_GT] = ACTIONS(214), - [anon_sym_AMP_GT_GT] = ACTIONS(214), - [anon_sym_LT_AMP] = ACTIONS(214), - [anon_sym_GT_AMP] = ACTIONS(214), - [anon_sym_LT_LT] = ACTIONS(216), - [anon_sym_LT_LT_DASH] = ACTIONS(216), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym_LF] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1199), - }, - [349] = { - [sym_file_redirect] = STATE(134), - [sym_heredoc_redirect] = STATE(134), - [aux_sym_command_repeat2] = STATE(349), - [sym_file_descriptor] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1204), - [anon_sym_SEMI_SEMI] = ACTIONS(1204), - [anon_sym_PIPE_AMP] = ACTIONS(1204), - [anon_sym_AMP_AMP] = ACTIONS(1204), - [anon_sym_PIPE_PIPE] = ACTIONS(1204), - [anon_sym_LT] = ACTIONS(1206), - [anon_sym_GT] = ACTIONS(1206), - [anon_sym_GT_GT] = ACTIONS(1206), - [anon_sym_AMP_GT] = ACTIONS(1206), - [anon_sym_AMP_GT_GT] = ACTIONS(1206), - [anon_sym_LT_AMP] = ACTIONS(1206), - [anon_sym_GT_AMP] = ACTIONS(1206), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_LT_LT_DASH] = ACTIONS(1209), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1204), - [anon_sym_LF] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1204), - }, - [350] = { - [sym_concatenation] = STATE(623), - [sym_string] = STATE(622), - [sym_array] = STATE(623), - [sym_simple_expansion] = STATE(622), - [sym_expansion] = STATE(622), - [sym_command_substitution] = STATE(622), - [sym_process_substitution] = STATE(622), - [sym_word] = ACTIONS(1212), - [sym__empty_value] = ACTIONS(1214), - [anon_sym_LPAREN] = ACTIONS(1216), - [anon_sym_DQUOTE] = ACTIONS(106), - [sym_raw_string] = ACTIONS(1212), - [anon_sym_DOLLAR] = ACTIONS(108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(110), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(112), - [anon_sym_BQUOTE] = ACTIONS(114), - [anon_sym_LT_LPAREN] = ACTIONS(116), - [anon_sym_GT_LPAREN] = ACTIONS(116), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1218), - }, - [351] = { - [sym_file_descriptor] = ACTIONS(294), - [sym_word] = ACTIONS(294), - [sym_variable_name] = ACTIONS(294), - [anon_sym_LT] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1006), - [anon_sym_GT_GT] = ACTIONS(294), - [anon_sym_AMP_GT] = ACTIONS(1006), - [anon_sym_AMP_GT_GT] = ACTIONS(294), - [anon_sym_LT_AMP] = ACTIONS(294), - [anon_sym_GT_AMP] = ACTIONS(294), - [anon_sym_DQUOTE] = ACTIONS(294), - [sym_raw_string] = ACTIONS(294), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), - [anon_sym_BQUOTE] = ACTIONS(294), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1006), - }, - [352] = { - [sym_file_redirect] = STATE(134), - [sym_heredoc_redirect] = STATE(134), - [sym_concatenation] = STATE(135), - [sym_string] = STATE(130), - [sym_simple_expansion] = STATE(130), - [sym_expansion] = STATE(130), - [sym_command_substitution] = STATE(130), - [sym_process_substitution] = STATE(130), - [aux_sym_for_statement_repeat1] = STATE(347), - [aux_sym_command_repeat2] = STATE(626), - [sym_file_descriptor] = ACTIONS(208), - [sym_word] = ACTIONS(210), - [anon_sym_PIPE] = ACTIONS(1199), - [anon_sym_SEMI_SEMI] = ACTIONS(1199), - [anon_sym_PIPE_AMP] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [anon_sym_GT_GT] = ACTIONS(214), - [anon_sym_AMP_GT] = ACTIONS(214), - [anon_sym_AMP_GT_GT] = ACTIONS(214), - [anon_sym_LT_AMP] = ACTIONS(214), - [anon_sym_GT_AMP] = ACTIONS(214), - [anon_sym_LT_LT] = ACTIONS(216), - [anon_sym_LT_LT_DASH] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(218), - [sym_raw_string] = ACTIONS(220), - [anon_sym_DOLLAR] = ACTIONS(222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(226), - [anon_sym_BQUOTE] = ACTIONS(228), - [anon_sym_LT_LPAREN] = ACTIONS(230), - [anon_sym_GT_LPAREN] = ACTIONS(230), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(232), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym_LF] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1199), - }, - [353] = { - [sym_string] = STATE(627), - [sym_simple_expansion] = STATE(627), - [sym_expansion] = STATE(627), - [sym_command_substitution] = STATE(627), - [sym_process_substitution] = STATE(627), - [sym_word] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(264), - [sym_raw_string] = ACTIONS(1220), - [anon_sym_DOLLAR] = ACTIONS(266), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(270), - [anon_sym_BQUOTE] = ACTIONS(272), - [anon_sym_LT_LPAREN] = ACTIONS(274), - [anon_sym_GT_LPAREN] = ACTIONS(274), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1222), - }, - [354] = { - [aux_sym_concatenation_repeat1] = STATE(629), - [sym_file_descriptor] = ACTIONS(254), - [sym_word] = ACTIONS(254), - [sym__concat] = ACTIONS(688), - [sym_variable_name] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(256), - [anon_sym_SEMI_SEMI] = ACTIONS(256), - [anon_sym_PIPE_AMP] = ACTIONS(256), - [anon_sym_AMP_AMP] = ACTIONS(256), - [anon_sym_PIPE_PIPE] = ACTIONS(256), - [anon_sym_LT] = ACTIONS(256), - [anon_sym_GT] = ACTIONS(256), - [anon_sym_GT_GT] = ACTIONS(256), - [anon_sym_AMP_GT] = ACTIONS(256), - [anon_sym_AMP_GT_GT] = ACTIONS(256), - [anon_sym_LT_AMP] = ACTIONS(256), - [anon_sym_GT_AMP] = ACTIONS(256), - [anon_sym_DQUOTE] = ACTIONS(256), - [sym_raw_string] = ACTIONS(256), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(256), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(256), - [anon_sym_BQUOTE] = ACTIONS(256), - [anon_sym_LT_LPAREN] = ACTIONS(256), - [anon_sym_GT_LPAREN] = ACTIONS(256), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(256), - [anon_sym_SEMI] = ACTIONS(256), - [anon_sym_LF] = ACTIONS(256), - [anon_sym_AMP] = ACTIONS(256), - }, - [355] = { - [aux_sym_concatenation_repeat1] = STATE(631), - [sym_word] = ACTIONS(556), - [sym__concat] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(556), - [anon_sym_DQUOTE] = ACTIONS(556), - [sym_raw_string] = ACTIONS(556), - [anon_sym_DOLLAR] = ACTIONS(1074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(556), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(556), - [anon_sym_BQUOTE] = ACTIONS(556), - [anon_sym_LT_LPAREN] = ACTIONS(556), - [anon_sym_GT_LPAREN] = ACTIONS(556), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1074), - }, - [356] = { - [sym_file_descriptor] = ACTIONS(1226), - [sym_word] = ACTIONS(1226), - [sym_variable_name] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_RPAREN] = ACTIONS(1228), - [anon_sym_SEMI_SEMI] = ACTIONS(1228), - [anon_sym_PIPE_AMP] = ACTIONS(1228), - [anon_sym_AMP_AMP] = ACTIONS(1228), - [anon_sym_PIPE_PIPE] = ACTIONS(1228), - [anon_sym_LT] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_GT_GT] = ACTIONS(1228), - [anon_sym_AMP_GT] = ACTIONS(1228), - [anon_sym_AMP_GT_GT] = ACTIONS(1228), - [anon_sym_LT_AMP] = ACTIONS(1228), - [anon_sym_GT_AMP] = ACTIONS(1228), - [anon_sym_DQUOTE] = ACTIONS(1228), - [sym_raw_string] = ACTIONS(1228), - [anon_sym_DOLLAR] = ACTIONS(1228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1228), - [anon_sym_BQUOTE] = ACTIONS(1228), - [anon_sym_LT_LPAREN] = ACTIONS(1228), - [anon_sym_GT_LPAREN] = ACTIONS(1228), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_LF] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - }, - [357] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(633), - [anon_sym_DQUOTE] = ACTIONS(1230), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), - }, - [358] = { - [sym_special_variable_name] = STATE(636), - [anon_sym_DOLLAR] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(1232), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_QMARK] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_0] = ACTIONS(1236), - [anon_sym__] = ACTIONS(1236), - }, - [359] = { - [sym_special_variable_name] = STATE(639), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(1238), - [anon_sym_AT] = ACTIONS(138), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [360] = { - [sym_for_statement] = STATE(640), - [sym_while_statement] = STATE(640), - [sym_if_statement] = STATE(640), - [sym_case_statement] = STATE(640), - [sym_function_definition] = STATE(640), - [sym_subshell] = STATE(640), - [sym_pipeline] = STATE(640), - [sym_list] = STATE(640), - [sym_command] = STATE(640), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(641), - [sym_declaration_command] = STATE(640), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), - }, - [361] = { - [sym_for_statement] = STATE(642), - [sym_while_statement] = STATE(642), - [sym_if_statement] = STATE(642), - [sym_case_statement] = STATE(642), - [sym_function_definition] = STATE(642), - [sym_subshell] = STATE(642), - [sym_pipeline] = STATE(642), - [sym_list] = STATE(642), - [sym_command] = STATE(642), - [sym_command_name] = STATE(118), - [sym_variable_assignment] = STATE(643), - [sym_declaration_command] = STATE(642), - [sym_subscript] = STATE(120), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_command_repeat1] = STATE(121), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(178), - [sym_variable_name] = ACTIONS(180), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(184), - [anon_sym_typeset] = ACTIONS(184), - [anon_sym_export] = ACTIONS(184), - [anon_sym_readonly] = ACTIONS(184), - [anon_sym_local] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(178), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(186), - }, - [362] = { - [sym_for_statement] = STATE(644), - [sym_while_statement] = STATE(644), - [sym_if_statement] = STATE(644), - [sym_case_statement] = STATE(644), - [sym_function_definition] = STATE(644), - [sym_subshell] = STATE(644), - [sym_pipeline] = STATE(644), - [sym_list] = STATE(644), - [sym_command] = STATE(644), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(645), - [sym_declaration_command] = STATE(644), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), - }, - [363] = { - [aux_sym_concatenation_repeat1] = STATE(646), - [sym_word] = ACTIONS(580), - [sym__concat] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(580), - [anon_sym_DQUOTE] = ACTIONS(580), - [sym_raw_string] = ACTIONS(580), - [anon_sym_DOLLAR] = ACTIONS(1096), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(580), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(580), - [anon_sym_BQUOTE] = ACTIONS(580), - [anon_sym_LT_LPAREN] = ACTIONS(580), - [anon_sym_GT_LPAREN] = ACTIONS(580), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1096), - }, - [364] = { - [sym_word] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(556), - [anon_sym_DQUOTE] = ACTIONS(556), - [sym_raw_string] = ACTIONS(556), - [anon_sym_DOLLAR] = ACTIONS(1074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(556), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(556), - [anon_sym_BQUOTE] = ACTIONS(556), - [anon_sym_LT_LPAREN] = ACTIONS(556), - [anon_sym_GT_LPAREN] = ACTIONS(556), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1074), - }, - [365] = { - [sym_concatenation] = STATE(364), - [sym_string] = STATE(355), - [sym_simple_expansion] = STATE(355), - [sym_expansion] = STATE(355), - [sym_command_substitution] = STATE(355), - [sym_process_substitution] = STATE(355), - [aux_sym_for_statement_repeat1] = STATE(648), - [sym_word] = ACTIONS(692), - [anon_sym_RPAREN] = ACTIONS(1242), - [anon_sym_DQUOTE] = ACTIONS(696), - [sym_raw_string] = ACTIONS(692), - [anon_sym_DOLLAR] = ACTIONS(698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(702), - [anon_sym_BQUOTE] = ACTIONS(704), - [anon_sym_LT_LPAREN] = ACTIONS(706), - [anon_sym_GT_LPAREN] = ACTIONS(706), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(708), - }, - [366] = { - [sym_file_descriptor] = ACTIONS(394), - [sym_word] = ACTIONS(394), - [sym__concat] = ACTIONS(394), - [sym_variable_name] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(396), - [anon_sym_RPAREN] = ACTIONS(396), - [anon_sym_SEMI_SEMI] = ACTIONS(396), - [anon_sym_PIPE_AMP] = ACTIONS(396), - [anon_sym_AMP_AMP] = ACTIONS(396), - [anon_sym_PIPE_PIPE] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(396), - [anon_sym_AMP_GT] = ACTIONS(396), - [anon_sym_AMP_GT_GT] = ACTIONS(396), - [anon_sym_LT_AMP] = ACTIONS(396), - [anon_sym_GT_AMP] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(396), - [sym_raw_string] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(396), - [anon_sym_LT_LPAREN] = ACTIONS(396), - [anon_sym_GT_LPAREN] = ACTIONS(396), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(396), - [anon_sym_SEMI] = ACTIONS(396), - [anon_sym_LF] = ACTIONS(396), - [anon_sym_AMP] = ACTIONS(396), - }, - [367] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(252), - [anon_sym_DQUOTE] = ACTIONS(1244), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), - }, - [368] = { - [sym_file_descriptor] = ACTIONS(412), - [sym_word] = ACTIONS(412), - [sym__concat] = ACTIONS(412), - [sym_variable_name] = ACTIONS(412), - [anon_sym_PIPE] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(414), - [anon_sym_SEMI_SEMI] = ACTIONS(414), - [anon_sym_PIPE_AMP] = ACTIONS(414), - [anon_sym_AMP_AMP] = ACTIONS(414), - [anon_sym_PIPE_PIPE] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(414), - [anon_sym_GT] = ACTIONS(414), - [anon_sym_GT_GT] = ACTIONS(414), - [anon_sym_AMP_GT] = ACTIONS(414), - [anon_sym_AMP_GT_GT] = ACTIONS(414), - [anon_sym_LT_AMP] = ACTIONS(414), - [anon_sym_GT_AMP] = ACTIONS(414), - [anon_sym_DQUOTE] = ACTIONS(414), - [sym_raw_string] = ACTIONS(414), - [anon_sym_DOLLAR] = ACTIONS(414), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(414), - [anon_sym_BQUOTE] = ACTIONS(414), - [anon_sym_LT_LPAREN] = ACTIONS(414), - [anon_sym_GT_LPAREN] = ACTIONS(414), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(414), - [anon_sym_SEMI] = ACTIONS(414), - [anon_sym_LF] = ACTIONS(414), - [anon_sym_AMP] = ACTIONS(414), - }, - [369] = { - [sym_file_descriptor] = ACTIONS(416), - [sym_word] = ACTIONS(416), - [sym__concat] = ACTIONS(416), - [sym_variable_name] = ACTIONS(416), - [anon_sym_PIPE] = ACTIONS(418), - [anon_sym_RPAREN] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(418), - [anon_sym_PIPE_AMP] = ACTIONS(418), - [anon_sym_AMP_AMP] = ACTIONS(418), - [anon_sym_PIPE_PIPE] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(418), - [anon_sym_GT_GT] = ACTIONS(418), - [anon_sym_AMP_GT] = ACTIONS(418), - [anon_sym_AMP_GT_GT] = ACTIONS(418), - [anon_sym_LT_AMP] = ACTIONS(418), - [anon_sym_GT_AMP] = ACTIONS(418), - [anon_sym_DQUOTE] = ACTIONS(418), - [sym_raw_string] = ACTIONS(418), - [anon_sym_DOLLAR] = ACTIONS(418), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), - [anon_sym_BQUOTE] = ACTIONS(418), - [anon_sym_LT_LPAREN] = ACTIONS(418), - [anon_sym_GT_LPAREN] = ACTIONS(418), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(418), - [anon_sym_SEMI] = ACTIONS(418), - [anon_sym_LF] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - }, - [370] = { - [sym_file_descriptor] = ACTIONS(420), - [sym_word] = ACTIONS(420), - [sym__concat] = ACTIONS(420), - [sym_variable_name] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(422), - [anon_sym_SEMI_SEMI] = ACTIONS(422), - [anon_sym_PIPE_AMP] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(422), - [anon_sym_LT] = ACTIONS(422), - [anon_sym_GT] = ACTIONS(422), - [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_AMP_GT] = ACTIONS(422), - [anon_sym_AMP_GT_GT] = ACTIONS(422), - [anon_sym_LT_AMP] = ACTIONS(422), - [anon_sym_GT_AMP] = ACTIONS(422), - [anon_sym_DQUOTE] = ACTIONS(422), - [sym_raw_string] = ACTIONS(422), - [anon_sym_DOLLAR] = ACTIONS(422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(422), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(422), - [anon_sym_BQUOTE] = ACTIONS(422), - [anon_sym_LT_LPAREN] = ACTIONS(422), - [anon_sym_GT_LPAREN] = ACTIONS(422), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LF] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(422), - }, - [371] = { - [sym_special_variable_name] = STATE(651), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(138), - [anon_sym_AT] = ACTIONS(138), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_COLON_QMARK] = ACTIONS(412), - [anon_sym_COLON_DASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(412), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [372] = { - [anon_sym_RBRACE] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1252), - [anon_sym_COLON] = ACTIONS(1254), - [anon_sym_COLON_QMARK] = ACTIONS(1250), - [anon_sym_COLON_DASH] = ACTIONS(1250), - [anon_sym_PERCENT] = ACTIONS(1250), - [anon_sym_SLASH] = ACTIONS(1250), - [sym_comment] = ACTIONS(46), - }, - [373] = { - [anon_sym_RBRACE] = ACTIONS(1256), - [anon_sym_EQ] = ACTIONS(1258), - [anon_sym_LBRACK] = ACTIONS(1260), - [anon_sym_COLON] = ACTIONS(1262), - [anon_sym_COLON_QMARK] = ACTIONS(1258), - [anon_sym_COLON_DASH] = ACTIONS(1258), - [anon_sym_PERCENT] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1258), - [sym_comment] = ACTIONS(46), - }, - [374] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1264), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [375] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1264), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [376] = { - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_BQUOTE] = ACTIONS(1264), - [sym_comment] = ACTIONS(46), - }, - [377] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(1264), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [378] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1266), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [379] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1266), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [380] = { - [aux_sym_concatenation_repeat1] = STATE(629), - [sym_file_descriptor] = ACTIONS(542), - [sym_word] = ACTIONS(542), - [sym__concat] = ACTIONS(688), - [sym_variable_name] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_SEMI_SEMI] = ACTIONS(544), - [anon_sym_PIPE_AMP] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_AMP_GT] = ACTIONS(544), - [anon_sym_AMP_GT_GT] = ACTIONS(544), - [anon_sym_LT_AMP] = ACTIONS(544), - [anon_sym_GT_AMP] = ACTIONS(544), - [anon_sym_DQUOTE] = ACTIONS(544), - [sym_raw_string] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(544), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(544), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(544), - [anon_sym_BQUOTE] = ACTIONS(544), - [anon_sym_LT_LPAREN] = ACTIONS(544), - [anon_sym_GT_LPAREN] = ACTIONS(544), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_LF] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(544), - }, - [381] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [382] = { - [anon_sym_EQ] = ACTIONS(1272), - [anon_sym_PLUS_EQ] = ACTIONS(1272), - [sym_comment] = ACTIONS(46), - }, - [383] = { - [aux_sym_concatenation_repeat1] = STATE(662), - [sym__concat] = ACTIONS(726), - [anon_sym_RBRACK] = ACTIONS(254), - [sym_comment] = ACTIONS(46), - }, - [384] = { - [sym__concat] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_RPAREN] = ACTIONS(394), - [anon_sym_RBRACE] = ACTIONS(394), - [anon_sym_RBRACK] = ACTIONS(394), - [sym_comment] = ACTIONS(46), - }, - [385] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(252), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), - }, - [386] = { - [sym__concat] = ACTIONS(412), - [anon_sym_PIPE] = ACTIONS(412), - [anon_sym_RPAREN] = ACTIONS(412), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_RBRACK] = ACTIONS(412), - [sym_comment] = ACTIONS(46), - }, - [387] = { - [sym__concat] = ACTIONS(416), - [anon_sym_PIPE] = ACTIONS(416), - [anon_sym_RPAREN] = ACTIONS(416), - [anon_sym_RBRACE] = ACTIONS(416), - [anon_sym_RBRACK] = ACTIONS(416), - [sym_comment] = ACTIONS(46), - }, - [388] = { - [sym__concat] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(420), - [anon_sym_RPAREN] = ACTIONS(420), - [anon_sym_RBRACE] = ACTIONS(420), - [anon_sym_RBRACK] = ACTIONS(420), - [sym_comment] = ACTIONS(46), - }, - [389] = { - [sym_special_variable_name] = STATE(665), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(138), - [anon_sym_AT] = ACTIONS(138), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_COLON_QMARK] = ACTIONS(412), - [anon_sym_COLON_DASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(412), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [390] = { - [anon_sym_RBRACE] = ACTIONS(1278), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_LBRACK] = ACTIONS(1282), - [anon_sym_COLON] = ACTIONS(1284), - [anon_sym_COLON_QMARK] = ACTIONS(1280), - [anon_sym_COLON_DASH] = ACTIONS(1280), - [anon_sym_PERCENT] = ACTIONS(1280), - [anon_sym_SLASH] = ACTIONS(1280), - [sym_comment] = ACTIONS(46), - }, - [391] = { - [anon_sym_RBRACE] = ACTIONS(1286), - [anon_sym_EQ] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(1290), - [anon_sym_COLON] = ACTIONS(1292), - [anon_sym_COLON_QMARK] = ACTIONS(1288), - [anon_sym_COLON_DASH] = ACTIONS(1288), - [anon_sym_PERCENT] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1288), - [sym_comment] = ACTIONS(46), - }, - [392] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [393] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [394] = { - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_BQUOTE] = ACTIONS(1294), - [sym_comment] = ACTIONS(46), - }, - [395] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [396] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [397] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [398] = { - [anon_sym_EQ] = ACTIONS(1298), - [anon_sym_PLUS_EQ] = ACTIONS(1298), - [sym_comment] = ACTIONS(46), - }, - [399] = { - [aux_sym_concatenation_repeat1] = STATE(662), - [sym__concat] = ACTIONS(726), - [anon_sym_RBRACK] = ACTIONS(542), - [sym_comment] = ACTIONS(46), - }, - [400] = { - [aux_sym_concatenation_repeat1] = STATE(675), - [sym_word] = ACTIONS(556), - [sym__concat] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(558), - [anon_sym_DQUOTE] = ACTIONS(558), - [sym_raw_string] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(558), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(558), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(558), - [anon_sym_BQUOTE] = ACTIONS(558), - [anon_sym_LT_LPAREN] = ACTIONS(558), - [anon_sym_GT_LPAREN] = ACTIONS(558), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LF] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(558), - }, - [401] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(677), - [anon_sym_DQUOTE] = ACTIONS(1302), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), - }, - [402] = { - [sym_special_variable_name] = STATE(680), - [anon_sym_DOLLAR] = ACTIONS(1304), - [anon_sym_POUND] = ACTIONS(1304), - [anon_sym_AT] = ACTIONS(1304), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1304), - [anon_sym_QMARK] = ACTIONS(1304), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_BANG] = ACTIONS(1304), - [anon_sym_0] = ACTIONS(1308), - [anon_sym__] = ACTIONS(1308), - }, - [403] = { - [sym_special_variable_name] = STATE(683), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(1310), - [anon_sym_AT] = ACTIONS(138), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [404] = { - [sym_for_statement] = STATE(684), - [sym_while_statement] = STATE(684), - [sym_if_statement] = STATE(684), - [sym_case_statement] = STATE(684), - [sym_function_definition] = STATE(684), - [sym_subshell] = STATE(684), - [sym_pipeline] = STATE(684), - [sym_list] = STATE(684), - [sym_command] = STATE(684), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(685), - [sym_declaration_command] = STATE(684), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), - }, - [405] = { - [sym_for_statement] = STATE(686), - [sym_while_statement] = STATE(686), - [sym_if_statement] = STATE(686), - [sym_case_statement] = STATE(686), - [sym_function_definition] = STATE(686), - [sym_subshell] = STATE(686), - [sym_pipeline] = STATE(686), - [sym_list] = STATE(686), - [sym_command] = STATE(686), - [sym_command_name] = STATE(118), - [sym_variable_assignment] = STATE(687), - [sym_declaration_command] = STATE(686), - [sym_subscript] = STATE(120), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_command_repeat1] = STATE(121), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(178), - [sym_variable_name] = ACTIONS(180), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(184), - [anon_sym_typeset] = ACTIONS(184), - [anon_sym_export] = ACTIONS(184), - [anon_sym_readonly] = ACTIONS(184), - [anon_sym_local] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(178), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(186), - }, - [406] = { - [sym_for_statement] = STATE(688), - [sym_while_statement] = STATE(688), - [sym_if_statement] = STATE(688), - [sym_case_statement] = STATE(688), - [sym_function_definition] = STATE(688), - [sym_subshell] = STATE(688), - [sym_pipeline] = STATE(688), - [sym_list] = STATE(688), - [sym_command] = STATE(688), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(689), - [sym_declaration_command] = STATE(688), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), - }, - [407] = { - [aux_sym_concatenation_repeat1] = STATE(690), - [sym_word] = ACTIONS(580), - [sym__concat] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(582), - [anon_sym_DQUOTE] = ACTIONS(582), - [sym_raw_string] = ACTIONS(582), - [anon_sym_DOLLAR] = ACTIONS(582), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(582), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(582), - [anon_sym_BQUOTE] = ACTIONS(582), - [anon_sym_LT_LPAREN] = ACTIONS(582), - [anon_sym_GT_LPAREN] = ACTIONS(582), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(582), - [anon_sym_LF] = ACTIONS(582), - [anon_sym_AMP] = ACTIONS(582), - }, - [408] = { - [sym_word] = ACTIONS(556), - [anon_sym_SEMI_SEMI] = ACTIONS(558), - [anon_sym_DQUOTE] = ACTIONS(558), - [sym_raw_string] = ACTIONS(558), - [anon_sym_DOLLAR] = ACTIONS(558), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(558), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(558), - [anon_sym_BQUOTE] = ACTIONS(558), - [anon_sym_LT_LPAREN] = ACTIONS(558), - [anon_sym_GT_LPAREN] = ACTIONS(558), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(558), - [anon_sym_LF] = ACTIONS(558), - [anon_sym_AMP] = ACTIONS(558), - }, - [409] = { - [sym_concatenation] = STATE(408), - [sym_string] = STATE(400), - [sym_simple_expansion] = STATE(400), - [sym_expansion] = STATE(400), - [sym_command_substitution] = STATE(400), - [sym_process_substitution] = STATE(400), - [aux_sym_for_statement_repeat1] = STATE(692), - [sym_word] = ACTIONS(744), - [anon_sym_SEMI_SEMI] = ACTIONS(1314), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_raw_string] = ACTIONS(1318), - [anon_sym_DOLLAR] = ACTIONS(1320), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1322), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1324), - [anon_sym_BQUOTE] = ACTIONS(1326), - [anon_sym_LT_LPAREN] = ACTIONS(1328), - [anon_sym_GT_LPAREN] = ACTIONS(1328), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1314), - [anon_sym_LF] = ACTIONS(1314), - [anon_sym_AMP] = ACTIONS(1314), - }, - [410] = { - [anon_sym_PIPE] = ACTIONS(1332), - [anon_sym_RPAREN] = ACTIONS(1332), - [anon_sym_SEMI_SEMI] = ACTIONS(1332), - [anon_sym_PIPE_AMP] = ACTIONS(1332), - [anon_sym_AMP_AMP] = ACTIONS(1332), - [anon_sym_PIPE_PIPE] = ACTIONS(1332), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym_LF] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - }, - [411] = { - [sym_file_descriptor] = ACTIONS(196), - [sym_word] = ACTIONS(196), - [sym_variable_name] = ACTIONS(196), - [anon_sym_for] = ACTIONS(198), - [anon_sym_while] = ACTIONS(198), - [anon_sym_done] = ACTIONS(198), - [anon_sym_if] = ACTIONS(198), - [anon_sym_case] = ACTIONS(198), - [anon_sym_function] = ACTIONS(198), - [anon_sym_LPAREN] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(198), - [anon_sym_typeset] = ACTIONS(198), - [anon_sym_export] = ACTIONS(198), - [anon_sym_readonly] = ACTIONS(198), - [anon_sym_local] = ACTIONS(198), - [anon_sym_LT] = ACTIONS(198), - [anon_sym_GT] = ACTIONS(198), - [anon_sym_GT_GT] = ACTIONS(196), - [anon_sym_AMP_GT] = ACTIONS(198), - [anon_sym_AMP_GT_GT] = ACTIONS(196), - [anon_sym_LT_AMP] = ACTIONS(196), - [anon_sym_GT_AMP] = ACTIONS(196), - [anon_sym_DQUOTE] = ACTIONS(196), - [sym_raw_string] = ACTIONS(196), - [anon_sym_DOLLAR] = ACTIONS(198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(196), - [anon_sym_BQUOTE] = ACTIONS(196), - [anon_sym_LT_LPAREN] = ACTIONS(196), - [anon_sym_GT_LPAREN] = ACTIONS(196), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(200), - }, - [412] = { - [anon_sym_PIPE] = ACTIONS(202), - [anon_sym_SEMI_SEMI] = ACTIONS(1334), - [anon_sym_PIPE_AMP] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(206), - [anon_sym_PIPE_PIPE] = ACTIONS(206), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - }, - [413] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(202), - [anon_sym_SEMI_SEMI] = ACTIONS(1334), - [anon_sym_PIPE_AMP] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(206), - [anon_sym_PIPE_PIPE] = ACTIONS(206), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(236), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(236), - [anon_sym_SEMI] = ACTIONS(1334), - [anon_sym_LF] = ACTIONS(1334), - [anon_sym_AMP] = ACTIONS(1334), - }, - [414] = { - [sym__terminated_statement] = STATE(411), - [sym_for_statement] = STATE(412), - [sym_while_statement] = STATE(412), - [sym_if_statement] = STATE(412), - [sym_case_statement] = STATE(412), - [sym_function_definition] = STATE(412), - [sym_subshell] = STATE(412), - [sym_pipeline] = STATE(412), - [sym_list] = STATE(412), - [sym_command] = STATE(412), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(413), - [sym_declaration_command] = STATE(412), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(695), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(1336), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), - }, - [415] = { - [anon_sym_PIPE] = ACTIONS(1338), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_SEMI_SEMI] = ACTIONS(1338), - [anon_sym_PIPE_AMP] = ACTIONS(1338), - [anon_sym_AMP_AMP] = ACTIONS(1338), - [anon_sym_PIPE_PIPE] = ACTIONS(1338), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1338), - [anon_sym_LF] = ACTIONS(1338), - [anon_sym_AMP] = ACTIONS(1338), - }, - [416] = { - [sym__terminated_statement] = STATE(696), - [sym_for_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_function_definition] = STATE(38), - [sym_subshell] = STATE(38), - [sym_pipeline] = STATE(38), - [sym_list] = STATE(38), - [sym_command] = STATE(38), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(39), - [sym_declaration_command] = STATE(38), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), - }, - [417] = { - [sym__terminated_statement] = STATE(697), - [sym_for_statement] = STATE(698), - [sym_while_statement] = STATE(698), - [sym_if_statement] = STATE(698), - [sym_case_statement] = STATE(698), - [sym_function_definition] = STATE(698), - [sym_subshell] = STATE(698), - [sym_pipeline] = STATE(698), - [sym_list] = STATE(698), - [sym_command] = STATE(698), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(699), - [sym_declaration_command] = STATE(698), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(700), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(1340), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), - }, - [418] = { - [sym_file_descriptor] = ACTIONS(196), - [sym_word] = ACTIONS(196), - [sym_variable_name] = ACTIONS(196), - [anon_sym_for] = ACTIONS(198), - [anon_sym_while] = ACTIONS(198), - [anon_sym_if] = ACTIONS(198), - [anon_sym_fi] = ACTIONS(198), - [anon_sym_elif] = ACTIONS(198), - [anon_sym_else] = ACTIONS(198), - [anon_sym_case] = ACTIONS(198), - [anon_sym_function] = ACTIONS(198), - [anon_sym_LPAREN] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(198), - [anon_sym_typeset] = ACTIONS(198), - [anon_sym_export] = ACTIONS(198), - [anon_sym_readonly] = ACTIONS(198), - [anon_sym_local] = ACTIONS(198), - [anon_sym_LT] = ACTIONS(198), - [anon_sym_GT] = ACTIONS(198), - [anon_sym_GT_GT] = ACTIONS(196), - [anon_sym_AMP_GT] = ACTIONS(198), - [anon_sym_AMP_GT_GT] = ACTIONS(196), - [anon_sym_LT_AMP] = ACTIONS(196), - [anon_sym_GT_AMP] = ACTIONS(196), - [anon_sym_DQUOTE] = ACTIONS(196), - [sym_raw_string] = ACTIONS(196), - [anon_sym_DOLLAR] = ACTIONS(198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(196), - [anon_sym_BQUOTE] = ACTIONS(196), - [anon_sym_LT_LPAREN] = ACTIONS(196), - [anon_sym_GT_LPAREN] = ACTIONS(196), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(200), - }, - [419] = { - [anon_sym_PIPE] = ACTIONS(202), - [anon_sym_SEMI_SEMI] = ACTIONS(1342), - [anon_sym_PIPE_AMP] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(206), - [anon_sym_PIPE_PIPE] = ACTIONS(206), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - }, - [420] = { - [anon_sym_fi] = ACTIONS(1344), - [anon_sym_elif] = ACTIONS(1344), - [anon_sym_else] = ACTIONS(1344), - [sym_comment] = ACTIONS(46), - }, - [421] = { - [anon_sym_fi] = ACTIONS(1346), - [sym_comment] = ACTIONS(46), - }, - [422] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(202), - [anon_sym_SEMI_SEMI] = ACTIONS(1342), - [anon_sym_PIPE_AMP] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(206), - [anon_sym_PIPE_PIPE] = ACTIONS(206), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(236), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(236), - [anon_sym_SEMI] = ACTIONS(1342), - [anon_sym_LF] = ACTIONS(1342), - [anon_sym_AMP] = ACTIONS(1342), - }, - [423] = { - [sym__terminated_statement] = STATE(418), - [sym_for_statement] = STATE(419), - [sym_while_statement] = STATE(419), - [sym_if_statement] = STATE(419), - [sym_elif_clause] = STATE(420), - [sym_else_clause] = STATE(703), - [sym_case_statement] = STATE(419), - [sym_function_definition] = STATE(419), - [sym_subshell] = STATE(419), - [sym_pipeline] = STATE(419), - [sym_list] = STATE(419), - [sym_command] = STATE(419), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(422), - [sym_declaration_command] = STATE(419), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(704), - [aux_sym_if_statement_repeat1] = STATE(705), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(1348), - [anon_sym_elif] = ACTIONS(766), - [anon_sym_else] = ACTIONS(768), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), - }, - [424] = { - [sym_elif_clause] = STATE(420), - [sym_else_clause] = STATE(703), - [aux_sym_if_statement_repeat1] = STATE(706), - [anon_sym_fi] = ACTIONS(1346), - [anon_sym_elif] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1352), - [sym_comment] = ACTIONS(46), - }, - [425] = { - [sym__concat] = ACTIONS(675), - [anon_sym_in] = ACTIONS(677), - [anon_sym_SEMI_SEMI] = ACTIONS(677), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(677), - }, - [426] = { - [sym__concat] = ACTIONS(679), - [anon_sym_in] = ACTIONS(681), - [anon_sym_SEMI_SEMI] = ACTIONS(681), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(681), - [anon_sym_LF] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - }, - [427] = { - [sym_case_item] = STATE(710), - [sym_concatenation] = STATE(711), - [sym_string] = STATE(707), - [sym_simple_expansion] = STATE(707), - [sym_expansion] = STATE(707), - [sym_command_substitution] = STATE(707), - [sym_process_substitution] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(712), - [sym_word] = ACTIONS(1354), - [anon_sym_esac] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1358), - }, - [428] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1360), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym_LF] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - }, - [429] = { - [aux_sym_concatenation_repeat1] = STATE(429), - [sym__concat] = ACTIONS(1362), - [anon_sym_in] = ACTIONS(677), - [anon_sym_SEMI_SEMI] = ACTIONS(677), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(677), - }, - [430] = { - [sym__concat] = ACTIONS(931), - [anon_sym_in] = ACTIONS(933), - [anon_sym_SEMI_SEMI] = ACTIONS(933), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - }, - [431] = { - [anon_sym_RBRACE] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1367), - [sym_comment] = ACTIONS(46), - }, - [432] = { - [anon_sym_RBRACE] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1371), - [sym_comment] = ACTIONS(46), - }, - [433] = { - [sym__concat] = ACTIONS(960), - [anon_sym_in] = ACTIONS(962), - [anon_sym_SEMI_SEMI] = ACTIONS(962), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_LF] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - }, - [434] = { - [sym_concatenation] = STATE(721), - [sym_string] = STATE(718), - [sym_simple_expansion] = STATE(718), - [sym_expansion] = STATE(718), - [sym_command_substitution] = STATE(718), - [sym_process_substitution] = STATE(718), - [sym_word] = ACTIONS(1373), - [anon_sym_RBRACE] = ACTIONS(1375), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1377), - }, - [435] = { - [anon_sym_AT] = ACTIONS(1379), - [sym_comment] = ACTIONS(46), - }, - [436] = { - [sym__concat] = ACTIONS(972), - [anon_sym_in] = ACTIONS(974), - [anon_sym_SEMI_SEMI] = ACTIONS(974), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_LF] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - }, - [437] = { - [sym_concatenation] = STATE(725), - [sym_string] = STATE(723), - [sym_simple_expansion] = STATE(723), - [sym_expansion] = STATE(723), - [sym_command_substitution] = STATE(723), - [sym_process_substitution] = STATE(723), - [sym_word] = ACTIONS(1381), - [anon_sym_RBRACE] = ACTIONS(1369), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1381), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1383), - }, - [438] = { - [anon_sym_AT] = ACTIONS(1385), - [sym_comment] = ACTIONS(46), - }, - [439] = { - [sym__concat] = ACTIONS(1066), - [anon_sym_in] = ACTIONS(1068), - [anon_sym_SEMI_SEMI] = ACTIONS(1068), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_LF] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1068), - }, - [440] = { - [sym__concat] = ACTIONS(1122), - [anon_sym_in] = ACTIONS(1124), - [anon_sym_SEMI_SEMI] = ACTIONS(1124), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1124), - }, - [441] = { - [sym_case_item] = STATE(710), - [sym_concatenation] = STATE(711), - [sym_string] = STATE(707), - [sym_simple_expansion] = STATE(707), - [sym_expansion] = STATE(707), - [sym_command_substitution] = STATE(707), - [sym_process_substitution] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(728), - [sym_word] = ACTIONS(1354), - [anon_sym_esac] = ACTIONS(1387), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1358), - }, - [442] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1389), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_LF] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1389), - }, - [443] = { - [sym_compound_statement] = STATE(730), - [anon_sym_LBRACE] = ACTIONS(330), - [sym_comment] = ACTIONS(46), - }, - [444] = { - [sym_file_descriptor] = ACTIONS(1391), - [anon_sym_PIPE] = ACTIONS(1393), - [anon_sym_RPAREN] = ACTIONS(1393), - [anon_sym_SEMI_SEMI] = ACTIONS(1393), - [anon_sym_PIPE_AMP] = ACTIONS(1393), - [anon_sym_AMP_AMP] = ACTIONS(1393), - [anon_sym_PIPE_PIPE] = ACTIONS(1393), - [anon_sym_LT] = ACTIONS(1393), - [anon_sym_GT] = ACTIONS(1393), - [anon_sym_GT_GT] = ACTIONS(1393), - [anon_sym_AMP_GT] = ACTIONS(1393), - [anon_sym_AMP_GT_GT] = ACTIONS(1393), - [anon_sym_LT_AMP] = ACTIONS(1393), - [anon_sym_GT_AMP] = ACTIONS(1393), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_LF] = ACTIONS(1393), - [anon_sym_AMP] = ACTIONS(1393), - }, - [445] = { - [sym__terminated_statement] = STATE(21), - [sym_for_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_function_definition] = STATE(22), - [sym_subshell] = STATE(22), - [sym_pipeline] = STATE(22), - [sym_list] = STATE(22), - [sym_command] = STATE(22), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(24), - [sym_declaration_command] = STATE(22), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(732), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), - }, - [446] = { - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_GT_GT] = ACTIONS(1399), - [anon_sym_AMP_GT] = ACTIONS(1397), - [anon_sym_AMP_GT_GT] = ACTIONS(1399), - [anon_sym_LT_AMP] = ACTIONS(1399), - [anon_sym_GT_AMP] = ACTIONS(1399), - [sym_comment] = ACTIONS(46), - }, - [447] = { - [sym_concatenation] = STATE(742), - [sym_string] = STATE(734), - [sym_simple_expansion] = STATE(734), - [sym_expansion] = STATE(734), - [sym_command_substitution] = STATE(734), - [sym_process_substitution] = STATE(734), - [sym_word] = ACTIONS(1401), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym_raw_string] = ACTIONS(1401), - [anon_sym_DOLLAR] = ACTIONS(1405), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1407), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1409), - [anon_sym_BQUOTE] = ACTIONS(1411), - [anon_sym_LT_LPAREN] = ACTIONS(1413), - [anon_sym_GT_LPAREN] = ACTIONS(1413), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1415), - }, - [448] = { - [anon_sym_PIPE] = ACTIONS(1417), - [anon_sym_RPAREN] = ACTIONS(1417), - [anon_sym_SEMI_SEMI] = ACTIONS(1417), - [anon_sym_PIPE_AMP] = ACTIONS(1417), - [anon_sym_AMP_AMP] = ACTIONS(1417), - [anon_sym_PIPE_PIPE] = ACTIONS(1417), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym_LF] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(1417), - }, - [449] = { - [aux_sym_concatenation_repeat1] = STATE(449), - [sym_file_descriptor] = ACTIONS(675), - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(683), - [anon_sym_PIPE] = ACTIONS(677), - [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_SEMI_SEMI] = ACTIONS(677), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(677), - [anon_sym_GT_GT] = ACTIONS(677), - [anon_sym_AMP_GT] = ACTIONS(677), - [anon_sym_AMP_GT_GT] = ACTIONS(677), - [anon_sym_LT_AMP] = ACTIONS(677), - [anon_sym_GT_AMP] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(677), - [anon_sym_LT_LT_DASH] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(677), - [sym_raw_string] = ACTIONS(677), - [anon_sym_DOLLAR] = ACTIONS(677), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(677), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(677), - [anon_sym_BQUOTE] = ACTIONS(677), - [anon_sym_LT_LPAREN] = ACTIONS(677), - [anon_sym_GT_LPAREN] = ACTIONS(677), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(677), - }, - [450] = { - [aux_sym_concatenation_repeat1] = STATE(743), - [sym_file_descriptor] = ACTIONS(686), - [sym_word] = ACTIONS(686), - [sym__concat] = ACTIONS(688), - [sym_variable_name] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_RPAREN] = ACTIONS(690), - [anon_sym_SEMI_SEMI] = ACTIONS(690), - [anon_sym_PIPE_AMP] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(690), - [anon_sym_PIPE_PIPE] = ACTIONS(690), - [anon_sym_LT] = ACTIONS(690), - [anon_sym_GT] = ACTIONS(690), - [anon_sym_GT_GT] = ACTIONS(690), - [anon_sym_AMP_GT] = ACTIONS(690), - [anon_sym_AMP_GT_GT] = ACTIONS(690), - [anon_sym_LT_AMP] = ACTIONS(690), - [anon_sym_GT_AMP] = ACTIONS(690), - [anon_sym_DQUOTE] = ACTIONS(690), - [sym_raw_string] = ACTIONS(690), - [anon_sym_DOLLAR] = ACTIONS(690), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(690), - [anon_sym_BQUOTE] = ACTIONS(690), - [anon_sym_LT_LPAREN] = ACTIONS(690), - [anon_sym_GT_LPAREN] = ACTIONS(690), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(690), - [anon_sym_SEMI] = ACTIONS(690), - [anon_sym_LF] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - }, - [451] = { - [aux_sym_concatenation_repeat1] = STATE(744), + [aux_sym_concatenation_repeat1] = STATE(216), [sym_file_descriptor] = ACTIONS(722), - [sym_word] = ACTIONS(722), - [sym__concat] = ACTIONS(688), - [sym_variable_name] = ACTIONS(722), + [sym__concat] = ACTIONS(380), [anon_sym_PIPE] = ACTIONS(724), [anon_sym_RPAREN] = ACTIONS(724), [anon_sym_SEMI_SEMI] = ACTIONS(724), @@ -16073,6 +14050,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(724), [anon_sym_LT_AMP] = ACTIONS(724), [anon_sym_GT_AMP] = ACTIONS(724), + [anon_sym_LT_LT] = ACTIONS(724), + [anon_sym_LT_LT_DASH] = ACTIONS(724), + [anon_sym_LT_LT_LT] = ACTIONS(724), + [sym__special_characters] = ACTIONS(724), [anon_sym_DQUOTE] = ACTIONS(724), [sym_raw_string] = ACTIONS(724), [anon_sym_DOLLAR] = ACTIONS(724), @@ -16081,1324 +14062,4417 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(724), [anon_sym_LT_LPAREN] = ACTIONS(724), [anon_sym_GT_LPAREN] = ACTIONS(724), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(724), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(724), [anon_sym_SEMI] = ACTIONS(724), [anon_sym_LF] = ACTIONS(724), [anon_sym_AMP] = ACTIONS(724), }, - [452] = { - [anon_sym_RPAREN] = ACTIONS(1419), - [sym_comment] = ACTIONS(46), + [241] = { + [aux_sym_concatenation_repeat1] = STATE(216), + [sym_file_descriptor] = ACTIONS(726), + [sym__concat] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(728), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_SEMI_SEMI] = ACTIONS(728), + [anon_sym_PIPE_AMP] = ACTIONS(728), + [anon_sym_AMP_AMP] = ACTIONS(728), + [anon_sym_PIPE_PIPE] = ACTIONS(728), + [anon_sym_LT] = ACTIONS(728), + [anon_sym_GT] = ACTIONS(728), + [anon_sym_GT_GT] = ACTIONS(728), + [anon_sym_AMP_GT] = ACTIONS(728), + [anon_sym_AMP_GT_GT] = ACTIONS(728), + [anon_sym_LT_AMP] = ACTIONS(728), + [anon_sym_GT_AMP] = ACTIONS(728), + [anon_sym_LT_LT] = ACTIONS(728), + [anon_sym_LT_LT_DASH] = ACTIONS(728), + [anon_sym_LT_LT_LT] = ACTIONS(728), + [sym__special_characters] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(728), + [sym_raw_string] = ACTIONS(728), + [anon_sym_DOLLAR] = ACTIONS(728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(728), + [anon_sym_BQUOTE] = ACTIONS(728), + [anon_sym_LT_LPAREN] = ACTIONS(728), + [anon_sym_GT_LPAREN] = ACTIONS(728), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(728), + [anon_sym_SEMI] = ACTIONS(728), + [anon_sym_LF] = ACTIONS(728), + [anon_sym_AMP] = ACTIONS(728), }, - [453] = { - [sym_file_redirect] = STATE(448), - [sym_file_descriptor] = ACTIONS(1421), - [anon_sym_PIPE] = ACTIONS(812), - [anon_sym_RPAREN] = ACTIONS(812), - [anon_sym_SEMI_SEMI] = ACTIONS(812), - [anon_sym_PIPE_AMP] = ACTIONS(812), - [anon_sym_AMP_AMP] = ACTIONS(812), - [anon_sym_PIPE_PIPE] = ACTIONS(812), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_GT] = ACTIONS(1423), - [anon_sym_GT_GT] = ACTIONS(1423), - [anon_sym_AMP_GT] = ACTIONS(1423), - [anon_sym_AMP_GT_GT] = ACTIONS(1423), - [anon_sym_LT_AMP] = ACTIONS(1423), - [anon_sym_GT_AMP] = ACTIONS(1423), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(812), - [anon_sym_LF] = ACTIONS(812), - [anon_sym_AMP] = ACTIONS(812), + [242] = { + [sym_file_redirect] = STATE(150), + [sym_heredoc_redirect] = STATE(150), + [sym_herestring_redirect] = STATE(150), + [sym_concatenation] = STATE(151), + [sym_string] = STATE(241), + [sym_simple_expansion] = STATE(241), + [sym_expansion] = STATE(241), + [sym_command_substitution] = STATE(241), + [sym_process_substitution] = STATE(241), + [aux_sym_for_statement_repeat1] = STATE(549), + [aux_sym_command_repeat2] = STATE(550), + [sym_file_descriptor] = ACTIONS(410), + [anon_sym_PIPE] = ACTIONS(734), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_SEMI_SEMI] = ACTIONS(734), + [anon_sym_PIPE_AMP] = ACTIONS(734), + [anon_sym_AMP_AMP] = ACTIONS(734), + [anon_sym_PIPE_PIPE] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(412), + [anon_sym_GT] = ACTIONS(412), + [anon_sym_GT_GT] = ACTIONS(412), + [anon_sym_AMP_GT] = ACTIONS(412), + [anon_sym_AMP_GT_GT] = ACTIONS(412), + [anon_sym_LT_AMP] = ACTIONS(412), + [anon_sym_GT_AMP] = ACTIONS(412), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(414), + [sym__special_characters] = ACTIONS(416), + [anon_sym_DQUOTE] = ACTIONS(418), + [sym_raw_string] = ACTIONS(420), + [anon_sym_DOLLAR] = ACTIONS(422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(428), + [anon_sym_LT_LPAREN] = ACTIONS(430), + [anon_sym_GT_LPAREN] = ACTIONS(430), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(420), + [anon_sym_SEMI] = ACTIONS(734), + [anon_sym_LF] = ACTIONS(734), + [anon_sym_AMP] = ACTIONS(734), }, - [454] = { - [sym_concatenation] = STATE(469), - [sym_string] = STATE(748), - [sym_array] = STATE(469), - [sym_simple_expansion] = STATE(748), - [sym_expansion] = STATE(748), - [sym_command_substitution] = STATE(748), - [sym_process_substitution] = STATE(748), - [sym_word] = ACTIONS(1425), - [sym__empty_value] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_DQUOTE] = ACTIONS(848), - [sym_raw_string] = ACTIONS(1425), - [anon_sym_DOLLAR] = ACTIONS(850), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(854), - [anon_sym_BQUOTE] = ACTIONS(856), - [anon_sym_LT_LPAREN] = ACTIONS(858), - [anon_sym_GT_LPAREN] = ACTIONS(858), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1427), + [243] = { + [sym_file_redirect] = STATE(150), + [sym_heredoc_redirect] = STATE(150), + [sym_herestring_redirect] = STATE(150), + [aux_sym_command_repeat2] = STATE(551), + [sym_file_descriptor] = ACTIONS(410), + [anon_sym_PIPE] = ACTIONS(734), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_SEMI_SEMI] = ACTIONS(734), + [anon_sym_PIPE_AMP] = ACTIONS(734), + [anon_sym_AMP_AMP] = ACTIONS(734), + [anon_sym_PIPE_PIPE] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(412), + [anon_sym_GT] = ACTIONS(412), + [anon_sym_GT_GT] = ACTIONS(412), + [anon_sym_AMP_GT] = ACTIONS(412), + [anon_sym_AMP_GT_GT] = ACTIONS(412), + [anon_sym_LT_AMP] = ACTIONS(412), + [anon_sym_GT_AMP] = ACTIONS(412), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(414), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(734), + [anon_sym_LF] = ACTIONS(734), + [anon_sym_AMP] = ACTIONS(734), }, - [455] = { - [sym_variable_assignment] = STATE(62), - [sym_subscript] = STATE(202), - [aux_sym_declaration_command_repeat1] = STATE(455), - [sym_word] = ACTIONS(862), - [sym_variable_name] = ACTIONS(1429), - [anon_sym_PIPE] = ACTIONS(868), - [anon_sym_RPAREN] = ACTIONS(868), - [anon_sym_SEMI_SEMI] = ACTIONS(868), - [anon_sym_PIPE_AMP] = ACTIONS(868), - [anon_sym_AMP_AMP] = ACTIONS(868), - [anon_sym_PIPE_PIPE] = ACTIONS(868), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(870), - [anon_sym_SEMI] = ACTIONS(868), - [anon_sym_LF] = ACTIONS(868), - [anon_sym_AMP] = ACTIONS(868), + [244] = { + [anon_sym_PIPE] = ACTIONS(402), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_SEMI_SEMI] = ACTIONS(1078), + [anon_sym_PIPE_AMP] = ACTIONS(402), + [anon_sym_AMP_AMP] = ACTIONS(408), + [anon_sym_PIPE_PIPE] = ACTIONS(408), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_LF] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), }, - [456] = { - [sym_compound_statement] = STATE(750), - [anon_sym_LBRACE] = ACTIONS(330), - [sym_comment] = ACTIONS(46), + [245] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(402), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_SEMI_SEMI] = ACTIONS(1078), + [anon_sym_PIPE_AMP] = ACTIONS(402), + [anon_sym_AMP_AMP] = ACTIONS(408), + [anon_sym_PIPE_PIPE] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_AMP_GT] = ACTIONS(274), + [anon_sym_AMP_GT_GT] = ACTIONS(274), + [anon_sym_LT_AMP] = ACTIONS(274), + [anon_sym_GT_AMP] = ACTIONS(274), + [sym__special_characters] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(274), + [sym_raw_string] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(274), + [anon_sym_BQUOTE] = ACTIONS(274), + [anon_sym_LT_LPAREN] = ACTIONS(274), + [anon_sym_GT_LPAREN] = ACTIONS(274), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_LF] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), }, - [457] = { - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1432), - [anon_sym_SEMI_SEMI] = ACTIONS(1432), - [anon_sym_PIPE_AMP] = ACTIONS(1432), - [anon_sym_AMP_AMP] = ACTIONS(1432), - [anon_sym_PIPE_PIPE] = ACTIONS(1432), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1432), - [anon_sym_LF] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), + [246] = { + [sym__terminated_statement] = STATE(22), + [sym_for_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_function_definition] = STATE(23), + [sym_subshell] = STATE(23), + [sym_pipeline] = STATE(23), + [sym_list] = STATE(23), + [sym_command] = STATE(23), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(25), + [sym_declaration_command] = STATE(23), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(246), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(736), + [sym_variable_name] = ACTIONS(739), + [anon_sym_for] = ACTIONS(744), + [anon_sym_while] = ACTIONS(747), + [anon_sym_if] = ACTIONS(750), + [anon_sym_case] = ACTIONS(753), + [anon_sym_function] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_declare] = ACTIONS(762), + [anon_sym_typeset] = ACTIONS(762), + [anon_sym_export] = ACTIONS(762), + [anon_sym_readonly] = ACTIONS(762), + [anon_sym_local] = ACTIONS(762), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(768), + [anon_sym_AMP_GT] = ACTIONS(765), + [anon_sym_AMP_GT_GT] = ACTIONS(768), + [anon_sym_LT_AMP] = ACTIONS(768), + [anon_sym_GT_AMP] = ACTIONS(768), + [sym__special_characters] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(774), + [sym_raw_string] = ACTIONS(777), + [anon_sym_DOLLAR] = ACTIONS(780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(786), + [anon_sym_BQUOTE] = ACTIONS(789), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(795), }, - [458] = { - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_RPAREN] = ACTIONS(1128), - [anon_sym_SEMI_SEMI] = ACTIONS(1128), - [anon_sym_PIPE_AMP] = ACTIONS(340), - [anon_sym_AMP_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1128), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), + [247] = { + [sym_file_redirect] = STATE(150), + [sym_heredoc_redirect] = STATE(150), + [sym_herestring_redirect] = STATE(150), + [sym_concatenation] = STATE(151), + [sym_string] = STATE(241), + [sym_simple_expansion] = STATE(241), + [sym_expansion] = STATE(241), + [sym_command_substitution] = STATE(241), + [sym_process_substitution] = STATE(241), + [aux_sym_for_statement_repeat1] = STATE(553), + [aux_sym_command_repeat2] = STATE(550), + [sym_file_descriptor] = ACTIONS(410), + [anon_sym_PIPE] = ACTIONS(734), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_SEMI_SEMI] = ACTIONS(734), + [anon_sym_PIPE_AMP] = ACTIONS(734), + [anon_sym_AMP_AMP] = ACTIONS(734), + [anon_sym_PIPE_PIPE] = ACTIONS(734), + [anon_sym_LT] = ACTIONS(412), + [anon_sym_GT] = ACTIONS(412), + [anon_sym_GT_GT] = ACTIONS(412), + [anon_sym_AMP_GT] = ACTIONS(412), + [anon_sym_AMP_GT_GT] = ACTIONS(412), + [anon_sym_LT_AMP] = ACTIONS(412), + [anon_sym_GT_AMP] = ACTIONS(412), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(414), + [sym__special_characters] = ACTIONS(416), + [anon_sym_DQUOTE] = ACTIONS(418), + [sym_raw_string] = ACTIONS(420), + [anon_sym_DOLLAR] = ACTIONS(422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(428), + [anon_sym_LT_LPAREN] = ACTIONS(430), + [anon_sym_GT_LPAREN] = ACTIONS(430), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(420), + [anon_sym_SEMI] = ACTIONS(734), + [anon_sym_LF] = ACTIONS(734), + [anon_sym_AMP] = ACTIONS(734), }, - [459] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_RPAREN] = ACTIONS(1128), - [anon_sym_SEMI_SEMI] = ACTIONS(1128), - [anon_sym_PIPE_AMP] = ACTIONS(340), - [anon_sym_AMP_AMP] = ACTIONS(1128), - [anon_sym_PIPE_PIPE] = ACTIONS(1128), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(236), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(236), - [anon_sym_SEMI] = ACTIONS(1128), - [anon_sym_LF] = ACTIONS(1128), - [anon_sym_AMP] = ACTIONS(1128), + [248] = { + [sym_concatenation] = STATE(554), + [sym_string] = STATE(558), + [sym_array] = STATE(554), + [sym_simple_expansion] = STATE(558), + [sym_expansion] = STATE(558), + [sym_command_substitution] = STATE(558), + [sym_process_substitution] = STATE(558), + [sym__empty_value] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [sym__special_characters] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym_raw_string] = ACTIONS(1088), + [anon_sym_DOLLAR] = ACTIONS(1090), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1092), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1094), + [anon_sym_BQUOTE] = ACTIONS(1096), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1100), }, - [460] = { + [249] = { + [sym_variable_name] = ACTIONS(330), + [anon_sym_PIPE] = ACTIONS(332), + [anon_sym_RPAREN] = ACTIONS(332), + [anon_sym_SEMI_SEMI] = ACTIONS(332), + [anon_sym_PIPE_AMP] = ACTIONS(332), + [anon_sym_AMP_AMP] = ACTIONS(332), + [anon_sym_PIPE_PIPE] = ACTIONS(332), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(332), + [sym_word] = ACTIONS(332), + [anon_sym_SEMI] = ACTIONS(332), + [anon_sym_LF] = ACTIONS(332), + [anon_sym_AMP] = ACTIONS(332), + }, + [250] = { + [sym_variable_assignment] = STATE(70), + [sym_subscript] = STATE(71), + [aux_sym_declaration_command_repeat1] = STATE(250), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_PIPE] = ACTIONS(1105), + [anon_sym_SEMI_SEMI] = ACTIONS(1105), + [anon_sym_PIPE_AMP] = ACTIONS(1105), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE_PIPE] = ACTIONS(1105), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1107), + [sym_word] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1105), + [anon_sym_LF] = ACTIONS(1105), + [anon_sym_AMP] = ACTIONS(1105), + }, + [251] = { + [sym_string] = STATE(564), + [sym_simple_expansion] = STATE(564), + [sym_expansion] = STATE(564), + [sym_command_substitution] = STATE(564), + [sym_process_substitution] = STATE(564), + [sym__special_characters] = ACTIONS(1113), + [anon_sym_DQUOTE] = ACTIONS(118), + [sym_raw_string] = ACTIONS(1115), + [anon_sym_DOLLAR] = ACTIONS(122), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(124), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(126), + [anon_sym_BQUOTE] = ACTIONS(128), + [anon_sym_LT_LPAREN] = ACTIONS(130), + [anon_sym_GT_LPAREN] = ACTIONS(130), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1113), + }, + [252] = { + [aux_sym_concatenation_repeat1] = STATE(565), + [sym_file_descriptor] = ACTIONS(478), + [sym__concat] = ACTIONS(448), + [sym_variable_name] = ACTIONS(478), + [anon_sym_LT] = ACTIONS(1117), + [anon_sym_GT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(478), + [anon_sym_AMP_GT] = ACTIONS(1117), + [anon_sym_AMP_GT_GT] = ACTIONS(478), + [anon_sym_LT_AMP] = ACTIONS(478), + [anon_sym_GT_AMP] = ACTIONS(478), + [sym__special_characters] = ACTIONS(1117), + [anon_sym_DQUOTE] = ACTIONS(478), + [sym_raw_string] = ACTIONS(478), + [anon_sym_DOLLAR] = ACTIONS(1117), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(478), + [anon_sym_BQUOTE] = ACTIONS(478), + [anon_sym_LT_LPAREN] = ACTIONS(478), + [anon_sym_GT_LPAREN] = ACTIONS(478), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1117), + }, + [253] = { + [sym_file_descriptor] = ACTIONS(482), + [sym__concat] = ACTIONS(482), + [sym_variable_name] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(1119), + [anon_sym_GT] = ACTIONS(1119), + [anon_sym_GT_GT] = ACTIONS(482), + [anon_sym_AMP_GT] = ACTIONS(1119), + [anon_sym_AMP_GT_GT] = ACTIONS(482), + [anon_sym_LT_AMP] = ACTIONS(482), + [anon_sym_GT_AMP] = ACTIONS(482), + [sym__special_characters] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(482), + [sym_raw_string] = ACTIONS(482), + [anon_sym_DOLLAR] = ACTIONS(1119), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_LT_LPAREN] = ACTIONS(482), + [anon_sym_GT_LPAREN] = ACTIONS(482), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1119), + }, + [254] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(1121), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [255] = { + [sym_file_descriptor] = ACTIONS(510), + [sym__concat] = ACTIONS(510), + [sym_variable_name] = ACTIONS(510), + [anon_sym_LT] = ACTIONS(1123), + [anon_sym_GT] = ACTIONS(1123), + [anon_sym_GT_GT] = ACTIONS(510), + [anon_sym_AMP_GT] = ACTIONS(1123), + [anon_sym_AMP_GT_GT] = ACTIONS(510), + [anon_sym_LT_AMP] = ACTIONS(510), + [anon_sym_GT_AMP] = ACTIONS(510), + [sym__special_characters] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(510), + [sym_raw_string] = ACTIONS(510), + [anon_sym_DOLLAR] = ACTIONS(1123), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(510), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(510), + [anon_sym_BQUOTE] = ACTIONS(510), + [anon_sym_LT_LPAREN] = ACTIONS(510), + [anon_sym_GT_LPAREN] = ACTIONS(510), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1123), + }, + [256] = { + [sym_file_descriptor] = ACTIONS(514), + [sym__concat] = ACTIONS(514), + [sym_variable_name] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(1125), + [anon_sym_GT] = ACTIONS(1125), + [anon_sym_GT_GT] = ACTIONS(514), + [anon_sym_AMP_GT] = ACTIONS(1125), + [anon_sym_AMP_GT_GT] = ACTIONS(514), + [anon_sym_LT_AMP] = ACTIONS(514), + [anon_sym_GT_AMP] = ACTIONS(514), + [sym__special_characters] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(514), + [sym_raw_string] = ACTIONS(514), + [anon_sym_DOLLAR] = ACTIONS(1125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(514), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(514), + [anon_sym_LT_LPAREN] = ACTIONS(514), + [anon_sym_GT_LPAREN] = ACTIONS(514), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1125), + }, + [257] = { + [anon_sym_EQ] = ACTIONS(1127), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [258] = { + [anon_sym_RBRACE] = ACTIONS(1129), + [anon_sym_EQ] = ACTIONS(1131), + [anon_sym_COLON] = ACTIONS(1133), + [anon_sym_COLON_QMARK] = ACTIONS(1131), + [anon_sym_COLON_DASH] = ACTIONS(1131), + [anon_sym_PERCENT] = ACTIONS(1131), + [anon_sym_SLASH] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1131), + [sym_comment] = ACTIONS(48), + }, + [259] = { + [sym_subscript] = STATE(573), + [sym_variable_name] = ACTIONS(1135), + [anon_sym_DOLLAR] = ACTIONS(1137), + [anon_sym_DASH] = ACTIONS(1137), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1139), + [anon_sym_STAR] = ACTIONS(1137), + [anon_sym_AT] = ACTIONS(1137), + [anon_sym_QMARK] = ACTIONS(1137), + [anon_sym_0] = ACTIONS(1141), + [anon_sym__] = ACTIONS(1141), + }, + [260] = { + [anon_sym_RBRACE] = ACTIONS(1143), + [anon_sym_EQ] = ACTIONS(1145), + [anon_sym_COLON] = ACTIONS(1147), + [anon_sym_COLON_QMARK] = ACTIONS(1145), + [anon_sym_COLON_DASH] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1145), + [anon_sym_SLASH] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [sym_comment] = ACTIONS(48), + }, + [261] = { + [anon_sym_RBRACE] = ACTIONS(1149), + [anon_sym_EQ] = ACTIONS(1127), + [anon_sym_COLON] = ACTIONS(1151), + [anon_sym_COLON_QMARK] = ACTIONS(1127), + [anon_sym_COLON_DASH] = ACTIONS(1127), + [anon_sym_PERCENT] = ACTIONS(1127), + [anon_sym_SLASH] = ACTIONS(1127), + [anon_sym_DASH] = ACTIONS(1127), + [sym_comment] = ACTIONS(48), + }, + [262] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1153), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [263] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1153), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [264] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(1153), + [sym_comment] = ACTIONS(48), + }, + [265] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(1153), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [266] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [267] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1155), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [268] = { + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1159), + [anon_sym_AMP_GT] = ACTIONS(1159), + [anon_sym_AMP_GT_GT] = ACTIONS(1159), + [anon_sym_LT_AMP] = ACTIONS(1159), + [anon_sym_GT_AMP] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_LT_LT_DASH] = ACTIONS(1159), + [anon_sym_LT_LT_LT] = ACTIONS(1159), + [sym__special_characters] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_raw_string] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), + [anon_sym_BQUOTE] = ACTIONS(1159), + [anon_sym_LT_LPAREN] = ACTIONS(1159), + [anon_sym_GT_LPAREN] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [269] = { + [aux_sym_concatenation_repeat1] = STATE(269), + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(1161), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1159), + [anon_sym_AMP_GT] = ACTIONS(1159), + [anon_sym_AMP_GT_GT] = ACTIONS(1159), + [anon_sym_LT_AMP] = ACTIONS(1159), + [anon_sym_GT_AMP] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_LT_LT_DASH] = ACTIONS(1159), + [anon_sym_LT_LT_LT] = ACTIONS(1159), + [sym__special_characters] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_raw_string] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), + [anon_sym_BQUOTE] = ACTIONS(1159), + [anon_sym_LT_LPAREN] = ACTIONS(1159), + [anon_sym_GT_LPAREN] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [270] = { + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym__string_content] = ACTIONS(1166), + [anon_sym_DOLLAR] = ACTIONS(1164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1164), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1164), + [anon_sym_BQUOTE] = ACTIONS(1164), + [sym_comment] = ACTIONS(110), + }, + [271] = { + [sym__concat] = ACTIONS(510), + [anon_sym_DQUOTE] = ACTIONS(512), + [sym__string_content] = ACTIONS(1123), + [anon_sym_DOLLAR] = ACTIONS(512), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(512), + [anon_sym_BQUOTE] = ACTIONS(512), + [sym_comment] = ACTIONS(110), + }, + [272] = { + [sym__concat] = ACTIONS(514), + [anon_sym_DQUOTE] = ACTIONS(516), + [sym__string_content] = ACTIONS(1125), + [anon_sym_DOLLAR] = ACTIONS(516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(516), + [anon_sym_BQUOTE] = ACTIONS(516), + [sym_comment] = ACTIONS(110), + }, + [273] = { + [anon_sym_EQ] = ACTIONS(1168), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [274] = { + [anon_sym_RBRACE] = ACTIONS(1170), + [anon_sym_EQ] = ACTIONS(1172), + [anon_sym_COLON] = ACTIONS(1174), + [anon_sym_COLON_QMARK] = ACTIONS(1172), + [anon_sym_COLON_DASH] = ACTIONS(1172), + [anon_sym_PERCENT] = ACTIONS(1172), + [anon_sym_SLASH] = ACTIONS(1172), + [anon_sym_DASH] = ACTIONS(1172), + [sym_comment] = ACTIONS(48), + }, + [275] = { + [sym_subscript] = STATE(585), + [sym_variable_name] = ACTIONS(1176), + [anon_sym_DOLLAR] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1178), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1180), + [anon_sym_STAR] = ACTIONS(1178), + [anon_sym_AT] = ACTIONS(1178), + [anon_sym_QMARK] = ACTIONS(1178), + [anon_sym_0] = ACTIONS(1182), + [anon_sym__] = ACTIONS(1182), + }, + [276] = { + [anon_sym_RBRACE] = ACTIONS(1184), + [anon_sym_EQ] = ACTIONS(1186), + [anon_sym_COLON] = ACTIONS(1188), + [anon_sym_COLON_QMARK] = ACTIONS(1186), + [anon_sym_COLON_DASH] = ACTIONS(1186), + [anon_sym_PERCENT] = ACTIONS(1186), + [anon_sym_SLASH] = ACTIONS(1186), + [anon_sym_DASH] = ACTIONS(1186), + [sym_comment] = ACTIONS(48), + }, + [277] = { + [anon_sym_RBRACE] = ACTIONS(1190), + [anon_sym_EQ] = ACTIONS(1168), + [anon_sym_COLON] = ACTIONS(1192), + [anon_sym_COLON_QMARK] = ACTIONS(1168), + [anon_sym_COLON_DASH] = ACTIONS(1168), + [anon_sym_PERCENT] = ACTIONS(1168), + [anon_sym_SLASH] = ACTIONS(1168), + [anon_sym_DASH] = ACTIONS(1168), + [sym_comment] = ACTIONS(48), + }, + [278] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1194), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [279] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1194), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [280] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(48), + }, + [281] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(1194), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [282] = { + [sym_file_descriptor] = ACTIONS(1196), + [sym__concat] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1198), + [anon_sym_SEMI_SEMI] = ACTIONS(1198), + [anon_sym_PIPE_AMP] = ACTIONS(1198), + [anon_sym_AMP_AMP] = ACTIONS(1198), + [anon_sym_PIPE_PIPE] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1198), + [anon_sym_GT_GT] = ACTIONS(1198), + [anon_sym_AMP_GT] = ACTIONS(1198), + [anon_sym_AMP_GT_GT] = ACTIONS(1198), + [anon_sym_LT_AMP] = ACTIONS(1198), + [anon_sym_GT_AMP] = ACTIONS(1198), + [anon_sym_LT_LT] = ACTIONS(1198), + [anon_sym_LT_LT_DASH] = ACTIONS(1198), + [anon_sym_LT_LT_LT] = ACTIONS(1198), + [sym__special_characters] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_raw_string] = ACTIONS(1198), + [anon_sym_DOLLAR] = ACTIONS(1198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), + [anon_sym_BQUOTE] = ACTIONS(1198), + [anon_sym_LT_LPAREN] = ACTIONS(1198), + [anon_sym_GT_LPAREN] = ACTIONS(1198), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + }, + [283] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(1164), + [sym__string_content] = ACTIONS(1200), + [anon_sym_DOLLAR] = ACTIONS(1203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1209), + [anon_sym_BQUOTE] = ACTIONS(1212), + [sym_comment] = ACTIONS(110), + }, + [284] = { [sym_concatenation] = STATE(599), - [sym_string] = STATE(751), + [sym_string] = STATE(593), + [sym_simple_expansion] = STATE(593), + [sym_expansion] = STATE(593), + [sym_command_substitution] = STATE(593), + [sym_process_substitution] = STATE(593), + [anon_sym_RBRACE] = ACTIONS(1215), + [sym__special_characters] = ACTIONS(1217), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1233), + }, + [285] = { + [sym_concatenation] = STATE(602), + [sym_string] = STATE(601), + [sym_simple_expansion] = STATE(601), + [sym_expansion] = STATE(601), + [sym_command_substitution] = STATE(601), + [sym_process_substitution] = STATE(601), + [sym__special_characters] = ACTIONS(1235), + [anon_sym_DQUOTE] = ACTIONS(314), + [sym_raw_string] = ACTIONS(1237), + [anon_sym_DOLLAR] = ACTIONS(318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(320), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_LT_LPAREN] = ACTIONS(326), + [anon_sym_GT_LPAREN] = ACTIONS(326), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1239), + }, + [286] = { + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1243), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1243), + [anon_sym_LT_LT_DASH] = ACTIONS(1243), + [anon_sym_LT_LT_LT] = ACTIONS(1243), + [sym__special_characters] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1243), + [sym_raw_string] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), + [anon_sym_LT_LPAREN] = ACTIONS(1243), + [anon_sym_GT_LPAREN] = ACTIONS(1243), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1243), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1243), + }, + [287] = { + [sym_concatenation] = STATE(606), + [sym_string] = STATE(605), + [sym_simple_expansion] = STATE(605), + [sym_expansion] = STATE(605), + [sym_command_substitution] = STATE(605), + [sym_process_substitution] = STATE(605), + [anon_sym_RBRACE] = ACTIONS(1245), + [sym__special_characters] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(1249), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1251), + }, + [288] = { + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [289] = { + [anon_sym_RBRACE] = ACTIONS(1255), + [anon_sym_EQ] = ACTIONS(1257), + [anon_sym_COLON] = ACTIONS(1259), + [anon_sym_COLON_QMARK] = ACTIONS(1257), + [anon_sym_COLON_DASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [sym_comment] = ACTIONS(48), + }, + [290] = { + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_COLON] = ACTIONS(1265), + [anon_sym_COLON_QMARK] = ACTIONS(1263), + [anon_sym_COLON_DASH] = ACTIONS(1263), + [anon_sym_PERCENT] = ACTIONS(1263), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1263), + [sym_comment] = ACTIONS(48), + }, + [291] = { + [anon_sym_RBRACE] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_COLON] = ACTIONS(1267), + [anon_sym_COLON_QMARK] = ACTIONS(1253), + [anon_sym_COLON_DASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [sym_comment] = ACTIONS(48), + }, + [292] = { + [sym_file_descriptor] = ACTIONS(1269), + [sym__concat] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_SEMI_SEMI] = ACTIONS(1271), + [anon_sym_PIPE_AMP] = ACTIONS(1271), + [anon_sym_AMP_AMP] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_AMP_GT] = ACTIONS(1271), + [anon_sym_AMP_GT_GT] = ACTIONS(1271), + [anon_sym_LT_AMP] = ACTIONS(1271), + [anon_sym_GT_AMP] = ACTIONS(1271), + [anon_sym_LT_LT] = ACTIONS(1271), + [anon_sym_LT_LT_DASH] = ACTIONS(1271), + [anon_sym_LT_LT_LT] = ACTIONS(1271), + [sym__special_characters] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym_raw_string] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1271), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1271), + [anon_sym_LT_LPAREN] = ACTIONS(1271), + [anon_sym_GT_LPAREN] = ACTIONS(1271), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_LF] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + }, + [293] = { + [sym_concatenation] = STATE(615), + [sym_string] = STATE(614), + [sym_simple_expansion] = STATE(614), + [sym_expansion] = STATE(614), + [sym_command_substitution] = STATE(614), + [sym_process_substitution] = STATE(614), + [anon_sym_RBRACE] = ACTIONS(1273), + [sym__special_characters] = ACTIONS(1275), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(1277), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1279), + }, + [294] = { + [sym_file_descriptor] = ACTIONS(1281), + [sym__concat] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_SEMI_SEMI] = ACTIONS(1283), + [anon_sym_PIPE_AMP] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1283), + [anon_sym_PIPE_PIPE] = ACTIONS(1283), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_AMP_GT] = ACTIONS(1283), + [anon_sym_AMP_GT_GT] = ACTIONS(1283), + [anon_sym_LT_AMP] = ACTIONS(1283), + [anon_sym_GT_AMP] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(1283), + [anon_sym_LT_LT_DASH] = ACTIONS(1283), + [anon_sym_LT_LT_LT] = ACTIONS(1283), + [sym__special_characters] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1283), + [sym_raw_string] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1283), + [anon_sym_BQUOTE] = ACTIONS(1283), + [anon_sym_LT_LPAREN] = ACTIONS(1283), + [anon_sym_GT_LPAREN] = ACTIONS(1283), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + }, + [295] = { + [sym_concatenation] = STATE(616), + [sym_string] = STATE(620), + [sym_array] = STATE(616), + [sym_simple_expansion] = STATE(620), + [sym_expansion] = STATE(620), + [sym_command_substitution] = STATE(620), + [sym_process_substitution] = STATE(620), + [sym__empty_value] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [sym__special_characters] = ACTIONS(1289), + [anon_sym_DQUOTE] = ACTIONS(1291), + [sym_raw_string] = ACTIONS(1293), + [anon_sym_DOLLAR] = ACTIONS(1295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1299), + [anon_sym_BQUOTE] = ACTIONS(1301), + [anon_sym_LT_LPAREN] = ACTIONS(1303), + [anon_sym_GT_LPAREN] = ACTIONS(1303), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1305), + }, + [296] = { + [sym_file_descriptor] = ACTIONS(330), + [sym_variable_name] = ACTIONS(330), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(330), + [anon_sym_PIPE_AMP] = ACTIONS(330), + [anon_sym_AMP_AMP] = ACTIONS(330), + [anon_sym_PIPE_PIPE] = ACTIONS(1307), + [anon_sym_LT] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_GT_GT] = ACTIONS(330), + [anon_sym_AMP_GT] = ACTIONS(1307), + [anon_sym_AMP_GT_GT] = ACTIONS(330), + [anon_sym_LT_AMP] = ACTIONS(330), + [anon_sym_GT_AMP] = ACTIONS(330), + [sym__special_characters] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(330), + [sym_raw_string] = ACTIONS(330), + [anon_sym_DOLLAR] = ACTIONS(1307), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(332), + }, + [297] = { + [anon_sym_in] = ACTIONS(1309), + [sym_comment] = ACTIONS(48), + }, + [298] = { + [sym_do_group] = STATE(628), + [anon_sym_do] = ACTIONS(1311), + [sym_comment] = ACTIONS(48), + }, + [299] = { + [anon_sym_then] = ACTIONS(1313), + [sym_comment] = ACTIONS(48), + }, + [300] = { + [aux_sym_concatenation_repeat1] = STATE(189), + [sym__concat] = ACTIONS(342), + [anon_sym_in] = ACTIONS(1315), + [anon_sym_SEMI_SEMI] = ACTIONS(1317), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1317), + [anon_sym_LF] = ACTIONS(1317), + [anon_sym_AMP] = ACTIONS(1317), + }, + [301] = { + [aux_sym_concatenation_repeat1] = STATE(189), + [sym__concat] = ACTIONS(342), + [anon_sym_in] = ACTIONS(1319), + [anon_sym_SEMI_SEMI] = ACTIONS(1321), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_LF] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + }, + [302] = { + [anon_sym_in] = ACTIONS(1319), + [anon_sym_SEMI_SEMI] = ACTIONS(1321), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_LF] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1321), + }, + [303] = { + [sym_compound_statement] = STATE(636), + [anon_sym_LPAREN] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [sym_comment] = ACTIONS(48), + }, + [304] = { + [anon_sym_PIPE] = ACTIONS(402), + [anon_sym_RPAREN] = ACTIONS(1327), + [anon_sym_SEMI_SEMI] = ACTIONS(1329), + [anon_sym_PIPE_AMP] = ACTIONS(402), + [anon_sym_AMP_AMP] = ACTIONS(408), + [anon_sym_PIPE_PIPE] = ACTIONS(408), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_LF] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + }, + [305] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(402), + [anon_sym_RPAREN] = ACTIONS(1327), + [anon_sym_SEMI_SEMI] = ACTIONS(1329), + [anon_sym_PIPE_AMP] = ACTIONS(402), + [anon_sym_AMP_AMP] = ACTIONS(408), + [anon_sym_PIPE_PIPE] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_AMP_GT] = ACTIONS(274), + [anon_sym_AMP_GT_GT] = ACTIONS(274), + [anon_sym_LT_AMP] = ACTIONS(274), + [anon_sym_GT_AMP] = ACTIONS(274), + [sym__special_characters] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(274), + [sym_raw_string] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(274), + [anon_sym_BQUOTE] = ACTIONS(274), + [anon_sym_LT_LPAREN] = ACTIONS(274), + [anon_sym_GT_LPAREN] = ACTIONS(274), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_LF] = ACTIONS(1329), + [anon_sym_AMP] = ACTIONS(1329), + }, + [306] = { + [sym__terminated_statement] = STATE(22), + [sym_for_statement] = STATE(639), + [sym_while_statement] = STATE(639), + [sym_if_statement] = STATE(639), + [sym_case_statement] = STATE(639), + [sym_function_definition] = STATE(639), + [sym_subshell] = STATE(639), + [sym_pipeline] = STATE(639), + [sym_list] = STATE(639), + [sym_command] = STATE(639), + [sym_command_name] = STATE(63), + [sym_variable_assignment] = STATE(640), + [sym_declaration_command] = STATE(639), + [sym_subscript] = STATE(65), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(55), + [sym_simple_expansion] = STATE(55), + [sym_expansion] = STATE(55), + [sym_command_substitution] = STATE(55), + [sym_process_substitution] = STATE(55), + [aux_sym_program_repeat1] = STATE(246), + [aux_sym_command_repeat1] = STATE(67), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(82), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(84), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(86), + [anon_sym_typeset] = ACTIONS(86), + [anon_sym_export] = ACTIONS(86), + [anon_sym_readonly] = ACTIONS(86), + [anon_sym_local] = ACTIONS(86), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(88), + [anon_sym_DQUOTE] = ACTIONS(90), + [sym_raw_string] = ACTIONS(92), + [anon_sym_DOLLAR] = ACTIONS(94), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(96), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(98), + [anon_sym_BQUOTE] = ACTIONS(100), + [anon_sym_LT_LPAREN] = ACTIONS(102), + [anon_sym_GT_LPAREN] = ACTIONS(102), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(104), + }, + [307] = { + [sym__assignment] = STATE(642), + [anon_sym_EQ] = ACTIONS(1331), + [anon_sym_PLUS_EQ] = ACTIONS(1331), + [anon_sym_LBRACK] = ACTIONS(58), + [sym_comment] = ACTIONS(48), + }, + [308] = { + [sym_variable_name] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(1333), + [anon_sym_RPAREN] = ACTIONS(436), + [anon_sym_PIPE_AMP] = ACTIONS(436), + [anon_sym_AMP_AMP] = ACTIONS(436), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_BQUOTE] = ACTIONS(436), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1333), + [sym_word] = ACTIONS(438), + }, + [309] = { + [sym_variable_name] = ACTIONS(440), + [anon_sym_PIPE] = ACTIONS(1335), + [anon_sym_RPAREN] = ACTIONS(440), + [anon_sym_PIPE_AMP] = ACTIONS(440), + [anon_sym_AMP_AMP] = ACTIONS(440), + [anon_sym_PIPE_PIPE] = ACTIONS(1335), + [anon_sym_BQUOTE] = ACTIONS(440), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1335), + [sym_word] = ACTIONS(442), + }, + [310] = { + [sym__assignment] = STATE(642), + [anon_sym_EQ] = ACTIONS(1331), + [anon_sym_PLUS_EQ] = ACTIONS(1331), + [sym_comment] = ACTIONS(48), + }, + [311] = { + [sym_variable_assignment] = STATE(309), + [sym_subscript] = STATE(310), + [aux_sym_declaration_command_repeat1] = STATE(643), + [sym_variable_name] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(1337), + [anon_sym_RPAREN] = ACTIONS(1339), + [anon_sym_PIPE_AMP] = ACTIONS(1339), + [anon_sym_AMP_AMP] = ACTIONS(1339), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(564), + [sym_word] = ACTIONS(566), + }, + [312] = { + [sym_string] = STATE(644), + [sym_simple_expansion] = STATE(644), + [sym_expansion] = STATE(644), + [sym_command_substitution] = STATE(644), + [sym_process_substitution] = STATE(644), + [sym__special_characters] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(1343), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1341), + }, + [313] = { + [aux_sym_concatenation_repeat1] = STATE(645), + [sym_file_descriptor] = ACTIONS(478), + [sym__concat] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_RPAREN] = ACTIONS(478), + [anon_sym_PIPE_AMP] = ACTIONS(478), + [anon_sym_AMP_AMP] = ACTIONS(478), + [anon_sym_PIPE_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(1117), + [anon_sym_GT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(478), + [anon_sym_AMP_GT] = ACTIONS(1117), + [anon_sym_AMP_GT_GT] = ACTIONS(478), + [anon_sym_LT_AMP] = ACTIONS(478), + [anon_sym_GT_AMP] = ACTIONS(478), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_LT_LT_DASH] = ACTIONS(478), + [anon_sym_LT_LT_LT] = ACTIONS(478), + [sym__special_characters] = ACTIONS(1117), + [anon_sym_DQUOTE] = ACTIONS(478), + [sym_raw_string] = ACTIONS(478), + [anon_sym_DOLLAR] = ACTIONS(1117), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(478), + [anon_sym_BQUOTE] = ACTIONS(478), + [anon_sym_LT_LPAREN] = ACTIONS(478), + [anon_sym_GT_LPAREN] = ACTIONS(478), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(480), + }, + [314] = { + [sym_file_descriptor] = ACTIONS(482), + [sym__concat] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(1119), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_PIPE_AMP] = ACTIONS(482), + [anon_sym_AMP_AMP] = ACTIONS(482), + [anon_sym_PIPE_PIPE] = ACTIONS(1119), + [anon_sym_LT] = ACTIONS(1119), + [anon_sym_GT] = ACTIONS(1119), + [anon_sym_GT_GT] = ACTIONS(482), + [anon_sym_AMP_GT] = ACTIONS(1119), + [anon_sym_AMP_GT_GT] = ACTIONS(482), + [anon_sym_LT_AMP] = ACTIONS(482), + [anon_sym_GT_AMP] = ACTIONS(482), + [anon_sym_LT_LT] = ACTIONS(1119), + [anon_sym_LT_LT_DASH] = ACTIONS(482), + [anon_sym_LT_LT_LT] = ACTIONS(482), + [sym__special_characters] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(482), + [sym_raw_string] = ACTIONS(482), + [anon_sym_DOLLAR] = ACTIONS(1119), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_LT_LPAREN] = ACTIONS(482), + [anon_sym_GT_LPAREN] = ACTIONS(482), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(484), + }, + [315] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(1345), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [316] = { + [sym_file_descriptor] = ACTIONS(510), + [sym__concat] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_RPAREN] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_PIPE_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1123), + [anon_sym_GT] = ACTIONS(1123), + [anon_sym_GT_GT] = ACTIONS(510), + [anon_sym_AMP_GT] = ACTIONS(1123), + [anon_sym_AMP_GT_GT] = ACTIONS(510), + [anon_sym_LT_AMP] = ACTIONS(510), + [anon_sym_GT_AMP] = ACTIONS(510), + [anon_sym_LT_LT] = ACTIONS(1123), + [anon_sym_LT_LT_DASH] = ACTIONS(510), + [anon_sym_LT_LT_LT] = ACTIONS(510), + [sym__special_characters] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(510), + [sym_raw_string] = ACTIONS(510), + [anon_sym_DOLLAR] = ACTIONS(1123), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(510), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(510), + [anon_sym_BQUOTE] = ACTIONS(510), + [anon_sym_LT_LPAREN] = ACTIONS(510), + [anon_sym_GT_LPAREN] = ACTIONS(510), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(512), + }, + [317] = { + [sym_file_descriptor] = ACTIONS(514), + [sym__concat] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_RPAREN] = ACTIONS(514), + [anon_sym_PIPE_AMP] = ACTIONS(514), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(1125), + [anon_sym_LT] = ACTIONS(1125), + [anon_sym_GT] = ACTIONS(1125), + [anon_sym_GT_GT] = ACTIONS(514), + [anon_sym_AMP_GT] = ACTIONS(1125), + [anon_sym_AMP_GT_GT] = ACTIONS(514), + [anon_sym_LT_AMP] = ACTIONS(514), + [anon_sym_GT_AMP] = ACTIONS(514), + [anon_sym_LT_LT] = ACTIONS(1125), + [anon_sym_LT_LT_DASH] = ACTIONS(514), + [anon_sym_LT_LT_LT] = ACTIONS(514), + [sym__special_characters] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(514), + [sym_raw_string] = ACTIONS(514), + [anon_sym_DOLLAR] = ACTIONS(1125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(514), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(514), + [anon_sym_LT_LPAREN] = ACTIONS(514), + [anon_sym_GT_LPAREN] = ACTIONS(514), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(516), + }, + [318] = { + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [319] = { + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_EQ] = ACTIONS(1351), + [anon_sym_COLON] = ACTIONS(1353), + [anon_sym_COLON_QMARK] = ACTIONS(1351), + [anon_sym_COLON_DASH] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(1351), + [anon_sym_SLASH] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [sym_comment] = ACTIONS(48), + }, + [320] = { + [sym_subscript] = STATE(653), + [sym_variable_name] = ACTIONS(1355), + [anon_sym_DOLLAR] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1357), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_QMARK] = ACTIONS(1357), + [anon_sym_0] = ACTIONS(1361), + [anon_sym__] = ACTIONS(1361), + }, + [321] = { + [anon_sym_RBRACE] = ACTIONS(1363), + [anon_sym_EQ] = ACTIONS(1365), + [anon_sym_COLON] = ACTIONS(1367), + [anon_sym_COLON_QMARK] = ACTIONS(1365), + [anon_sym_COLON_DASH] = ACTIONS(1365), + [anon_sym_PERCENT] = ACTIONS(1365), + [anon_sym_SLASH] = ACTIONS(1365), + [anon_sym_DASH] = ACTIONS(1365), + [sym_comment] = ACTIONS(48), + }, + [322] = { + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_COLON] = ACTIONS(1371), + [anon_sym_COLON_QMARK] = ACTIONS(1347), + [anon_sym_COLON_DASH] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [sym_comment] = ACTIONS(48), + }, + [323] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [324] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [325] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(1373), + [sym_comment] = ACTIONS(48), + }, + [326] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(1373), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [327] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [328] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [329] = { + [anon_sym_RPAREN] = ACTIONS(1377), + [sym_comment] = ACTIONS(48), + }, + [330] = { + [sym_for_statement] = STATE(660), + [sym_while_statement] = STATE(660), + [sym_if_statement] = STATE(660), + [sym_case_statement] = STATE(660), + [sym_function_definition] = STATE(660), + [sym_subshell] = STATE(660), + [sym_pipeline] = STATE(660), + [sym_list] = STATE(660), + [sym_command] = STATE(660), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(661), + [sym_declaration_command] = STATE(660), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [331] = { + [sym_file_descriptor] = ACTIONS(1379), + [sym__concat] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_SEMI_SEMI] = ACTIONS(1381), + [anon_sym_PIPE_AMP] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [anon_sym_PIPE_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(1381), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_GT_GT] = ACTIONS(1381), + [anon_sym_AMP_GT] = ACTIONS(1381), + [anon_sym_AMP_GT_GT] = ACTIONS(1381), + [anon_sym_LT_AMP] = ACTIONS(1381), + [anon_sym_GT_AMP] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1381), + [anon_sym_LT_LT_DASH] = ACTIONS(1381), + [anon_sym_LT_LT_LT] = ACTIONS(1381), + [sym__special_characters] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1381), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1381), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1381), + [anon_sym_BQUOTE] = ACTIONS(1381), + [anon_sym_LT_LPAREN] = ACTIONS(1381), + [anon_sym_GT_LPAREN] = ACTIONS(1381), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_LF] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + }, + [332] = { + [sym_for_statement] = STATE(662), + [sym_while_statement] = STATE(662), + [sym_if_statement] = STATE(662), + [sym_case_statement] = STATE(662), + [sym_function_definition] = STATE(662), + [sym_subshell] = STATE(662), + [sym_pipeline] = STATE(662), + [sym_list] = STATE(662), + [sym_command] = STATE(662), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(663), + [sym_declaration_command] = STATE(662), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [333] = { + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_GT_GT] = ACTIONS(1385), + [anon_sym_AMP_GT] = ACTIONS(1383), + [anon_sym_AMP_GT_GT] = ACTIONS(1385), + [anon_sym_LT_AMP] = ACTIONS(1385), + [anon_sym_GT_AMP] = ACTIONS(1385), + [sym_comment] = ACTIONS(48), + }, + [334] = { + [sym_concatenation] = STATE(673), + [sym_string] = STATE(667), + [sym_simple_expansion] = STATE(667), + [sym_expansion] = STATE(667), + [sym_command_substitution] = STATE(667), + [sym_process_substitution] = STATE(667), + [sym__special_characters] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym_raw_string] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1395), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1397), + [anon_sym_BQUOTE] = ACTIONS(1399), + [anon_sym_LT_LPAREN] = ACTIONS(1401), + [anon_sym_GT_LPAREN] = ACTIONS(1401), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1403), + }, + [335] = { + [sym_heredoc] = STATE(676), + [sym__simple_heredoc] = ACTIONS(1405), + [sym__heredoc_beginning] = ACTIONS(1407), + [sym_comment] = ACTIONS(48), + }, + [336] = { + [sym_concatenation] = STATE(679), + [sym_string] = STATE(678), + [sym_simple_expansion] = STATE(678), + [sym_expansion] = STATE(678), + [sym_command_substitution] = STATE(678), + [sym_process_substitution] = STATE(678), + [sym__special_characters] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym_raw_string] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1395), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1397), + [anon_sym_BQUOTE] = ACTIONS(1399), + [anon_sym_LT_LPAREN] = ACTIONS(1401), + [anon_sym_GT_LPAREN] = ACTIONS(1401), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1413), + }, + [337] = { + [aux_sym_concatenation_repeat1] = STATE(313), + [sym_file_descriptor] = ACTIONS(722), + [sym__concat] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_PIPE_AMP] = ACTIONS(722), + [anon_sym_AMP_AMP] = ACTIONS(722), + [anon_sym_PIPE_PIPE] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1415), + [anon_sym_GT] = ACTIONS(1415), + [anon_sym_GT_GT] = ACTIONS(722), + [anon_sym_AMP_GT] = ACTIONS(1415), + [anon_sym_AMP_GT_GT] = ACTIONS(722), + [anon_sym_LT_AMP] = ACTIONS(722), + [anon_sym_GT_AMP] = ACTIONS(722), + [anon_sym_LT_LT] = ACTIONS(1415), + [anon_sym_LT_LT_DASH] = ACTIONS(722), + [anon_sym_LT_LT_LT] = ACTIONS(722), + [sym__special_characters] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(722), + [sym_raw_string] = ACTIONS(722), + [anon_sym_DOLLAR] = ACTIONS(1415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(722), + [anon_sym_BQUOTE] = ACTIONS(722), + [anon_sym_LT_LPAREN] = ACTIONS(722), + [anon_sym_GT_LPAREN] = ACTIONS(722), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(724), + }, + [338] = { + [aux_sym_concatenation_repeat1] = STATE(313), + [sym_file_descriptor] = ACTIONS(726), + [sym__concat] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(1417), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_PIPE_AMP] = ACTIONS(726), + [anon_sym_AMP_AMP] = ACTIONS(726), + [anon_sym_PIPE_PIPE] = ACTIONS(1417), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1417), + [anon_sym_GT_GT] = ACTIONS(726), + [anon_sym_AMP_GT] = ACTIONS(1417), + [anon_sym_AMP_GT_GT] = ACTIONS(726), + [anon_sym_LT_AMP] = ACTIONS(726), + [anon_sym_GT_AMP] = ACTIONS(726), + [anon_sym_LT_LT] = ACTIONS(1417), + [anon_sym_LT_LT_DASH] = ACTIONS(726), + [anon_sym_LT_LT_LT] = ACTIONS(726), + [sym__special_characters] = ACTIONS(1417), + [anon_sym_DQUOTE] = ACTIONS(726), + [sym_raw_string] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(1417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(726), + [anon_sym_BQUOTE] = ACTIONS(726), + [anon_sym_LT_LPAREN] = ACTIONS(726), + [anon_sym_GT_LPAREN] = ACTIONS(726), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(728), + }, + [339] = { + [sym_file_descriptor] = ACTIONS(730), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_PIPE_AMP] = ACTIONS(730), + [anon_sym_AMP_AMP] = ACTIONS(730), + [anon_sym_PIPE_PIPE] = ACTIONS(730), + [anon_sym_LT] = ACTIONS(1419), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_GT_GT] = ACTIONS(730), + [anon_sym_AMP_GT] = ACTIONS(1419), + [anon_sym_AMP_GT_GT] = ACTIONS(730), + [anon_sym_LT_AMP] = ACTIONS(730), + [anon_sym_GT_AMP] = ACTIONS(730), + [anon_sym_LT_LT] = ACTIONS(1419), + [anon_sym_LT_LT_DASH] = ACTIONS(730), + [anon_sym_LT_LT_LT] = ACTIONS(730), + [anon_sym_BQUOTE] = ACTIONS(730), + [sym_comment] = ACTIONS(48), + }, + [340] = { + [sym_file_descriptor] = ACTIONS(726), + [anon_sym_PIPE] = ACTIONS(1417), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_PIPE_AMP] = ACTIONS(726), + [anon_sym_AMP_AMP] = ACTIONS(726), + [anon_sym_PIPE_PIPE] = ACTIONS(1417), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1417), + [anon_sym_GT_GT] = ACTIONS(726), + [anon_sym_AMP_GT] = ACTIONS(1417), + [anon_sym_AMP_GT_GT] = ACTIONS(726), + [anon_sym_LT_AMP] = ACTIONS(726), + [anon_sym_GT_AMP] = ACTIONS(726), + [anon_sym_LT_LT] = ACTIONS(1417), + [anon_sym_LT_LT_DASH] = ACTIONS(726), + [anon_sym_LT_LT_LT] = ACTIONS(726), + [sym__special_characters] = ACTIONS(1417), + [anon_sym_DQUOTE] = ACTIONS(726), + [sym_raw_string] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(1417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(726), + [anon_sym_BQUOTE] = ACTIONS(726), + [anon_sym_LT_LPAREN] = ACTIONS(726), + [anon_sym_GT_LPAREN] = ACTIONS(726), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(728), + }, + [341] = { + [sym_file_redirect] = STATE(339), + [sym_heredoc_redirect] = STATE(339), + [sym_herestring_redirect] = STATE(339), + [sym_concatenation] = STATE(340), + [sym_string] = STATE(338), + [sym_simple_expansion] = STATE(338), + [sym_expansion] = STATE(338), + [sym_command_substitution] = STATE(338), + [sym_process_substitution] = STATE(338), + [aux_sym_for_statement_repeat1] = STATE(680), + [aux_sym_command_repeat2] = STATE(681), + [sym_file_descriptor] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(1421), + [anon_sym_RPAREN] = ACTIONS(1423), + [anon_sym_PIPE_AMP] = ACTIONS(1423), + [anon_sym_AMP_AMP] = ACTIONS(1423), + [anon_sym_PIPE_PIPE] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(608), + [anon_sym_GT] = ACTIONS(608), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_AMP_GT] = ACTIONS(608), + [anon_sym_AMP_GT_GT] = ACTIONS(610), + [anon_sym_LT_AMP] = ACTIONS(610), + [anon_sym_GT_AMP] = ACTIONS(610), + [anon_sym_LT_LT] = ACTIONS(612), + [anon_sym_LT_LT_DASH] = ACTIONS(614), + [anon_sym_LT_LT_LT] = ACTIONS(616), + [sym__special_characters] = ACTIONS(618), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(620), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(622), + }, + [342] = { + [sym_file_redirect] = STATE(339), + [sym_heredoc_redirect] = STATE(339), + [sym_herestring_redirect] = STATE(339), + [aux_sym_command_repeat2] = STATE(682), + [sym_file_descriptor] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(1421), + [anon_sym_RPAREN] = ACTIONS(1423), + [anon_sym_PIPE_AMP] = ACTIONS(1423), + [anon_sym_AMP_AMP] = ACTIONS(1423), + [anon_sym_PIPE_PIPE] = ACTIONS(1423), + [anon_sym_LT] = ACTIONS(608), + [anon_sym_GT] = ACTIONS(608), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_AMP_GT] = ACTIONS(608), + [anon_sym_AMP_GT_GT] = ACTIONS(610), + [anon_sym_LT_AMP] = ACTIONS(610), + [anon_sym_GT_AMP] = ACTIONS(610), + [anon_sym_LT_LT] = ACTIONS(612), + [anon_sym_LT_LT_DASH] = ACTIONS(614), + [anon_sym_LT_LT_LT] = ACTIONS(616), + [sym_comment] = ACTIONS(48), + }, + [343] = { + [sym_file_redirect] = STATE(339), + [sym_heredoc_redirect] = STATE(339), + [sym_herestring_redirect] = STATE(339), + [sym_concatenation] = STATE(340), + [sym_string] = STATE(338), + [sym_simple_expansion] = STATE(338), + [sym_expansion] = STATE(338), + [sym_command_substitution] = STATE(338), + [sym_process_substitution] = STATE(338), + [aux_sym_for_statement_repeat1] = STATE(683), + [aux_sym_command_repeat2] = STATE(681), + [sym_file_descriptor] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(1421), + [anon_sym_RPAREN] = ACTIONS(1423), + [anon_sym_PIPE_AMP] = ACTIONS(1423), + [anon_sym_AMP_AMP] = ACTIONS(1423), + [anon_sym_PIPE_PIPE] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(608), + [anon_sym_GT] = ACTIONS(608), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_AMP_GT] = ACTIONS(608), + [anon_sym_AMP_GT_GT] = ACTIONS(610), + [anon_sym_LT_AMP] = ACTIONS(610), + [anon_sym_GT_AMP] = ACTIONS(610), + [anon_sym_LT_LT] = ACTIONS(612), + [anon_sym_LT_LT_DASH] = ACTIONS(614), + [anon_sym_LT_LT_LT] = ACTIONS(616), + [sym__special_characters] = ACTIONS(618), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(620), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(622), + }, + [344] = { + [sym_concatenation] = STATE(616), + [sym_string] = STATE(686), + [sym_array] = STATE(616), + [sym_simple_expansion] = STATE(686), + [sym_expansion] = STATE(686), + [sym_command_substitution] = STATE(686), + [sym_process_substitution] = STATE(686), + [sym__empty_value] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [sym__special_characters] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(1427), + [sym_raw_string] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1433), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1435), + [anon_sym_BQUOTE] = ACTIONS(1437), + [anon_sym_LT_LPAREN] = ACTIONS(1439), + [anon_sym_GT_LPAREN] = ACTIONS(1439), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1441), + }, + [345] = { + [sym_compound_statement] = STATE(693), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1325), + [sym_comment] = ACTIONS(48), + }, + [346] = { + [sym__assignment] = STATE(642), + [anon_sym_EQ] = ACTIONS(1445), + [anon_sym_PLUS_EQ] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(58), + [sym_comment] = ACTIONS(48), + }, + [347] = { + [sym__assignment] = STATE(642), + [anon_sym_EQ] = ACTIONS(1445), + [anon_sym_PLUS_EQ] = ACTIONS(1445), + [sym_comment] = ACTIONS(48), + }, + [348] = { + [sym_variable_assignment] = STATE(309), + [sym_subscript] = STATE(347), + [aux_sym_declaration_command_repeat1] = STATE(695), + [sym_variable_name] = ACTIONS(632), + [anon_sym_PIPE] = ACTIONS(1337), + [anon_sym_PIPE_AMP] = ACTIONS(1339), + [anon_sym_AMP_AMP] = ACTIONS(1339), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_BQUOTE] = ACTIONS(1339), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(564), + [sym_word] = ACTIONS(566), + }, + [349] = { + [sym_string] = STATE(696), + [sym_simple_expansion] = STATE(696), + [sym_expansion] = STATE(696), + [sym_command_substitution] = STATE(696), + [sym_process_substitution] = STATE(696), + [sym__special_characters] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(1449), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1447), + }, + [350] = { + [aux_sym_concatenation_repeat1] = STATE(697), + [sym_file_descriptor] = ACTIONS(478), + [sym__concat] = ACTIONS(634), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_PIPE_AMP] = ACTIONS(478), + [anon_sym_AMP_AMP] = ACTIONS(478), + [anon_sym_PIPE_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(1117), + [anon_sym_GT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(478), + [anon_sym_AMP_GT] = ACTIONS(1117), + [anon_sym_AMP_GT_GT] = ACTIONS(478), + [anon_sym_LT_AMP] = ACTIONS(478), + [anon_sym_GT_AMP] = ACTIONS(478), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_LT_LT_DASH] = ACTIONS(478), + [anon_sym_LT_LT_LT] = ACTIONS(478), + [sym__special_characters] = ACTIONS(1117), + [anon_sym_DQUOTE] = ACTIONS(478), + [sym_raw_string] = ACTIONS(478), + [anon_sym_DOLLAR] = ACTIONS(1117), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(478), + [anon_sym_BQUOTE] = ACTIONS(478), + [anon_sym_LT_LPAREN] = ACTIONS(478), + [anon_sym_GT_LPAREN] = ACTIONS(478), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(480), + }, + [351] = { + [sym_file_descriptor] = ACTIONS(482), + [sym__concat] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(1119), + [anon_sym_PIPE_AMP] = ACTIONS(482), + [anon_sym_AMP_AMP] = ACTIONS(482), + [anon_sym_PIPE_PIPE] = ACTIONS(1119), + [anon_sym_LT] = ACTIONS(1119), + [anon_sym_GT] = ACTIONS(1119), + [anon_sym_GT_GT] = ACTIONS(482), + [anon_sym_AMP_GT] = ACTIONS(1119), + [anon_sym_AMP_GT_GT] = ACTIONS(482), + [anon_sym_LT_AMP] = ACTIONS(482), + [anon_sym_GT_AMP] = ACTIONS(482), + [anon_sym_LT_LT] = ACTIONS(1119), + [anon_sym_LT_LT_DASH] = ACTIONS(482), + [anon_sym_LT_LT_LT] = ACTIONS(482), + [sym__special_characters] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(482), + [sym_raw_string] = ACTIONS(482), + [anon_sym_DOLLAR] = ACTIONS(1119), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_LT_LPAREN] = ACTIONS(482), + [anon_sym_GT_LPAREN] = ACTIONS(482), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(484), + }, + [352] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(1451), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [353] = { + [sym_file_descriptor] = ACTIONS(510), + [sym__concat] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_PIPE_AMP] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_PIPE_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1123), + [anon_sym_GT] = ACTIONS(1123), + [anon_sym_GT_GT] = ACTIONS(510), + [anon_sym_AMP_GT] = ACTIONS(1123), + [anon_sym_AMP_GT_GT] = ACTIONS(510), + [anon_sym_LT_AMP] = ACTIONS(510), + [anon_sym_GT_AMP] = ACTIONS(510), + [anon_sym_LT_LT] = ACTIONS(1123), + [anon_sym_LT_LT_DASH] = ACTIONS(510), + [anon_sym_LT_LT_LT] = ACTIONS(510), + [sym__special_characters] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(510), + [sym_raw_string] = ACTIONS(510), + [anon_sym_DOLLAR] = ACTIONS(1123), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(510), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(510), + [anon_sym_BQUOTE] = ACTIONS(510), + [anon_sym_LT_LPAREN] = ACTIONS(510), + [anon_sym_GT_LPAREN] = ACTIONS(510), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(512), + }, + [354] = { + [sym_file_descriptor] = ACTIONS(514), + [sym__concat] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_PIPE_AMP] = ACTIONS(514), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(1125), + [anon_sym_LT] = ACTIONS(1125), + [anon_sym_GT] = ACTIONS(1125), + [anon_sym_GT_GT] = ACTIONS(514), + [anon_sym_AMP_GT] = ACTIONS(1125), + [anon_sym_AMP_GT_GT] = ACTIONS(514), + [anon_sym_LT_AMP] = ACTIONS(514), + [anon_sym_GT_AMP] = ACTIONS(514), + [anon_sym_LT_LT] = ACTIONS(1125), + [anon_sym_LT_LT_DASH] = ACTIONS(514), + [anon_sym_LT_LT_LT] = ACTIONS(514), + [sym__special_characters] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(514), + [sym_raw_string] = ACTIONS(514), + [anon_sym_DOLLAR] = ACTIONS(1125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(514), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(514), + [anon_sym_LT_LPAREN] = ACTIONS(514), + [anon_sym_GT_LPAREN] = ACTIONS(514), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(516), + }, + [355] = { + [anon_sym_EQ] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [356] = { + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_COLON] = ACTIONS(1459), + [anon_sym_COLON_QMARK] = ACTIONS(1457), + [anon_sym_COLON_DASH] = ACTIONS(1457), + [anon_sym_PERCENT] = ACTIONS(1457), + [anon_sym_SLASH] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [sym_comment] = ACTIONS(48), + }, + [357] = { + [sym_subscript] = STATE(705), + [sym_variable_name] = ACTIONS(1461), + [anon_sym_DOLLAR] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_AT] = ACTIONS(1463), + [anon_sym_QMARK] = ACTIONS(1463), + [anon_sym_0] = ACTIONS(1467), + [anon_sym__] = ACTIONS(1467), + }, + [358] = { + [anon_sym_RBRACE] = ACTIONS(1469), + [anon_sym_EQ] = ACTIONS(1471), + [anon_sym_COLON] = ACTIONS(1473), + [anon_sym_COLON_QMARK] = ACTIONS(1471), + [anon_sym_COLON_DASH] = ACTIONS(1471), + [anon_sym_PERCENT] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [sym_comment] = ACTIONS(48), + }, + [359] = { + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_EQ] = ACTIONS(1453), + [anon_sym_COLON] = ACTIONS(1477), + [anon_sym_COLON_QMARK] = ACTIONS(1453), + [anon_sym_COLON_DASH] = ACTIONS(1453), + [anon_sym_PERCENT] = ACTIONS(1453), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [sym_comment] = ACTIONS(48), + }, + [360] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1479), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [361] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1479), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [362] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(1479), + [sym_comment] = ACTIONS(48), + }, + [363] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(1479), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [364] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1481), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [365] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1481), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [366] = { + [anon_sym_RPAREN] = ACTIONS(1483), + [sym_comment] = ACTIONS(48), + }, + [367] = { + [sym_for_statement] = STATE(660), + [sym_while_statement] = STATE(660), + [sym_if_statement] = STATE(660), + [sym_case_statement] = STATE(660), + [sym_function_definition] = STATE(660), + [sym_subshell] = STATE(660), + [sym_pipeline] = STATE(660), + [sym_list] = STATE(660), + [sym_command] = STATE(660), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(712), + [sym_declaration_command] = STATE(660), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), + }, + [368] = { + [sym_for_statement] = STATE(713), + [sym_while_statement] = STATE(713), + [sym_if_statement] = STATE(713), + [sym_case_statement] = STATE(713), + [sym_function_definition] = STATE(713), + [sym_subshell] = STATE(713), + [sym_pipeline] = STATE(713), + [sym_list] = STATE(713), + [sym_command] = STATE(713), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(714), + [sym_declaration_command] = STATE(713), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), + }, + [369] = { + [anon_sym_LT] = ACTIONS(1485), + [anon_sym_GT] = ACTIONS(1485), + [anon_sym_GT_GT] = ACTIONS(1487), + [anon_sym_AMP_GT] = ACTIONS(1485), + [anon_sym_AMP_GT_GT] = ACTIONS(1487), + [anon_sym_LT_AMP] = ACTIONS(1487), + [anon_sym_GT_AMP] = ACTIONS(1487), + [sym_comment] = ACTIONS(48), + }, + [370] = { + [sym_concatenation] = STATE(673), + [sym_string] = STATE(718), + [sym_simple_expansion] = STATE(718), + [sym_expansion] = STATE(718), + [sym_command_substitution] = STATE(718), + [sym_process_substitution] = STATE(718), + [sym__special_characters] = ACTIONS(1489), + [anon_sym_DQUOTE] = ACTIONS(1491), + [sym_raw_string] = ACTIONS(1493), + [anon_sym_DOLLAR] = ACTIONS(1495), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1497), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1501), + [anon_sym_LT_LPAREN] = ACTIONS(1503), + [anon_sym_GT_LPAREN] = ACTIONS(1503), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1505), + }, + [371] = { + [sym_concatenation] = STATE(679), + [sym_string] = STATE(725), + [sym_simple_expansion] = STATE(725), + [sym_expansion] = STATE(725), + [sym_command_substitution] = STATE(725), + [sym_process_substitution] = STATE(725), + [sym__special_characters] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1491), + [sym_raw_string] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1495), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1497), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1501), + [anon_sym_LT_LPAREN] = ACTIONS(1503), + [anon_sym_GT_LPAREN] = ACTIONS(1503), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1511), + }, + [372] = { + [aux_sym_concatenation_repeat1] = STATE(350), + [sym_file_descriptor] = ACTIONS(722), + [sym__concat] = ACTIONS(634), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_PIPE_AMP] = ACTIONS(722), + [anon_sym_AMP_AMP] = ACTIONS(722), + [anon_sym_PIPE_PIPE] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1415), + [anon_sym_GT] = ACTIONS(1415), + [anon_sym_GT_GT] = ACTIONS(722), + [anon_sym_AMP_GT] = ACTIONS(1415), + [anon_sym_AMP_GT_GT] = ACTIONS(722), + [anon_sym_LT_AMP] = ACTIONS(722), + [anon_sym_GT_AMP] = ACTIONS(722), + [anon_sym_LT_LT] = ACTIONS(1415), + [anon_sym_LT_LT_DASH] = ACTIONS(722), + [anon_sym_LT_LT_LT] = ACTIONS(722), + [sym__special_characters] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(722), + [sym_raw_string] = ACTIONS(722), + [anon_sym_DOLLAR] = ACTIONS(1415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(722), + [anon_sym_BQUOTE] = ACTIONS(722), + [anon_sym_LT_LPAREN] = ACTIONS(722), + [anon_sym_GT_LPAREN] = ACTIONS(722), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(724), + }, + [373] = { + [aux_sym_concatenation_repeat1] = STATE(350), + [sym_file_descriptor] = ACTIONS(726), + [sym__concat] = ACTIONS(634), + [anon_sym_PIPE] = ACTIONS(1417), + [anon_sym_PIPE_AMP] = ACTIONS(726), + [anon_sym_AMP_AMP] = ACTIONS(726), + [anon_sym_PIPE_PIPE] = ACTIONS(1417), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1417), + [anon_sym_GT_GT] = ACTIONS(726), + [anon_sym_AMP_GT] = ACTIONS(1417), + [anon_sym_AMP_GT_GT] = ACTIONS(726), + [anon_sym_LT_AMP] = ACTIONS(726), + [anon_sym_GT_AMP] = ACTIONS(726), + [anon_sym_LT_LT] = ACTIONS(1417), + [anon_sym_LT_LT_DASH] = ACTIONS(726), + [anon_sym_LT_LT_LT] = ACTIONS(726), + [sym__special_characters] = ACTIONS(1417), + [anon_sym_DQUOTE] = ACTIONS(726), + [sym_raw_string] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(1417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(726), + [anon_sym_BQUOTE] = ACTIONS(726), + [anon_sym_LT_LPAREN] = ACTIONS(726), + [anon_sym_GT_LPAREN] = ACTIONS(726), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(728), + }, + [374] = { + [sym_file_redirect] = STATE(339), + [sym_heredoc_redirect] = STATE(339), + [sym_herestring_redirect] = STATE(339), + [sym_concatenation] = STATE(340), + [sym_string] = STATE(373), + [sym_simple_expansion] = STATE(373), + [sym_expansion] = STATE(373), + [sym_command_substitution] = STATE(373), + [sym_process_substitution] = STATE(373), + [aux_sym_for_statement_repeat1] = STATE(726), + [aux_sym_command_repeat2] = STATE(727), + [sym_file_descriptor] = ACTIONS(662), + [anon_sym_PIPE] = ACTIONS(1421), + [anon_sym_PIPE_AMP] = ACTIONS(1423), + [anon_sym_AMP_AMP] = ACTIONS(1423), + [anon_sym_PIPE_PIPE] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_GT] = ACTIONS(664), + [anon_sym_GT_GT] = ACTIONS(666), + [anon_sym_AMP_GT] = ACTIONS(664), + [anon_sym_AMP_GT_GT] = ACTIONS(666), + [anon_sym_LT_AMP] = ACTIONS(666), + [anon_sym_GT_AMP] = ACTIONS(666), + [anon_sym_LT_LT] = ACTIONS(612), + [anon_sym_LT_LT_DASH] = ACTIONS(614), + [anon_sym_LT_LT_LT] = ACTIONS(668), + [sym__special_characters] = ACTIONS(670), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(672), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(1423), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(674), + }, + [375] = { + [sym_file_redirect] = STATE(339), + [sym_heredoc_redirect] = STATE(339), + [sym_herestring_redirect] = STATE(339), + [aux_sym_command_repeat2] = STATE(728), + [sym_file_descriptor] = ACTIONS(662), + [anon_sym_PIPE] = ACTIONS(1421), + [anon_sym_PIPE_AMP] = ACTIONS(1423), + [anon_sym_AMP_AMP] = ACTIONS(1423), + [anon_sym_PIPE_PIPE] = ACTIONS(1423), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_GT] = ACTIONS(664), + [anon_sym_GT_GT] = ACTIONS(666), + [anon_sym_AMP_GT] = ACTIONS(664), + [anon_sym_AMP_GT_GT] = ACTIONS(666), + [anon_sym_LT_AMP] = ACTIONS(666), + [anon_sym_GT_AMP] = ACTIONS(666), + [anon_sym_LT_LT] = ACTIONS(612), + [anon_sym_LT_LT_DASH] = ACTIONS(614), + [anon_sym_LT_LT_LT] = ACTIONS(668), + [anon_sym_BQUOTE] = ACTIONS(1423), + [sym_comment] = ACTIONS(48), + }, + [376] = { + [sym_file_redirect] = STATE(339), + [sym_heredoc_redirect] = STATE(339), + [sym_herestring_redirect] = STATE(339), + [sym_concatenation] = STATE(340), + [sym_string] = STATE(373), + [sym_simple_expansion] = STATE(373), + [sym_expansion] = STATE(373), + [sym_command_substitution] = STATE(373), + [sym_process_substitution] = STATE(373), + [aux_sym_for_statement_repeat1] = STATE(729), + [aux_sym_command_repeat2] = STATE(727), + [sym_file_descriptor] = ACTIONS(662), + [anon_sym_PIPE] = ACTIONS(1421), + [anon_sym_PIPE_AMP] = ACTIONS(1423), + [anon_sym_AMP_AMP] = ACTIONS(1423), + [anon_sym_PIPE_PIPE] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_GT] = ACTIONS(664), + [anon_sym_GT_GT] = ACTIONS(666), + [anon_sym_AMP_GT] = ACTIONS(664), + [anon_sym_AMP_GT_GT] = ACTIONS(666), + [anon_sym_LT_AMP] = ACTIONS(666), + [anon_sym_GT_AMP] = ACTIONS(666), + [anon_sym_LT_LT] = ACTIONS(612), + [anon_sym_LT_LT_DASH] = ACTIONS(614), + [anon_sym_LT_LT_LT] = ACTIONS(668), + [sym__special_characters] = ACTIONS(670), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(672), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(1423), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(674), + }, + [377] = { + [sym_file_descriptor] = ACTIONS(1513), + [sym__concat] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_SEMI_SEMI] = ACTIONS(1515), + [anon_sym_PIPE_AMP] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE_PIPE] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1515), + [anon_sym_GT] = ACTIONS(1515), + [anon_sym_GT_GT] = ACTIONS(1515), + [anon_sym_AMP_GT] = ACTIONS(1515), + [anon_sym_AMP_GT_GT] = ACTIONS(1515), + [anon_sym_LT_AMP] = ACTIONS(1515), + [anon_sym_GT_AMP] = ACTIONS(1515), + [anon_sym_LT_LT] = ACTIONS(1515), + [anon_sym_LT_LT_DASH] = ACTIONS(1515), + [anon_sym_LT_LT_LT] = ACTIONS(1515), + [sym__special_characters] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [sym_raw_string] = ACTIONS(1515), + [anon_sym_DOLLAR] = ACTIONS(1515), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1515), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [anon_sym_LT_LPAREN] = ACTIONS(1515), + [anon_sym_GT_LPAREN] = ACTIONS(1515), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + }, + [378] = { + [sym_compound_statement] = STATE(730), + [anon_sym_LBRACE] = ACTIONS(372), + [sym_comment] = ACTIONS(48), + }, + [379] = { + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_RPAREN] = ACTIONS(1517), + [anon_sym_SEMI_SEMI] = ACTIONS(1517), + [anon_sym_PIPE_AMP] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1517), + [anon_sym_PIPE_PIPE] = ACTIONS(1517), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1517), + [anon_sym_LF] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(1517), + }, + [380] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_RPAREN] = ACTIONS(1517), + [anon_sym_SEMI_SEMI] = ACTIONS(1517), + [anon_sym_PIPE_AMP] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1517), + [anon_sym_PIPE_PIPE] = ACTIONS(1517), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_AMP_GT] = ACTIONS(274), + [anon_sym_AMP_GT_GT] = ACTIONS(274), + [anon_sym_LT_AMP] = ACTIONS(274), + [anon_sym_GT_AMP] = ACTIONS(274), + [sym__special_characters] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(274), + [sym_raw_string] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(274), + [anon_sym_BQUOTE] = ACTIONS(274), + [anon_sym_LT_LPAREN] = ACTIONS(274), + [anon_sym_GT_LPAREN] = ACTIONS(274), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(1517), + [anon_sym_LF] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(1517), + }, + [381] = { + [anon_sym_PIPE] = ACTIONS(240), + [anon_sym_SEMI_SEMI] = ACTIONS(1519), + [anon_sym_PIPE_AMP] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_PIPE_PIPE] = ACTIONS(1519), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_LF] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1519), + }, + [382] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(240), + [anon_sym_SEMI_SEMI] = ACTIONS(1519), + [anon_sym_PIPE_AMP] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_PIPE_PIPE] = ACTIONS(1519), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_AMP_GT] = ACTIONS(274), + [anon_sym_AMP_GT_GT] = ACTIONS(274), + [anon_sym_LT_AMP] = ACTIONS(274), + [anon_sym_GT_AMP] = ACTIONS(274), + [sym__special_characters] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(274), + [sym_raw_string] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(274), + [anon_sym_BQUOTE] = ACTIONS(274), + [anon_sym_LT_LPAREN] = ACTIONS(274), + [anon_sym_GT_LPAREN] = ACTIONS(274), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_LF] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1519), + }, + [383] = { + [sym_concatenation] = STATE(733), + [sym_string] = STATE(732), + [sym_simple_expansion] = STATE(732), + [sym_expansion] = STATE(732), + [sym_command_substitution] = STATE(732), + [sym_process_substitution] = STATE(732), + [sym__special_characters] = ACTIONS(1521), + [anon_sym_DQUOTE] = ACTIONS(696), + [sym_raw_string] = ACTIONS(1523), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(704), + [anon_sym_BQUOTE] = ACTIONS(706), + [anon_sym_LT_LPAREN] = ACTIONS(708), + [anon_sym_GT_LPAREN] = ACTIONS(708), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1525), + }, + [384] = { + [aux_sym_concatenation_repeat1] = STATE(735), + [sym_file_descriptor] = ACTIONS(446), + [sym__concat] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_SEMI_SEMI] = ACTIONS(1529), + [anon_sym_PIPE_AMP] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1529), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_GT] = ACTIONS(1529), + [anon_sym_GT_GT] = ACTIONS(1529), + [anon_sym_AMP_GT] = ACTIONS(1529), + [anon_sym_AMP_GT_GT] = ACTIONS(1529), + [anon_sym_LT_AMP] = ACTIONS(1529), + [anon_sym_GT_AMP] = ACTIONS(1529), + [anon_sym_LT_LT] = ACTIONS(1529), + [anon_sym_LT_LT_DASH] = ACTIONS(1529), + [anon_sym_LT_LT_LT] = ACTIONS(1529), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1529), + [anon_sym_LF] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1529), + }, + [385] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(737), + [anon_sym_DQUOTE] = ACTIONS(1531), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [386] = { + [aux_sym_concatenation_repeat1] = STATE(735), + [sym_file_descriptor] = ACTIONS(454), + [sym__concat] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_SEMI_SEMI] = ACTIONS(1533), + [anon_sym_PIPE_AMP] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1533), + [anon_sym_PIPE_PIPE] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(1533), + [anon_sym_GT] = ACTIONS(1533), + [anon_sym_GT_GT] = ACTIONS(1533), + [anon_sym_AMP_GT] = ACTIONS(1533), + [anon_sym_AMP_GT_GT] = ACTIONS(1533), + [anon_sym_LT_AMP] = ACTIONS(1533), + [anon_sym_GT_AMP] = ACTIONS(1533), + [anon_sym_LT_LT] = ACTIONS(1533), + [anon_sym_LT_LT_DASH] = ACTIONS(1533), + [anon_sym_LT_LT_LT] = ACTIONS(1533), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_LF] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + }, + [387] = { + [anon_sym_DOLLAR] = ACTIONS(1535), + [anon_sym_DASH] = ACTIONS(1535), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_AT] = ACTIONS(1535), + [anon_sym_QMARK] = ACTIONS(1535), + [anon_sym_0] = ACTIONS(1539), + [anon_sym__] = ACTIONS(1539), + }, + [388] = { + [sym_subscript] = STATE(744), + [sym_variable_name] = ACTIONS(1541), + [anon_sym_DOLLAR] = ACTIONS(1543), + [anon_sym_POUND] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1543), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1547), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_AT] = ACTIONS(1543), + [anon_sym_QMARK] = ACTIONS(1543), + [anon_sym_0] = ACTIONS(1549), + [anon_sym__] = ACTIONS(1549), + }, + [389] = { + [sym_for_statement] = STATE(745), + [sym_while_statement] = STATE(745), + [sym_if_statement] = STATE(745), + [sym_case_statement] = STATE(745), + [sym_function_definition] = STATE(745), + [sym_subshell] = STATE(745), + [sym_pipeline] = STATE(745), + [sym_list] = STATE(745), + [sym_command] = STATE(745), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(746), + [sym_declaration_command] = STATE(745), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [390] = { + [sym_for_statement] = STATE(747), + [sym_while_statement] = STATE(747), + [sym_if_statement] = STATE(747), + [sym_case_statement] = STATE(747), + [sym_function_definition] = STATE(747), + [sym_subshell] = STATE(747), + [sym_pipeline] = STATE(747), + [sym_list] = STATE(747), + [sym_command] = STATE(747), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(748), + [sym_declaration_command] = STATE(747), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), + }, + [391] = { + [sym_for_statement] = STATE(749), + [sym_while_statement] = STATE(749), + [sym_if_statement] = STATE(749), + [sym_case_statement] = STATE(749), + [sym_function_definition] = STATE(749), + [sym_subshell] = STATE(749), + [sym_pipeline] = STATE(749), + [sym_list] = STATE(749), + [sym_command] = STATE(749), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(750), + [sym_declaration_command] = STATE(749), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [392] = { + [sym_file_descriptor] = ACTIONS(454), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_RPAREN] = ACTIONS(1533), + [anon_sym_SEMI_SEMI] = ACTIONS(1533), + [anon_sym_PIPE_AMP] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1533), + [anon_sym_PIPE_PIPE] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(1533), + [anon_sym_GT] = ACTIONS(1533), + [anon_sym_GT_GT] = ACTIONS(1533), + [anon_sym_AMP_GT] = ACTIONS(1533), + [anon_sym_AMP_GT_GT] = ACTIONS(1533), + [anon_sym_LT_AMP] = ACTIONS(1533), + [anon_sym_GT_AMP] = ACTIONS(1533), + [anon_sym_LT_LT] = ACTIONS(1533), + [anon_sym_LT_LT_DASH] = ACTIONS(1533), + [anon_sym_LT_LT_LT] = ACTIONS(1533), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_LF] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + }, + [393] = { + [sym_file_descriptor] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_RPAREN] = ACTIONS(1553), + [anon_sym_SEMI_SEMI] = ACTIONS(1553), + [anon_sym_PIPE_AMP] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1553), + [anon_sym_PIPE_PIPE] = ACTIONS(1553), + [anon_sym_LT] = ACTIONS(1553), + [anon_sym_GT] = ACTIONS(1553), + [anon_sym_GT_GT] = ACTIONS(1553), + [anon_sym_AMP_GT] = ACTIONS(1553), + [anon_sym_AMP_GT_GT] = ACTIONS(1553), + [anon_sym_LT_AMP] = ACTIONS(1553), + [anon_sym_GT_AMP] = ACTIONS(1553), + [anon_sym_LT_LT] = ACTIONS(1553), + [anon_sym_LT_LT_DASH] = ACTIONS(1553), + [anon_sym_LT_LT_LT] = ACTIONS(1553), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_AMP] = ACTIONS(1553), + }, + [394] = { [sym_simple_expansion] = STATE(751), [sym_expansion] = STATE(751), - [sym_command_substitution] = STATE(751), - [sym_process_substitution] = STATE(751), - [sym_word] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(562), - [sym_raw_string] = ACTIONS(1434), - [anon_sym_DOLLAR] = ACTIONS(564), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(566), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(568), - [anon_sym_BQUOTE] = ACTIONS(570), - [anon_sym_LT_LPAREN] = ACTIONS(572), - [anon_sym_GT_LPAREN] = ACTIONS(572), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1436), + [aux_sym_heredoc_repeat1] = STATE(755), + [sym__heredoc_middle] = ACTIONS(1555), + [sym__heredoc_end] = ACTIONS(1557), + [anon_sym_DOLLAR] = ACTIONS(1559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1561), + [sym_comment] = ACTIONS(48), }, - [461] = { - [aux_sym_concatenation_repeat1] = STATE(753), - [sym_file_descriptor] = ACTIONS(372), - [sym__concat] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(1136), - [anon_sym_RPAREN] = ACTIONS(1136), - [anon_sym_SEMI_SEMI] = ACTIONS(1136), - [anon_sym_PIPE_AMP] = ACTIONS(1136), - [anon_sym_AMP_AMP] = ACTIONS(1136), - [anon_sym_PIPE_PIPE] = ACTIONS(1136), - [anon_sym_LT] = ACTIONS(1136), - [anon_sym_GT] = ACTIONS(1136), - [anon_sym_GT_GT] = ACTIONS(1136), - [anon_sym_AMP_GT] = ACTIONS(1136), - [anon_sym_AMP_GT_GT] = ACTIONS(1136), - [anon_sym_LT_AMP] = ACTIONS(1136), - [anon_sym_GT_AMP] = ACTIONS(1136), - [anon_sym_LT_LT] = ACTIONS(1136), - [anon_sym_LT_LT_DASH] = ACTIONS(1136), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym_LF] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1136), + [395] = { + [sym_file_descriptor] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_RPAREN] = ACTIONS(1565), + [anon_sym_SEMI_SEMI] = ACTIONS(1565), + [anon_sym_PIPE_AMP] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1565), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_AMP_GT] = ACTIONS(1565), + [anon_sym_AMP_GT_GT] = ACTIONS(1565), + [anon_sym_LT_AMP] = ACTIONS(1565), + [anon_sym_GT_AMP] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT_LT_DASH] = ACTIONS(1565), + [anon_sym_LT_LT_LT] = ACTIONS(1565), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1565), + [anon_sym_LF] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), }, - [462] = { - [aux_sym_concatenation_repeat1] = STATE(754), - [sym_file_descriptor] = ACTIONS(390), - [sym__concat] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_RPAREN] = ACTIONS(1150), - [anon_sym_SEMI_SEMI] = ACTIONS(1150), - [anon_sym_PIPE_AMP] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [anon_sym_LT] = ACTIONS(1150), - [anon_sym_GT] = ACTIONS(1150), - [anon_sym_GT_GT] = ACTIONS(1150), - [anon_sym_AMP_GT] = ACTIONS(1150), - [anon_sym_AMP_GT_GT] = ACTIONS(1150), - [anon_sym_LT_AMP] = ACTIONS(1150), - [anon_sym_GT_AMP] = ACTIONS(1150), - [anon_sym_LT_LT] = ACTIONS(1150), - [anon_sym_LT_LT_DASH] = ACTIONS(1150), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), + [396] = { + [aux_sym_concatenation_repeat1] = STATE(735), + [sym_file_descriptor] = ACTIONS(1567), + [sym__concat] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_SEMI_SEMI] = ACTIONS(1569), + [anon_sym_PIPE_AMP] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1569), + [anon_sym_PIPE_PIPE] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_GT_GT] = ACTIONS(1569), + [anon_sym_AMP_GT] = ACTIONS(1569), + [anon_sym_AMP_GT_GT] = ACTIONS(1569), + [anon_sym_LT_AMP] = ACTIONS(1569), + [anon_sym_GT_AMP] = ACTIONS(1569), + [anon_sym_LT_LT] = ACTIONS(1569), + [anon_sym_LT_LT_DASH] = ACTIONS(1569), + [anon_sym_LT_LT_LT] = ACTIONS(1569), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1569), + [anon_sym_LF] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1569), }, - [463] = { - [sym_concatenation] = STATE(135), - [sym_string] = STATE(211), - [sym_simple_expansion] = STATE(211), - [sym_expansion] = STATE(211), - [sym_command_substitution] = STATE(211), - [sym_process_substitution] = STATE(211), - [aux_sym_for_statement_repeat1] = STATE(463), - [sym_file_descriptor] = ACTIONS(1168), - [sym_word] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_RPAREN] = ACTIONS(1173), - [anon_sym_SEMI_SEMI] = ACTIONS(1173), - [anon_sym_PIPE_AMP] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(1173), - [anon_sym_PIPE_PIPE] = ACTIONS(1173), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_GT] = ACTIONS(1173), - [anon_sym_GT_GT] = ACTIONS(1173), - [anon_sym_AMP_GT] = ACTIONS(1173), - [anon_sym_AMP_GT_GT] = ACTIONS(1173), - [anon_sym_LT_AMP] = ACTIONS(1173), - [anon_sym_GT_AMP] = ACTIONS(1173), - [anon_sym_LT_LT] = ACTIONS(1173), - [anon_sym_LT_LT_DASH] = ACTIONS(1173), - [anon_sym_DQUOTE] = ACTIONS(1175), - [sym_raw_string] = ACTIONS(1441), - [anon_sym_DOLLAR] = ACTIONS(1181), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1184), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1187), - [anon_sym_BQUOTE] = ACTIONS(1190), - [anon_sym_LT_LPAREN] = ACTIONS(1193), - [anon_sym_GT_LPAREN] = ACTIONS(1193), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym_LF] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1173), + [397] = { + [aux_sym_concatenation_repeat1] = STATE(735), + [sym_file_descriptor] = ACTIONS(1571), + [sym__concat] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_SEMI_SEMI] = ACTIONS(1573), + [anon_sym_PIPE_AMP] = ACTIONS(1573), + [anon_sym_AMP_AMP] = ACTIONS(1573), + [anon_sym_PIPE_PIPE] = ACTIONS(1573), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_AMP_GT] = ACTIONS(1573), + [anon_sym_AMP_GT_GT] = ACTIONS(1573), + [anon_sym_LT_AMP] = ACTIONS(1573), + [anon_sym_GT_AMP] = ACTIONS(1573), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_LT_LT_DASH] = ACTIONS(1573), + [anon_sym_LT_LT_LT] = ACTIONS(1573), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_LF] = ACTIONS(1573), + [anon_sym_AMP] = ACTIONS(1573), }, - [464] = { - [sym_file_redirect] = STATE(134), - [sym_heredoc_redirect] = STATE(134), - [aux_sym_command_repeat2] = STATE(465), - [sym_file_descriptor] = ACTIONS(348), - [anon_sym_PIPE] = ACTIONS(1199), - [anon_sym_RPAREN] = ACTIONS(1199), - [anon_sym_SEMI_SEMI] = ACTIONS(1199), - [anon_sym_PIPE_AMP] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_LT] = ACTIONS(352), - [anon_sym_GT] = ACTIONS(352), - [anon_sym_GT_GT] = ACTIONS(352), - [anon_sym_AMP_GT] = ACTIONS(352), - [anon_sym_AMP_GT_GT] = ACTIONS(352), - [anon_sym_LT_AMP] = ACTIONS(352), - [anon_sym_GT_AMP] = ACTIONS(352), - [anon_sym_LT_LT] = ACTIONS(216), - [anon_sym_LT_LT_DASH] = ACTIONS(216), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym_LF] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1199), + [398] = { + [sym_file_descriptor] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(1573), + [anon_sym_SEMI_SEMI] = ACTIONS(1573), + [anon_sym_PIPE_AMP] = ACTIONS(1573), + [anon_sym_AMP_AMP] = ACTIONS(1573), + [anon_sym_PIPE_PIPE] = ACTIONS(1573), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_AMP_GT] = ACTIONS(1573), + [anon_sym_AMP_GT_GT] = ACTIONS(1573), + [anon_sym_LT_AMP] = ACTIONS(1573), + [anon_sym_GT_AMP] = ACTIONS(1573), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_LT_LT_DASH] = ACTIONS(1573), + [anon_sym_LT_LT_LT] = ACTIONS(1573), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_LF] = ACTIONS(1573), + [anon_sym_AMP] = ACTIONS(1573), }, - [465] = { - [sym_file_redirect] = STATE(134), - [sym_heredoc_redirect] = STATE(134), - [aux_sym_command_repeat2] = STATE(465), - [sym_file_descriptor] = ACTIONS(1447), - [anon_sym_PIPE] = ACTIONS(1204), - [anon_sym_RPAREN] = ACTIONS(1204), - [anon_sym_SEMI_SEMI] = ACTIONS(1204), - [anon_sym_PIPE_AMP] = ACTIONS(1204), - [anon_sym_AMP_AMP] = ACTIONS(1204), - [anon_sym_PIPE_PIPE] = ACTIONS(1204), - [anon_sym_LT] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1450), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_AMP_GT] = ACTIONS(1450), - [anon_sym_AMP_GT_GT] = ACTIONS(1450), - [anon_sym_LT_AMP] = ACTIONS(1450), - [anon_sym_GT_AMP] = ACTIONS(1450), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_LT_LT_DASH] = ACTIONS(1209), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1204), - [anon_sym_LF] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1204), + [399] = { + [sym_concatenation] = STATE(151), + [sym_string] = STATE(149), + [sym_simple_expansion] = STATE(149), + [sym_expansion] = STATE(149), + [sym_command_substitution] = STATE(149), + [sym_process_substitution] = STATE(149), + [aux_sym_for_statement_repeat1] = STATE(399), + [sym_file_descriptor] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_SEMI_SEMI] = ACTIONS(1577), + [anon_sym_PIPE_AMP] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1577), + [anon_sym_PIPE_PIPE] = ACTIONS(1577), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_GT_GT] = ACTIONS(1577), + [anon_sym_AMP_GT] = ACTIONS(1577), + [anon_sym_AMP_GT_GT] = ACTIONS(1577), + [anon_sym_LT_AMP] = ACTIONS(1577), + [anon_sym_GT_AMP] = ACTIONS(1577), + [anon_sym_LT_LT] = ACTIONS(1577), + [anon_sym_LT_LT_DASH] = ACTIONS(1577), + [anon_sym_LT_LT_LT] = ACTIONS(1577), + [sym__special_characters] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1582), + [sym_raw_string] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(1588), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1591), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1594), + [anon_sym_BQUOTE] = ACTIONS(1597), + [anon_sym_LT_LPAREN] = ACTIONS(1600), + [anon_sym_GT_LPAREN] = ACTIONS(1600), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1577), + [anon_sym_LF] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1577), }, - [466] = { - [sym_file_descriptor] = ACTIONS(546), - [sym_word] = ACTIONS(546), - [sym_variable_name] = ACTIONS(546), - [anon_sym_for] = ACTIONS(548), - [anon_sym_while] = ACTIONS(548), - [anon_sym_if] = ACTIONS(548), - [anon_sym_case] = ACTIONS(548), - [anon_sym_RPAREN] = ACTIONS(1453), - [anon_sym_function] = ACTIONS(548), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_typeset] = ACTIONS(548), - [anon_sym_export] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(548), - [anon_sym_local] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_GT] = ACTIONS(548), - [anon_sym_GT_GT] = ACTIONS(546), - [anon_sym_AMP_GT] = ACTIONS(548), - [anon_sym_AMP_GT_GT] = ACTIONS(546), - [anon_sym_LT_AMP] = ACTIONS(546), - [anon_sym_GT_AMP] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(546), - [sym_raw_string] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(546), - [anon_sym_BQUOTE] = ACTIONS(546), - [anon_sym_LT_LPAREN] = ACTIONS(546), - [anon_sym_GT_LPAREN] = ACTIONS(546), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(550), + [400] = { + [sym_file_redirect] = STATE(150), + [sym_heredoc_redirect] = STATE(150), + [sym_herestring_redirect] = STATE(150), + [aux_sym_command_repeat2] = STATE(401), + [sym_file_descriptor] = ACTIONS(246), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_SEMI_SEMI] = ACTIONS(1603), + [anon_sym_PIPE_AMP] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(1603), + [anon_sym_PIPE_PIPE] = ACTIONS(1603), + [anon_sym_LT] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(250), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_AMP_GT] = ACTIONS(250), + [anon_sym_AMP_GT_GT] = ACTIONS(250), + [anon_sym_LT_AMP] = ACTIONS(250), + [anon_sym_GT_AMP] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(254), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_LF] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), }, - [467] = { - [sym_file_redirect] = STATE(134), - [sym_heredoc_redirect] = STATE(134), - [sym_concatenation] = STATE(135), - [sym_string] = STATE(211), - [sym_simple_expansion] = STATE(211), - [sym_expansion] = STATE(211), - [sym_command_substitution] = STATE(211), - [sym_process_substitution] = STATE(211), - [aux_sym_for_statement_repeat1] = STATE(463), - [aux_sym_command_repeat2] = STATE(756), - [sym_file_descriptor] = ACTIONS(348), - [sym_word] = ACTIONS(350), - [anon_sym_PIPE] = ACTIONS(1199), - [anon_sym_RPAREN] = ACTIONS(1199), - [anon_sym_SEMI_SEMI] = ACTIONS(1199), - [anon_sym_PIPE_AMP] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_LT] = ACTIONS(352), - [anon_sym_GT] = ACTIONS(352), - [anon_sym_GT_GT] = ACTIONS(352), - [anon_sym_AMP_GT] = ACTIONS(352), - [anon_sym_AMP_GT_GT] = ACTIONS(352), - [anon_sym_LT_AMP] = ACTIONS(352), - [anon_sym_GT_AMP] = ACTIONS(352), - [anon_sym_LT_LT] = ACTIONS(216), - [anon_sym_LT_LT_DASH] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(218), - [sym_raw_string] = ACTIONS(354), - [anon_sym_DOLLAR] = ACTIONS(222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(226), - [anon_sym_BQUOTE] = ACTIONS(228), - [anon_sym_LT_LPAREN] = ACTIONS(230), - [anon_sym_GT_LPAREN] = ACTIONS(230), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(356), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym_LF] = ACTIONS(1199), - [anon_sym_AMP] = ACTIONS(1199), + [401] = { + [sym_file_redirect] = STATE(150), + [sym_heredoc_redirect] = STATE(150), + [sym_herestring_redirect] = STATE(150), + [aux_sym_command_repeat2] = STATE(401), + [sym_file_descriptor] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_SEMI_SEMI] = ACTIONS(1608), + [anon_sym_PIPE_AMP] = ACTIONS(1608), + [anon_sym_AMP_AMP] = ACTIONS(1608), + [anon_sym_PIPE_PIPE] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(1610), + [anon_sym_GT] = ACTIONS(1610), + [anon_sym_GT_GT] = ACTIONS(1610), + [anon_sym_AMP_GT] = ACTIONS(1610), + [anon_sym_AMP_GT_GT] = ACTIONS(1610), + [anon_sym_LT_AMP] = ACTIONS(1610), + [anon_sym_GT_AMP] = ACTIONS(1610), + [anon_sym_LT_LT] = ACTIONS(1613), + [anon_sym_LT_LT_DASH] = ACTIONS(1613), + [anon_sym_LT_LT_LT] = ACTIONS(1616), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_LF] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), }, - [468] = { - [aux_sym_concatenation_repeat1] = STATE(758), - [sym_word] = ACTIONS(686), - [sym__concat] = ACTIONS(1455), - [sym_variable_name] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_SEMI_SEMI] = ACTIONS(690), - [anon_sym_PIPE_AMP] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(690), - [anon_sym_PIPE_PIPE] = ACTIONS(690), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(690), - [anon_sym_SEMI] = ACTIONS(690), - [anon_sym_LF] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), + [402] = { + [sym_concatenation] = STATE(756), + [sym_string] = STATE(759), + [sym_array] = STATE(756), + [sym_simple_expansion] = STATE(759), + [sym_expansion] = STATE(759), + [sym_command_substitution] = STATE(759), + [sym_process_substitution] = STATE(759), + [sym__empty_value] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1621), + [sym__special_characters] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(118), + [sym_raw_string] = ACTIONS(1625), + [anon_sym_DOLLAR] = ACTIONS(122), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(124), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(126), + [anon_sym_BQUOTE] = ACTIONS(128), + [anon_sym_LT_LPAREN] = ACTIONS(130), + [anon_sym_GT_LPAREN] = ACTIONS(130), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1627), }, - [469] = { - [sym_word] = ACTIONS(686), - [sym_variable_name] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_RPAREN] = ACTIONS(690), - [anon_sym_SEMI_SEMI] = ACTIONS(690), - [anon_sym_PIPE_AMP] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(690), - [anon_sym_PIPE_PIPE] = ACTIONS(690), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(690), - [anon_sym_SEMI] = ACTIONS(690), - [anon_sym_LF] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), + [403] = { + [sym_file_descriptor] = ACTIONS(330), + [sym_variable_name] = ACTIONS(330), + [anon_sym_LT] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_GT_GT] = ACTIONS(330), + [anon_sym_AMP_GT] = ACTIONS(1307), + [anon_sym_AMP_GT_GT] = ACTIONS(330), + [anon_sym_LT_AMP] = ACTIONS(330), + [anon_sym_GT_AMP] = ACTIONS(330), + [sym__special_characters] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(330), + [sym_raw_string] = ACTIONS(330), + [anon_sym_DOLLAR] = ACTIONS(1307), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1307), }, - [470] = { - [sym_concatenation] = STATE(364), - [sym_string] = STATE(355), - [sym_simple_expansion] = STATE(355), - [sym_expansion] = STATE(355), - [sym_command_substitution] = STATE(355), - [sym_process_substitution] = STATE(355), - [aux_sym_for_statement_repeat1] = STATE(760), - [sym_word] = ACTIONS(692), - [anon_sym_RPAREN] = ACTIONS(1457), - [anon_sym_DQUOTE] = ACTIONS(696), - [sym_raw_string] = ACTIONS(692), - [anon_sym_DOLLAR] = ACTIONS(698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(702), - [anon_sym_BQUOTE] = ACTIONS(704), - [anon_sym_LT_LPAREN] = ACTIONS(706), - [anon_sym_GT_LPAREN] = ACTIONS(706), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(708), + [404] = { + [sym_file_redirect] = STATE(150), + [sym_heredoc_redirect] = STATE(150), + [sym_herestring_redirect] = STATE(150), + [sym_concatenation] = STATE(151), + [sym_string] = STATE(149), + [sym_simple_expansion] = STATE(149), + [sym_expansion] = STATE(149), + [sym_command_substitution] = STATE(149), + [sym_process_substitution] = STATE(149), + [aux_sym_for_statement_repeat1] = STATE(399), + [aux_sym_command_repeat2] = STATE(760), + [sym_file_descriptor] = ACTIONS(246), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_SEMI_SEMI] = ACTIONS(1603), + [anon_sym_PIPE_AMP] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(1603), + [anon_sym_PIPE_PIPE] = ACTIONS(1603), + [anon_sym_LT] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(250), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_AMP_GT] = ACTIONS(250), + [anon_sym_AMP_GT_GT] = ACTIONS(250), + [anon_sym_LT_AMP] = ACTIONS(250), + [anon_sym_GT_AMP] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(254), + [sym__special_characters] = ACTIONS(256), + [anon_sym_DQUOTE] = ACTIONS(258), + [sym_raw_string] = ACTIONS(260), + [anon_sym_DOLLAR] = ACTIONS(262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(264), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(266), + [anon_sym_BQUOTE] = ACTIONS(268), + [anon_sym_LT_LPAREN] = ACTIONS(270), + [anon_sym_GT_LPAREN] = ACTIONS(270), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(260), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_LF] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), }, - [471] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(762), - [anon_sym_DQUOTE] = ACTIONS(1459), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), + [405] = { + [sym_file_descriptor] = ACTIONS(1629), + [sym_variable_name] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_RPAREN] = ACTIONS(1631), + [anon_sym_SEMI_SEMI] = ACTIONS(1631), + [anon_sym_PIPE_AMP] = ACTIONS(1631), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_PIPE_PIPE] = ACTIONS(1631), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_GT_GT] = ACTIONS(1631), + [anon_sym_AMP_GT] = ACTIONS(1631), + [anon_sym_AMP_GT_GT] = ACTIONS(1631), + [anon_sym_LT_AMP] = ACTIONS(1631), + [anon_sym_GT_AMP] = ACTIONS(1631), + [sym__special_characters] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [sym_raw_string] = ACTIONS(1631), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1631), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1631), + [anon_sym_LT_LPAREN] = ACTIONS(1631), + [anon_sym_GT_LPAREN] = ACTIONS(1631), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_LF] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1631), }, - [472] = { - [sym_special_variable_name] = STATE(765), - [anon_sym_DOLLAR] = ACTIONS(1461), - [anon_sym_POUND] = ACTIONS(1461), - [anon_sym_AT] = ACTIONS(1461), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1461), - [anon_sym_QMARK] = ACTIONS(1461), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_BANG] = ACTIONS(1461), - [anon_sym_0] = ACTIONS(1465), - [anon_sym__] = ACTIONS(1465), + [406] = { + [aux_sym_concatenation_repeat1] = STATE(762), + [sym__concat] = ACTIONS(1633), + [anon_sym_RPAREN] = ACTIONS(722), + [sym__special_characters] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(722), + [sym_raw_string] = ACTIONS(722), + [anon_sym_DOLLAR] = ACTIONS(1415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(722), + [anon_sym_BQUOTE] = ACTIONS(722), + [anon_sym_LT_LPAREN] = ACTIONS(722), + [anon_sym_GT_LPAREN] = ACTIONS(722), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1415), }, - [473] = { - [sym_special_variable_name] = STATE(768), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(1467), - [anon_sym_AT] = ACTIONS(138), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), + [407] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(764), + [anon_sym_DQUOTE] = ACTIONS(1635), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), }, - [474] = { - [sym_for_statement] = STATE(769), - [sym_while_statement] = STATE(769), - [sym_if_statement] = STATE(769), - [sym_case_statement] = STATE(769), - [sym_function_definition] = STATE(769), - [sym_subshell] = STATE(769), - [sym_pipeline] = STATE(769), - [sym_list] = STATE(769), - [sym_command] = STATE(769), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(770), - [sym_declaration_command] = STATE(769), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), + [408] = { + [aux_sym_concatenation_repeat1] = STATE(762), + [sym__concat] = ACTIONS(1633), + [anon_sym_RPAREN] = ACTIONS(726), + [sym__special_characters] = ACTIONS(1417), + [anon_sym_DQUOTE] = ACTIONS(726), + [sym_raw_string] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(1417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(726), + [anon_sym_BQUOTE] = ACTIONS(726), + [anon_sym_LT_LPAREN] = ACTIONS(726), + [anon_sym_GT_LPAREN] = ACTIONS(726), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1417), + }, + [409] = { + [anon_sym_DOLLAR] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1637), + [anon_sym_AT] = ACTIONS(1637), + [anon_sym_QMARK] = ACTIONS(1637), + [anon_sym_0] = ACTIONS(1641), + [anon_sym__] = ACTIONS(1641), + }, + [410] = { + [sym_subscript] = STATE(771), + [sym_variable_name] = ACTIONS(1643), + [anon_sym_DOLLAR] = ACTIONS(1645), + [anon_sym_POUND] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1645), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_AT] = ACTIONS(1645), + [anon_sym_QMARK] = ACTIONS(1645), + [anon_sym_0] = ACTIONS(1651), + [anon_sym__] = ACTIONS(1651), + }, + [411] = { + [sym_for_statement] = STATE(772), + [sym_while_statement] = STATE(772), + [sym_if_statement] = STATE(772), + [sym_case_statement] = STATE(772), + [sym_function_definition] = STATE(772), + [sym_subshell] = STATE(772), + [sym_pipeline] = STATE(772), + [sym_list] = STATE(772), + [sym_command] = STATE(772), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(773), + [sym_declaration_command] = STATE(772), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), - }, - [475] = { - [sym_for_statement] = STATE(771), - [sym_while_statement] = STATE(771), - [sym_if_statement] = STATE(771), - [sym_case_statement] = STATE(771), - [sym_function_definition] = STATE(771), - [sym_subshell] = STATE(771), - [sym_pipeline] = STATE(771), - [sym_list] = STATE(771), - [sym_command] = STATE(771), - [sym_command_name] = STATE(118), - [sym_variable_assignment] = STATE(772), - [sym_declaration_command] = STATE(771), - [sym_subscript] = STATE(120), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_command_repeat1] = STATE(121), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(178), - [sym_variable_name] = ACTIONS(180), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), [anon_sym_function] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(184), - [anon_sym_typeset] = ACTIONS(184), - [anon_sym_export] = ACTIONS(184), - [anon_sym_readonly] = ACTIONS(184), - [anon_sym_local] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(178), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, - [476] = { - [sym_for_statement] = STATE(773), - [sym_while_statement] = STATE(773), - [sym_if_statement] = STATE(773), - [sym_case_statement] = STATE(773), - [sym_function_definition] = STATE(773), - [sym_subshell] = STATE(773), - [sym_pipeline] = STATE(773), - [sym_list] = STATE(773), - [sym_command] = STATE(773), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(774), - [sym_declaration_command] = STATE(773), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), + [412] = { + [sym_for_statement] = STATE(774), + [sym_while_statement] = STATE(774), + [sym_if_statement] = STATE(774), + [sym_case_statement] = STATE(774), + [sym_function_definition] = STATE(774), + [sym_subshell] = STATE(774), + [sym_pipeline] = STATE(774), + [sym_list] = STATE(774), + [sym_command] = STATE(774), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(775), + [sym_declaration_command] = STATE(774), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), }, - [477] = { - [aux_sym_concatenation_repeat1] = STATE(775), - [sym_word] = ACTIONS(722), - [sym__concat] = ACTIONS(1455), - [sym_variable_name] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(724), - [anon_sym_SEMI_SEMI] = ACTIONS(724), - [anon_sym_PIPE_AMP] = ACTIONS(724), - [anon_sym_AMP_AMP] = ACTIONS(724), - [anon_sym_PIPE_PIPE] = ACTIONS(724), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(724), - [anon_sym_SEMI] = ACTIONS(724), - [anon_sym_LF] = ACTIONS(724), - [anon_sym_AMP] = ACTIONS(724), + [413] = { + [sym_for_statement] = STATE(776), + [sym_while_statement] = STATE(776), + [sym_if_statement] = STATE(776), + [sym_case_statement] = STATE(776), + [sym_function_definition] = STATE(776), + [sym_subshell] = STATE(776), + [sym_pipeline] = STATE(776), + [sym_list] = STATE(776), + [sym_command] = STATE(776), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(777), + [sym_declaration_command] = STATE(776), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, - [478] = { - [sym_file_descriptor] = ACTIONS(675), - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(675), - [sym_variable_name] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_GT] = ACTIONS(1471), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_AMP_GT] = ACTIONS(1471), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(675), - [anon_sym_GT_AMP] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(675), - [sym_raw_string] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(1471), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(675), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), - [anon_sym_BQUOTE] = ACTIONS(675), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1471), + [414] = { + [anon_sym_RPAREN] = ACTIONS(726), + [sym__special_characters] = ACTIONS(1417), + [anon_sym_DQUOTE] = ACTIONS(726), + [sym_raw_string] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(1417), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(726), + [anon_sym_BQUOTE] = ACTIONS(726), + [anon_sym_LT_LPAREN] = ACTIONS(726), + [anon_sym_GT_LPAREN] = ACTIONS(726), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1417), }, - [479] = { - [sym_file_descriptor] = ACTIONS(679), - [sym_word] = ACTIONS(679), - [sym__concat] = ACTIONS(679), - [sym_variable_name] = ACTIONS(679), - [anon_sym_LT] = ACTIONS(1473), - [anon_sym_GT] = ACTIONS(1473), - [anon_sym_GT_GT] = ACTIONS(679), - [anon_sym_AMP_GT] = ACTIONS(1473), - [anon_sym_AMP_GT_GT] = ACTIONS(679), - [anon_sym_LT_AMP] = ACTIONS(679), - [anon_sym_GT_AMP] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(679), - [sym_raw_string] = ACTIONS(679), - [anon_sym_DOLLAR] = ACTIONS(1473), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(679), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(679), - [anon_sym_BQUOTE] = ACTIONS(679), - [anon_sym_LT_LPAREN] = ACTIONS(679), - [anon_sym_GT_LPAREN] = ACTIONS(679), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1473), + [415] = { + [sym_concatenation] = STATE(414), + [sym_string] = STATE(408), + [sym_simple_expansion] = STATE(408), + [sym_expansion] = STATE(408), + [sym_command_substitution] = STATE(408), + [sym_process_substitution] = STATE(408), + [aux_sym_for_statement_repeat1] = STATE(779), + [anon_sym_RPAREN] = ACTIONS(1653), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(846), }, - [480] = { - [aux_sym_concatenation_repeat1] = STATE(480), - [sym_file_descriptor] = ACTIONS(675), - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(1475), - [sym_variable_name] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_GT] = ACTIONS(1471), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_AMP_GT] = ACTIONS(1471), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(675), - [anon_sym_GT_AMP] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(675), - [sym_raw_string] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(1471), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(675), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), - [anon_sym_BQUOTE] = ACTIONS(675), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1471), - }, - [481] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_word] = ACTIONS(931), - [sym__concat] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(1478), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(1478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1478), - }, - [482] = { - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_LBRACK] = ACTIONS(1482), - [sym_comment] = ACTIONS(46), - }, - [483] = { - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1486), - [sym_comment] = ACTIONS(46), - }, - [484] = { - [sym_file_descriptor] = ACTIONS(960), - [sym_word] = ACTIONS(960), - [sym__concat] = ACTIONS(960), - [sym_variable_name] = ACTIONS(960), - [anon_sym_LT] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1488), - [anon_sym_GT_GT] = ACTIONS(960), - [anon_sym_AMP_GT] = ACTIONS(1488), - [anon_sym_AMP_GT_GT] = ACTIONS(960), - [anon_sym_LT_AMP] = ACTIONS(960), - [anon_sym_GT_AMP] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(1488), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(960), - [anon_sym_BQUOTE] = ACTIONS(960), - [anon_sym_LT_LPAREN] = ACTIONS(960), - [anon_sym_GT_LPAREN] = ACTIONS(960), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1488), - }, - [485] = { - [sym_concatenation] = STATE(783), + [416] = { [sym_string] = STATE(780), [sym_simple_expansion] = STATE(780), [sym_expansion] = STATE(780), [sym_command_substitution] = STATE(780), [sym_process_substitution] = STATE(780), - [sym_word] = ACTIONS(1490), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1490), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1494), + [sym__special_characters] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(296), + [sym_raw_string] = ACTIONS(1657), + [anon_sym_DOLLAR] = ACTIONS(300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(302), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(304), + [anon_sym_BQUOTE] = ACTIONS(306), + [anon_sym_LT_LPAREN] = ACTIONS(308), + [anon_sym_GT_LPAREN] = ACTIONS(308), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1655), }, - [486] = { - [anon_sym_AT] = ACTIONS(1496), - [sym_comment] = ACTIONS(46), + [417] = { + [aux_sym_concatenation_repeat1] = STATE(781), + [sym_file_descriptor] = ACTIONS(478), + [sym__concat] = ACTIONS(850), + [sym_variable_name] = ACTIONS(478), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_SEMI_SEMI] = ACTIONS(480), + [anon_sym_PIPE_AMP] = ACTIONS(480), + [anon_sym_AMP_AMP] = ACTIONS(480), + [anon_sym_PIPE_PIPE] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_GT_GT] = ACTIONS(480), + [anon_sym_AMP_GT] = ACTIONS(480), + [anon_sym_AMP_GT_GT] = ACTIONS(480), + [anon_sym_LT_AMP] = ACTIONS(480), + [anon_sym_GT_AMP] = ACTIONS(480), + [sym__special_characters] = ACTIONS(480), + [anon_sym_DQUOTE] = ACTIONS(480), + [sym_raw_string] = ACTIONS(480), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(480), + [anon_sym_LT_LPAREN] = ACTIONS(480), + [anon_sym_GT_LPAREN] = ACTIONS(480), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(480), + [anon_sym_SEMI] = ACTIONS(480), + [anon_sym_LF] = ACTIONS(480), + [anon_sym_AMP] = ACTIONS(480), }, - [487] = { - [sym_file_descriptor] = ACTIONS(972), - [sym_word] = ACTIONS(972), - [sym__concat] = ACTIONS(972), - [sym_variable_name] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(1498), - [anon_sym_GT] = ACTIONS(1498), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_AMP_GT] = ACTIONS(1498), - [anon_sym_AMP_GT_GT] = ACTIONS(972), - [anon_sym_LT_AMP] = ACTIONS(972), - [anon_sym_GT_AMP] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym_raw_string] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(1498), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), - [anon_sym_BQUOTE] = ACTIONS(972), - [anon_sym_LT_LPAREN] = ACTIONS(972), - [anon_sym_GT_LPAREN] = ACTIONS(972), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1498), + [418] = { + [sym_file_descriptor] = ACTIONS(482), + [sym__concat] = ACTIONS(482), + [sym_variable_name] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(484), + [anon_sym_SEMI_SEMI] = ACTIONS(484), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(484), + [anon_sym_PIPE_PIPE] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_GT_GT] = ACTIONS(484), + [anon_sym_AMP_GT] = ACTIONS(484), + [anon_sym_AMP_GT_GT] = ACTIONS(484), + [anon_sym_LT_AMP] = ACTIONS(484), + [anon_sym_GT_AMP] = ACTIONS(484), + [sym__special_characters] = ACTIONS(484), + [anon_sym_DQUOTE] = ACTIONS(484), + [sym_raw_string] = ACTIONS(484), + [anon_sym_DOLLAR] = ACTIONS(484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(484), + [anon_sym_BQUOTE] = ACTIONS(484), + [anon_sym_LT_LPAREN] = ACTIONS(484), + [anon_sym_GT_LPAREN] = ACTIONS(484), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(484), + [anon_sym_SEMI] = ACTIONS(484), + [anon_sym_LF] = ACTIONS(484), + [anon_sym_AMP] = ACTIONS(484), }, - [488] = { - [sym_concatenation] = STATE(787), - [sym_string] = STATE(785), - [sym_simple_expansion] = STATE(785), - [sym_expansion] = STATE(785), - [sym_command_substitution] = STATE(785), - [sym_process_substitution] = STATE(785), - [sym_word] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1500), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1502), + [419] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(1659), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), }, - [489] = { - [anon_sym_AT] = ACTIONS(1504), - [sym_comment] = ACTIONS(46), + [420] = { + [sym_file_descriptor] = ACTIONS(510), + [sym__concat] = ACTIONS(510), + [sym_variable_name] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(512), + [anon_sym_SEMI_SEMI] = ACTIONS(512), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(512), + [anon_sym_PIPE_PIPE] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_AMP_GT] = ACTIONS(512), + [anon_sym_AMP_GT_GT] = ACTIONS(512), + [anon_sym_LT_AMP] = ACTIONS(512), + [anon_sym_GT_AMP] = ACTIONS(512), + [sym__special_characters] = ACTIONS(512), + [anon_sym_DQUOTE] = ACTIONS(512), + [sym_raw_string] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(512), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(512), + [anon_sym_BQUOTE] = ACTIONS(512), + [anon_sym_LT_LPAREN] = ACTIONS(512), + [anon_sym_GT_LPAREN] = ACTIONS(512), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(512), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_LF] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(512), }, - [490] = { - [sym_file_descriptor] = ACTIONS(1066), - [sym_word] = ACTIONS(1066), - [sym__concat] = ACTIONS(1066), - [sym_variable_name] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(1066), - [anon_sym_AMP_GT] = ACTIONS(1506), - [anon_sym_AMP_GT_GT] = ACTIONS(1066), - [anon_sym_LT_AMP] = ACTIONS(1066), - [anon_sym_GT_AMP] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_raw_string] = ACTIONS(1066), - [anon_sym_DOLLAR] = ACTIONS(1506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1066), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1066), - [anon_sym_BQUOTE] = ACTIONS(1066), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1506), + [421] = { + [sym_file_descriptor] = ACTIONS(514), + [sym__concat] = ACTIONS(514), + [sym_variable_name] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_SEMI_SEMI] = ACTIONS(516), + [anon_sym_PIPE_AMP] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(516), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_GT_GT] = ACTIONS(516), + [anon_sym_AMP_GT] = ACTIONS(516), + [anon_sym_AMP_GT_GT] = ACTIONS(516), + [anon_sym_LT_AMP] = ACTIONS(516), + [anon_sym_GT_AMP] = ACTIONS(516), + [sym__special_characters] = ACTIONS(516), + [anon_sym_DQUOTE] = ACTIONS(516), + [sym_raw_string] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(516), + [anon_sym_BQUOTE] = ACTIONS(516), + [anon_sym_LT_LPAREN] = ACTIONS(516), + [anon_sym_GT_LPAREN] = ACTIONS(516), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_LF] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(516), }, - [491] = { - [sym_file_descriptor] = ACTIONS(1122), - [sym_word] = ACTIONS(1122), - [sym__concat] = ACTIONS(1122), - [sym_variable_name] = ACTIONS(1122), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_GT_GT] = ACTIONS(1122), - [anon_sym_AMP_GT] = ACTIONS(1508), - [anon_sym_AMP_GT_GT] = ACTIONS(1122), - [anon_sym_LT_AMP] = ACTIONS(1122), - [anon_sym_GT_AMP] = ACTIONS(1122), - [anon_sym_DQUOTE] = ACTIONS(1122), - [sym_raw_string] = ACTIONS(1122), - [anon_sym_DOLLAR] = ACTIONS(1508), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1122), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1122), - [anon_sym_LT_LPAREN] = ACTIONS(1122), - [anon_sym_GT_LPAREN] = ACTIONS(1122), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1508), + [422] = { + [anon_sym_EQ] = ACTIONS(1661), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), }, - [492] = { - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1512), - [sym_comment] = ACTIONS(46), + [423] = { + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_EQ] = ACTIONS(1665), + [anon_sym_COLON] = ACTIONS(1667), + [anon_sym_COLON_QMARK] = ACTIONS(1665), + [anon_sym_COLON_DASH] = ACTIONS(1665), + [anon_sym_PERCENT] = ACTIONS(1665), + [anon_sym_SLASH] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1665), + [sym_comment] = ACTIONS(48), }, - [493] = { - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1516), - [sym_comment] = ACTIONS(46), + [424] = { + [sym_subscript] = STATE(789), + [sym_variable_name] = ACTIONS(1669), + [anon_sym_DOLLAR] = ACTIONS(1671), + [anon_sym_DASH] = ACTIONS(1671), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1673), + [anon_sym_STAR] = ACTIONS(1671), + [anon_sym_AT] = ACTIONS(1671), + [anon_sym_QMARK] = ACTIONS(1671), + [anon_sym_0] = ACTIONS(1675), + [anon_sym__] = ACTIONS(1675), }, - [494] = { - [anon_sym_DQUOTE] = ACTIONS(962), - [sym__string_content] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(962), - [anon_sym_BQUOTE] = ACTIONS(962), - [sym_comment] = ACTIONS(60), + [425] = { + [anon_sym_RBRACE] = ACTIONS(1677), + [anon_sym_EQ] = ACTIONS(1679), + [anon_sym_COLON] = ACTIONS(1681), + [anon_sym_COLON_QMARK] = ACTIONS(1679), + [anon_sym_COLON_DASH] = ACTIONS(1679), + [anon_sym_PERCENT] = ACTIONS(1679), + [anon_sym_SLASH] = ACTIONS(1679), + [anon_sym_DASH] = ACTIONS(1679), + [sym_comment] = ACTIONS(48), }, - [495] = { - [sym_concatenation] = STATE(796), - [sym_string] = STATE(793), - [sym_simple_expansion] = STATE(793), - [sym_expansion] = STATE(793), - [sym_command_substitution] = STATE(793), - [sym_process_substitution] = STATE(793), - [sym_word] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1522), + [426] = { + [anon_sym_RBRACE] = ACTIONS(1683), + [anon_sym_EQ] = ACTIONS(1661), + [anon_sym_COLON] = ACTIONS(1685), + [anon_sym_COLON_QMARK] = ACTIONS(1661), + [anon_sym_COLON_DASH] = ACTIONS(1661), + [anon_sym_PERCENT] = ACTIONS(1661), + [anon_sym_SLASH] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [sym_comment] = ACTIONS(48), }, - [496] = { - [anon_sym_AT] = ACTIONS(1524), - [sym_comment] = ACTIONS(46), + [427] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1687), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), }, - [497] = { - [anon_sym_DQUOTE] = ACTIONS(974), - [sym__string_content] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(974), - [anon_sym_BQUOTE] = ACTIONS(974), - [sym_comment] = ACTIONS(60), + [428] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1687), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), }, - [498] = { - [sym_concatenation] = STATE(800), - [sym_string] = STATE(798), - [sym_simple_expansion] = STATE(798), - [sym_expansion] = STATE(798), - [sym_command_substitution] = STATE(798), - [sym_process_substitution] = STATE(798), - [sym_word] = ACTIONS(1526), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1526), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1528), + [429] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(1687), + [sym_comment] = ACTIONS(48), }, - [499] = { - [anon_sym_AT] = ACTIONS(1530), - [sym_comment] = ACTIONS(46), + [430] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(1687), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), }, - [500] = { - [anon_sym_DQUOTE] = ACTIONS(1068), - [sym__string_content] = ACTIONS(1068), - [anon_sym_DOLLAR] = ACTIONS(1068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1068), - [anon_sym_BQUOTE] = ACTIONS(1068), - [sym_comment] = ACTIONS(60), + [431] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1689), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), }, - [501] = { - [sym_file_descriptor] = ACTIONS(1532), - [sym_word] = ACTIONS(1532), - [sym__concat] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(1534), - [anon_sym_RPAREN] = ACTIONS(1534), - [anon_sym_SEMI_SEMI] = ACTIONS(1534), - [anon_sym_PIPE_AMP] = ACTIONS(1534), - [anon_sym_AMP_AMP] = ACTIONS(1534), - [anon_sym_PIPE_PIPE] = ACTIONS(1534), - [anon_sym_LT] = ACTIONS(1534), - [anon_sym_GT] = ACTIONS(1534), - [anon_sym_GT_GT] = ACTIONS(1534), - [anon_sym_AMP_GT] = ACTIONS(1534), - [anon_sym_AMP_GT_GT] = ACTIONS(1534), - [anon_sym_LT_AMP] = ACTIONS(1534), - [anon_sym_GT_AMP] = ACTIONS(1534), - [anon_sym_LT_LT] = ACTIONS(1534), - [anon_sym_LT_LT_DASH] = ACTIONS(1534), - [anon_sym_DQUOTE] = ACTIONS(1534), - [sym_raw_string] = ACTIONS(1534), - [anon_sym_DOLLAR] = ACTIONS(1534), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1534), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1534), - [anon_sym_BQUOTE] = ACTIONS(1534), - [anon_sym_LT_LPAREN] = ACTIONS(1534), - [anon_sym_GT_LPAREN] = ACTIONS(1534), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1534), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_LF] = ACTIONS(1534), - [anon_sym_AMP] = ACTIONS(1534), + [432] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1689), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), }, - [502] = { - [anon_sym_AT] = ACTIONS(1536), - [sym_comment] = ACTIONS(46), + [433] = { + [sym_string] = STATE(796), + [sym_simple_expansion] = STATE(796), + [sym_expansion] = STATE(796), + [sym_command_substitution] = STATE(796), + [sym_process_substitution] = STATE(796), + [anon_sym_RBRACK] = ACTIONS(1691), + [sym__special_characters] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(314), + [sym_raw_string] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(320), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_LT_LPAREN] = ACTIONS(326), + [anon_sym_GT_LPAREN] = ACTIONS(326), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1697), }, - [503] = { - [sym_file_descriptor] = ACTIONS(1538), - [sym_word] = ACTIONS(1538), - [sym__concat] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_RPAREN] = ACTIONS(1540), - [anon_sym_SEMI_SEMI] = ACTIONS(1540), - [anon_sym_PIPE_AMP] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1540), - [anon_sym_PIPE_PIPE] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1540), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_AMP_GT] = ACTIONS(1540), - [anon_sym_AMP_GT_GT] = ACTIONS(1540), - [anon_sym_LT_AMP] = ACTIONS(1540), - [anon_sym_GT_AMP] = ACTIONS(1540), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_LT_LT_DASH] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1540), - [sym_raw_string] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1540), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1540), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1540), - [anon_sym_BQUOTE] = ACTIONS(1540), - [anon_sym_LT_LPAREN] = ACTIONS(1540), - [anon_sym_GT_LPAREN] = ACTIONS(1540), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_LF] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1540), + [434] = { + [sym__concat] = ACTIONS(1699), + [anon_sym_EQ] = ACTIONS(1701), + [anon_sym_PLUS_EQ] = ACTIONS(1701), + [sym_comment] = ACTIONS(48), }, - [504] = { - [anon_sym_AT] = ACTIONS(1542), - [sym_comment] = ACTIONS(46), + [435] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(1703), + [anon_sym_RBRACK] = ACTIONS(478), + [sym_comment] = ACTIONS(48), }, - [505] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(1544), - [anon_sym_RBRACE] = ACTIONS(1546), - [sym_comment] = ACTIONS(46), + [436] = { + [sym__concat] = ACTIONS(482), + [anon_sym_RBRACK] = ACTIONS(482), + [sym_comment] = ACTIONS(48), }, - [506] = { - [sym_file_descriptor] = ACTIONS(1548), - [sym_word] = ACTIONS(1548), - [sym__concat] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [anon_sym_PIPE_AMP] = ACTIONS(1550), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_GT] = ACTIONS(1550), - [anon_sym_AMP_GT] = ACTIONS(1550), - [anon_sym_AMP_GT_GT] = ACTIONS(1550), - [anon_sym_LT_AMP] = ACTIONS(1550), - [anon_sym_GT_AMP] = ACTIONS(1550), - [anon_sym_LT_LT] = ACTIONS(1550), - [anon_sym_LT_LT_DASH] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [sym_raw_string] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1550), - [anon_sym_BQUOTE] = ACTIONS(1550), - [anon_sym_LT_LPAREN] = ACTIONS(1550), - [anon_sym_GT_LPAREN] = ACTIONS(1550), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1550), + [437] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), }, - [507] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(1552), - [anon_sym_RBRACE] = ACTIONS(1554), - [sym_comment] = ACTIONS(46), + [438] = { + [sym_string] = STATE(796), + [sym_simple_expansion] = STATE(796), + [sym_expansion] = STATE(796), + [sym_command_substitution] = STATE(796), + [sym_process_substitution] = STATE(796), + [anon_sym_RBRACK] = ACTIONS(1707), + [sym__special_characters] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(314), + [sym_raw_string] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(320), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_LT_LPAREN] = ACTIONS(326), + [anon_sym_GT_LPAREN] = ACTIONS(326), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1697), }, - [508] = { - [sym__concat] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1546), - [sym_comment] = ACTIONS(46), + [439] = { + [sym__concat] = ACTIONS(1709), + [anon_sym_EQ] = ACTIONS(1711), + [anon_sym_PLUS_EQ] = ACTIONS(1711), + [sym_comment] = ACTIONS(48), }, - [509] = { - [anon_sym_RBRACK] = ACTIONS(1556), - [sym_comment] = ACTIONS(46), + [440] = { + [sym__concat] = ACTIONS(510), + [anon_sym_RBRACK] = ACTIONS(510), + [sym_comment] = ACTIONS(48), }, - [510] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(1558), - [anon_sym_RBRACE] = ACTIONS(1560), - [sym_comment] = ACTIONS(46), + [441] = { + [sym__concat] = ACTIONS(514), + [anon_sym_RBRACK] = ACTIONS(514), + [sym_comment] = ACTIONS(48), }, - [511] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(1562), - [anon_sym_RBRACE] = ACTIONS(1564), - [sym_comment] = ACTIONS(46), + [442] = { + [anon_sym_EQ] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), }, - [512] = { - [sym__concat] = ACTIONS(1566), - [anon_sym_RBRACE] = ACTIONS(1560), - [sym_comment] = ACTIONS(46), + [443] = { + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_EQ] = ACTIONS(1717), + [anon_sym_COLON] = ACTIONS(1719), + [anon_sym_COLON_QMARK] = ACTIONS(1717), + [anon_sym_COLON_DASH] = ACTIONS(1717), + [anon_sym_PERCENT] = ACTIONS(1717), + [anon_sym_SLASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1717), + [sym_comment] = ACTIONS(48), }, - [513] = { - [anon_sym_RBRACK] = ACTIONS(1566), - [sym_comment] = ACTIONS(46), + [444] = { + [sym_subscript] = STATE(809), + [sym_variable_name] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_AT] = ACTIONS(1723), + [anon_sym_QMARK] = ACTIONS(1723), + [anon_sym_0] = ACTIONS(1727), + [anon_sym__] = ACTIONS(1727), }, - [514] = { - [sym_file_descriptor] = ACTIONS(675), - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_GT] = ACTIONS(1471), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_AMP_GT] = ACTIONS(1471), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(675), - [anon_sym_GT_AMP] = ACTIONS(675), - [anon_sym_LT_LT] = ACTIONS(1471), - [anon_sym_LT_LT_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(675), - [sym_raw_string] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(1471), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(675), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), - [anon_sym_BQUOTE] = ACTIONS(675), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1471), + [445] = { + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_EQ] = ACTIONS(1731), + [anon_sym_COLON] = ACTIONS(1733), + [anon_sym_COLON_QMARK] = ACTIONS(1731), + [anon_sym_COLON_DASH] = ACTIONS(1731), + [anon_sym_PERCENT] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [sym_comment] = ACTIONS(48), }, - [515] = { - [sym_file_descriptor] = ACTIONS(679), - [sym_word] = ACTIONS(679), - [sym__concat] = ACTIONS(679), - [anon_sym_PIPE] = ACTIONS(1473), - [anon_sym_RPAREN] = ACTIONS(679), - [anon_sym_PIPE_AMP] = ACTIONS(679), - [anon_sym_AMP_AMP] = ACTIONS(679), - [anon_sym_PIPE_PIPE] = ACTIONS(679), - [anon_sym_LT] = ACTIONS(1473), - [anon_sym_GT] = ACTIONS(1473), - [anon_sym_GT_GT] = ACTIONS(679), - [anon_sym_AMP_GT] = ACTIONS(1473), - [anon_sym_AMP_GT_GT] = ACTIONS(679), - [anon_sym_LT_AMP] = ACTIONS(679), - [anon_sym_GT_AMP] = ACTIONS(679), - [anon_sym_LT_LT] = ACTIONS(1473), - [anon_sym_LT_LT_DASH] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(679), - [sym_raw_string] = ACTIONS(679), - [anon_sym_DOLLAR] = ACTIONS(1473), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(679), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(679), - [anon_sym_BQUOTE] = ACTIONS(679), - [anon_sym_LT_LPAREN] = ACTIONS(679), - [anon_sym_GT_LPAREN] = ACTIONS(679), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1473), + [446] = { + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_EQ] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1737), + [anon_sym_COLON_QMARK] = ACTIONS(1713), + [anon_sym_COLON_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [sym_comment] = ACTIONS(48), }, - [516] = { - [aux_sym_concatenation_repeat1] = STATE(516), - [sym_file_descriptor] = ACTIONS(675), - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(1568), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_GT] = ACTIONS(1471), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_AMP_GT] = ACTIONS(1471), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(675), - [anon_sym_GT_AMP] = ACTIONS(675), - [anon_sym_LT_LT] = ACTIONS(1471), - [anon_sym_LT_LT_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(675), - [sym_raw_string] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(1471), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(675), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), - [anon_sym_BQUOTE] = ACTIONS(675), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1471), + [447] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1739), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), }, - [517] = { - [aux_sym_concatenation_repeat1] = STATE(817), - [sym_file_descriptor] = ACTIONS(686), - [sym_word] = ACTIONS(686), - [sym__concat] = ACTIONS(1571), - [sym_variable_name] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(686), - [anon_sym_PIPE_AMP] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(686), - [anon_sym_PIPE_PIPE] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_AMP_GT] = ACTIONS(1573), - [anon_sym_AMP_GT_GT] = ACTIONS(686), - [anon_sym_LT_AMP] = ACTIONS(686), - [anon_sym_GT_AMP] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(686), - [sym_raw_string] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(686), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(686), - [anon_sym_BQUOTE] = ACTIONS(686), - [anon_sym_LT_LPAREN] = ACTIONS(686), - [anon_sym_GT_LPAREN] = ACTIONS(686), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1573), + [448] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1739), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), }, - [518] = { - [sym_file_descriptor] = ACTIONS(686), - [sym_word] = ACTIONS(686), - [sym_variable_name] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(686), - [anon_sym_PIPE_AMP] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(686), - [anon_sym_PIPE_PIPE] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_AMP_GT] = ACTIONS(1573), - [anon_sym_AMP_GT_GT] = ACTIONS(686), - [anon_sym_LT_AMP] = ACTIONS(686), - [anon_sym_GT_AMP] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(686), - [sym_raw_string] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(686), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(686), - [anon_sym_BQUOTE] = ACTIONS(686), - [anon_sym_LT_LPAREN] = ACTIONS(686), - [anon_sym_GT_LPAREN] = ACTIONS(686), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1573), + [449] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(1739), + [sym_comment] = ACTIONS(48), }, - [519] = { - [sym_concatenation] = STATE(364), - [sym_string] = STATE(355), - [sym_simple_expansion] = STATE(355), - [sym_expansion] = STATE(355), - [sym_command_substitution] = STATE(355), - [sym_process_substitution] = STATE(355), - [aux_sym_for_statement_repeat1] = STATE(819), - [sym_word] = ACTIONS(692), - [anon_sym_RPAREN] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(696), - [sym_raw_string] = ACTIONS(692), - [anon_sym_DOLLAR] = ACTIONS(698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(702), - [anon_sym_BQUOTE] = ACTIONS(704), - [anon_sym_LT_LPAREN] = ACTIONS(706), - [anon_sym_GT_LPAREN] = ACTIONS(706), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(708), + [450] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(1739), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), }, - [520] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(821), - [anon_sym_DQUOTE] = ACTIONS(1577), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), + [451] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1741), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), }, - [521] = { - [sym_special_variable_name] = STATE(824), - [anon_sym_DOLLAR] = ACTIONS(1579), - [anon_sym_POUND] = ACTIONS(1579), - [anon_sym_AT] = ACTIONS(1579), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_QMARK] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1579), - [anon_sym_0] = ACTIONS(1583), - [anon_sym__] = ACTIONS(1583), + [452] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(1741), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), }, - [522] = { - [sym_special_variable_name] = STATE(827), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(1585), - [anon_sym_AT] = ACTIONS(138), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), + [453] = { + [anon_sym_RBRACK] = ACTIONS(1707), + [sym_comment] = ACTIONS(48), }, - [523] = { + [454] = { + [aux_sym_concatenation_repeat1] = STATE(816), + [sym__concat] = ACTIONS(1743), + [anon_sym_SEMI_SEMI] = ACTIONS(724), + [sym__special_characters] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(724), + [sym_raw_string] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(724), + [anon_sym_BQUOTE] = ACTIONS(724), + [anon_sym_LT_LPAREN] = ACTIONS(724), + [anon_sym_GT_LPAREN] = ACTIONS(724), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(724), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LF] = ACTIONS(724), + [anon_sym_AMP] = ACTIONS(724), + }, + [455] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(818), + [anon_sym_DQUOTE] = ACTIONS(1745), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [456] = { + [aux_sym_concatenation_repeat1] = STATE(816), + [sym__concat] = ACTIONS(1743), + [anon_sym_SEMI_SEMI] = ACTIONS(728), + [sym__special_characters] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(728), + [sym_raw_string] = ACTIONS(728), + [anon_sym_DOLLAR] = ACTIONS(728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(728), + [anon_sym_BQUOTE] = ACTIONS(728), + [anon_sym_LT_LPAREN] = ACTIONS(728), + [anon_sym_GT_LPAREN] = ACTIONS(728), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(728), + [anon_sym_SEMI] = ACTIONS(728), + [anon_sym_LF] = ACTIONS(728), + [anon_sym_AMP] = ACTIONS(728), + }, + [457] = { + [anon_sym_DOLLAR] = ACTIONS(1747), + [anon_sym_DASH] = ACTIONS(1747), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1749), + [anon_sym_STAR] = ACTIONS(1747), + [anon_sym_AT] = ACTIONS(1747), + [anon_sym_QMARK] = ACTIONS(1747), + [anon_sym_0] = ACTIONS(1751), + [anon_sym__] = ACTIONS(1751), + }, + [458] = { + [sym_subscript] = STATE(825), + [sym_variable_name] = ACTIONS(1753), + [anon_sym_DOLLAR] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1755), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1759), + [anon_sym_STAR] = ACTIONS(1755), + [anon_sym_AT] = ACTIONS(1755), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_0] = ACTIONS(1761), + [anon_sym__] = ACTIONS(1761), + }, + [459] = { + [sym_for_statement] = STATE(826), + [sym_while_statement] = STATE(826), + [sym_if_statement] = STATE(826), + [sym_case_statement] = STATE(826), + [sym_function_definition] = STATE(826), + [sym_subshell] = STATE(826), + [sym_pipeline] = STATE(826), + [sym_list] = STATE(826), + [sym_command] = STATE(826), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(827), + [sym_declaration_command] = STATE(826), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [460] = { [sym_for_statement] = STATE(828), [sym_while_statement] = STATE(828), [sym_if_statement] = STATE(828), @@ -17408,51 +18482,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_pipeline] = STATE(828), [sym_list] = STATE(828), [sym_command] = STATE(828), - [sym_command_name] = STATE(107), + [sym_command_name] = STATE(134), [sym_variable_assignment] = STATE(829), [sym_declaration_command] = STATE(828), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), }, - [524] = { + [461] = { [sym_for_statement] = STATE(830), [sym_while_statement] = STATE(830), [sym_if_statement] = STATE(830), @@ -17462,17963 +18536,35943 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_pipeline] = STATE(830), [sym_list] = STATE(830), [sym_command] = STATE(830), - [sym_command_name] = STATE(118), + [sym_command_name] = STATE(116), [sym_variable_assignment] = STATE(831), [sym_declaration_command] = STATE(830), - [sym_subscript] = STATE(120), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_command_repeat1] = STATE(121), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(178), - [sym_variable_name] = ACTIONS(180), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), [anon_sym_function] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(184), - [anon_sym_typeset] = ACTIONS(184), - [anon_sym_export] = ACTIONS(184), - [anon_sym_readonly] = ACTIONS(184), - [anon_sym_local] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(178), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(186), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [462] = { + [anon_sym_SEMI_SEMI] = ACTIONS(728), + [sym__special_characters] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(728), + [sym_raw_string] = ACTIONS(728), + [anon_sym_DOLLAR] = ACTIONS(728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(728), + [anon_sym_BQUOTE] = ACTIONS(728), + [anon_sym_LT_LPAREN] = ACTIONS(728), + [anon_sym_GT_LPAREN] = ACTIONS(728), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(728), + [anon_sym_SEMI] = ACTIONS(728), + [anon_sym_LF] = ACTIONS(728), + [anon_sym_AMP] = ACTIONS(728), + }, + [463] = { + [sym_concatenation] = STATE(462), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_for_statement_repeat1] = STATE(833), + [anon_sym_SEMI_SEMI] = ACTIONS(1763), + [sym__special_characters] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym_raw_string] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1775), + [anon_sym_BQUOTE] = ACTIONS(1777), + [anon_sym_LT_LPAREN] = ACTIONS(1779), + [anon_sym_GT_LPAREN] = ACTIONS(1779), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1769), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + }, + [464] = { + [anon_sym_PIPE] = ACTIONS(1781), + [anon_sym_RPAREN] = ACTIONS(1781), + [anon_sym_SEMI_SEMI] = ACTIONS(1781), + [anon_sym_PIPE_AMP] = ACTIONS(1781), + [anon_sym_AMP_AMP] = ACTIONS(1781), + [anon_sym_PIPE_PIPE] = ACTIONS(1781), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1781), + [anon_sym_LF] = ACTIONS(1781), + [anon_sym_AMP] = ACTIONS(1781), + }, + [465] = { + [sym_file_descriptor] = ACTIONS(234), + [sym_variable_name] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), + [anon_sym_while] = ACTIONS(236), + [anon_sym_done] = ACTIONS(236), + [anon_sym_if] = ACTIONS(236), + [anon_sym_case] = ACTIONS(236), + [anon_sym_function] = ACTIONS(236), + [anon_sym_LPAREN] = ACTIONS(234), + [anon_sym_declare] = ACTIONS(236), + [anon_sym_typeset] = ACTIONS(236), + [anon_sym_export] = ACTIONS(236), + [anon_sym_readonly] = ACTIONS(236), + [anon_sym_local] = ACTIONS(236), + [anon_sym_LT] = ACTIONS(236), + [anon_sym_GT] = ACTIONS(236), + [anon_sym_GT_GT] = ACTIONS(234), + [anon_sym_AMP_GT] = ACTIONS(236), + [anon_sym_AMP_GT_GT] = ACTIONS(234), + [anon_sym_LT_AMP] = ACTIONS(234), + [anon_sym_GT_AMP] = ACTIONS(234), + [sym__special_characters] = ACTIONS(236), + [anon_sym_DQUOTE] = ACTIONS(234), + [sym_raw_string] = ACTIONS(234), + [anon_sym_DOLLAR] = ACTIONS(236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), + [anon_sym_BQUOTE] = ACTIONS(234), + [anon_sym_LT_LPAREN] = ACTIONS(234), + [anon_sym_GT_LPAREN] = ACTIONS(234), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(238), + }, + [466] = { + [anon_sym_PIPE] = ACTIONS(240), + [anon_sym_SEMI_SEMI] = ACTIONS(1783), + [anon_sym_PIPE_AMP] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(244), + [anon_sym_PIPE_PIPE] = ACTIONS(244), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym_LF] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + }, + [467] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(240), + [anon_sym_SEMI_SEMI] = ACTIONS(1783), + [anon_sym_PIPE_AMP] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(244), + [anon_sym_PIPE_PIPE] = ACTIONS(244), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_AMP_GT] = ACTIONS(274), + [anon_sym_AMP_GT_GT] = ACTIONS(274), + [anon_sym_LT_AMP] = ACTIONS(274), + [anon_sym_GT_AMP] = ACTIONS(274), + [sym__special_characters] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(274), + [sym_raw_string] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(274), + [anon_sym_BQUOTE] = ACTIONS(274), + [anon_sym_LT_LPAREN] = ACTIONS(274), + [anon_sym_GT_LPAREN] = ACTIONS(274), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(1783), + [anon_sym_LF] = ACTIONS(1783), + [anon_sym_AMP] = ACTIONS(1783), + }, + [468] = { + [sym__terminated_statement] = STATE(465), + [sym_for_statement] = STATE(466), + [sym_while_statement] = STATE(466), + [sym_if_statement] = STATE(466), + [sym_case_statement] = STATE(466), + [sym_function_definition] = STATE(466), + [sym_subshell] = STATE(466), + [sym_pipeline] = STATE(466), + [sym_list] = STATE(466), + [sym_command] = STATE(466), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(467), + [sym_declaration_command] = STATE(466), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(836), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_done] = ACTIONS(1785), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), + }, + [469] = { + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_RPAREN] = ACTIONS(1787), + [anon_sym_SEMI_SEMI] = ACTIONS(1787), + [anon_sym_PIPE_AMP] = ACTIONS(1787), + [anon_sym_AMP_AMP] = ACTIONS(1787), + [anon_sym_PIPE_PIPE] = ACTIONS(1787), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1787), + [anon_sym_LF] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1787), + }, + [470] = { + [sym__terminated_statement] = STATE(837), + [sym_for_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_subshell] = STATE(37), + [sym_pipeline] = STATE(37), + [sym_list] = STATE(37), + [sym_command] = STATE(37), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(38), + [sym_declaration_command] = STATE(37), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), + }, + [471] = { + [sym__terminated_statement] = STATE(838), + [sym_for_statement] = STATE(839), + [sym_while_statement] = STATE(839), + [sym_if_statement] = STATE(839), + [sym_case_statement] = STATE(839), + [sym_function_definition] = STATE(839), + [sym_subshell] = STATE(839), + [sym_pipeline] = STATE(839), + [sym_list] = STATE(839), + [sym_command] = STATE(839), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(840), + [sym_declaration_command] = STATE(839), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(841), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_fi] = ACTIONS(1789), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), + }, + [472] = { + [sym_file_descriptor] = ACTIONS(234), + [sym_variable_name] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), + [anon_sym_while] = ACTIONS(236), + [anon_sym_if] = ACTIONS(236), + [anon_sym_fi] = ACTIONS(236), + [anon_sym_elif] = ACTIONS(236), + [anon_sym_else] = ACTIONS(236), + [anon_sym_case] = ACTIONS(236), + [anon_sym_function] = ACTIONS(236), + [anon_sym_LPAREN] = ACTIONS(234), + [anon_sym_declare] = ACTIONS(236), + [anon_sym_typeset] = ACTIONS(236), + [anon_sym_export] = ACTIONS(236), + [anon_sym_readonly] = ACTIONS(236), + [anon_sym_local] = ACTIONS(236), + [anon_sym_LT] = ACTIONS(236), + [anon_sym_GT] = ACTIONS(236), + [anon_sym_GT_GT] = ACTIONS(234), + [anon_sym_AMP_GT] = ACTIONS(236), + [anon_sym_AMP_GT_GT] = ACTIONS(234), + [anon_sym_LT_AMP] = ACTIONS(234), + [anon_sym_GT_AMP] = ACTIONS(234), + [sym__special_characters] = ACTIONS(236), + [anon_sym_DQUOTE] = ACTIONS(234), + [sym_raw_string] = ACTIONS(234), + [anon_sym_DOLLAR] = ACTIONS(236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), + [anon_sym_BQUOTE] = ACTIONS(234), + [anon_sym_LT_LPAREN] = ACTIONS(234), + [anon_sym_GT_LPAREN] = ACTIONS(234), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(238), + }, + [473] = { + [anon_sym_PIPE] = ACTIONS(240), + [anon_sym_SEMI_SEMI] = ACTIONS(1791), + [anon_sym_PIPE_AMP] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(244), + [anon_sym_PIPE_PIPE] = ACTIONS(244), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1791), + [anon_sym_AMP] = ACTIONS(1791), + }, + [474] = { + [anon_sym_fi] = ACTIONS(1793), + [anon_sym_elif] = ACTIONS(1793), + [anon_sym_else] = ACTIONS(1793), + [sym_comment] = ACTIONS(48), + }, + [475] = { + [anon_sym_fi] = ACTIONS(1795), + [sym_comment] = ACTIONS(48), + }, + [476] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(240), + [anon_sym_SEMI_SEMI] = ACTIONS(1791), + [anon_sym_PIPE_AMP] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(244), + [anon_sym_PIPE_PIPE] = ACTIONS(244), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_AMP_GT] = ACTIONS(274), + [anon_sym_AMP_GT_GT] = ACTIONS(274), + [anon_sym_LT_AMP] = ACTIONS(274), + [anon_sym_GT_AMP] = ACTIONS(274), + [sym__special_characters] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(274), + [sym_raw_string] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(274), + [anon_sym_BQUOTE] = ACTIONS(274), + [anon_sym_LT_LPAREN] = ACTIONS(274), + [anon_sym_GT_LPAREN] = ACTIONS(274), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1791), + [anon_sym_AMP] = ACTIONS(1791), + }, + [477] = { + [sym__terminated_statement] = STATE(472), + [sym_for_statement] = STATE(473), + [sym_while_statement] = STATE(473), + [sym_if_statement] = STATE(473), + [sym_elif_clause] = STATE(474), + [sym_else_clause] = STATE(844), + [sym_case_statement] = STATE(473), + [sym_function_definition] = STATE(473), + [sym_subshell] = STATE(473), + [sym_pipeline] = STATE(473), + [sym_list] = STATE(473), + [sym_command] = STATE(473), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(476), + [sym_declaration_command] = STATE(473), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(845), + [aux_sym_if_statement_repeat1] = STATE(846), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_fi] = ACTIONS(1797), + [anon_sym_elif] = ACTIONS(924), + [anon_sym_else] = ACTIONS(926), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), + }, + [478] = { + [sym_elif_clause] = STATE(474), + [sym_else_clause] = STATE(844), + [aux_sym_if_statement_repeat1] = STATE(847), + [anon_sym_fi] = ACTIONS(1795), + [anon_sym_elif] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1801), + [sym_comment] = ACTIONS(48), + }, + [479] = { + [sym__concat] = ACTIONS(1157), + [anon_sym_in] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [480] = { + [sym_case_item] = STATE(857), + [sym_concatenation] = STATE(858), + [sym_string] = STATE(851), + [sym_simple_expansion] = STATE(851), + [sym_expansion] = STATE(851), + [sym_command_substitution] = STATE(851), + [sym_process_substitution] = STATE(851), + [aux_sym_case_statement_repeat1] = STATE(859), + [anon_sym_esac] = ACTIONS(1803), + [sym__special_characters] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1807), + [sym_raw_string] = ACTIONS(1809), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1815), + [anon_sym_BQUOTE] = ACTIONS(1817), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1821), + }, + [481] = { + [anon_sym_SEMI_SEMI] = ACTIONS(1823), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_LF] = ACTIONS(1823), + [anon_sym_AMP] = ACTIONS(1823), + }, + [482] = { + [aux_sym_concatenation_repeat1] = STATE(482), + [sym__concat] = ACTIONS(1825), + [anon_sym_in] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [483] = { + [sym__concat] = ACTIONS(1196), + [anon_sym_in] = ACTIONS(1198), + [anon_sym_SEMI_SEMI] = ACTIONS(1198), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + }, + [484] = { + [sym_case_item] = STATE(857), + [sym_concatenation] = STATE(858), + [sym_string] = STATE(851), + [sym_simple_expansion] = STATE(851), + [sym_expansion] = STATE(851), + [sym_command_substitution] = STATE(851), + [sym_process_substitution] = STATE(851), + [aux_sym_case_statement_repeat1] = STATE(862), + [anon_sym_esac] = ACTIONS(1828), + [sym__special_characters] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1807), + [sym_raw_string] = ACTIONS(1809), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1815), + [anon_sym_BQUOTE] = ACTIONS(1817), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1821), + }, + [485] = { + [anon_sym_SEMI_SEMI] = ACTIONS(1830), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_LF] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1830), + }, + [486] = { + [sym_concatenation] = STATE(867), + [sym_string] = STATE(866), + [sym_simple_expansion] = STATE(866), + [sym_expansion] = STATE(866), + [sym_command_substitution] = STATE(866), + [sym_process_substitution] = STATE(866), + [anon_sym_RBRACE] = ACTIONS(1832), + [sym__special_characters] = ACTIONS(1834), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(1836), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1838), + }, + [487] = { + [sym__concat] = ACTIONS(1241), + [anon_sym_in] = ACTIONS(1243), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1243), + }, + [488] = { + [sym_concatenation] = STATE(871), + [sym_string] = STATE(870), + [sym_simple_expansion] = STATE(870), + [sym_expansion] = STATE(870), + [sym_command_substitution] = STATE(870), + [sym_process_substitution] = STATE(870), + [anon_sym_RBRACE] = ACTIONS(1840), + [sym__special_characters] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(1844), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1846), + }, + [489] = { + [anon_sym_EQ] = ACTIONS(1848), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [490] = { + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_EQ] = ACTIONS(1852), + [anon_sym_COLON] = ACTIONS(1854), + [anon_sym_COLON_QMARK] = ACTIONS(1852), + [anon_sym_COLON_DASH] = ACTIONS(1852), + [anon_sym_PERCENT] = ACTIONS(1852), + [anon_sym_SLASH] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1852), + [sym_comment] = ACTIONS(48), + }, + [491] = { + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_EQ] = ACTIONS(1858), + [anon_sym_COLON] = ACTIONS(1860), + [anon_sym_COLON_QMARK] = ACTIONS(1858), + [anon_sym_COLON_DASH] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1858), + [anon_sym_SLASH] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [sym_comment] = ACTIONS(48), + }, + [492] = { + [anon_sym_RBRACE] = ACTIONS(1832), + [anon_sym_EQ] = ACTIONS(1848), + [anon_sym_COLON] = ACTIONS(1862), + [anon_sym_COLON_QMARK] = ACTIONS(1848), + [anon_sym_COLON_DASH] = ACTIONS(1848), + [anon_sym_PERCENT] = ACTIONS(1848), + [anon_sym_SLASH] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1848), + [sym_comment] = ACTIONS(48), + }, + [493] = { + [sym__concat] = ACTIONS(1269), + [anon_sym_in] = ACTIONS(1271), + [anon_sym_SEMI_SEMI] = ACTIONS(1271), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_LF] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + }, + [494] = { + [sym_concatenation] = STATE(880), + [sym_string] = STATE(879), + [sym_simple_expansion] = STATE(879), + [sym_expansion] = STATE(879), + [sym_command_substitution] = STATE(879), + [sym_process_substitution] = STATE(879), + [anon_sym_RBRACE] = ACTIONS(1864), + [sym__special_characters] = ACTIONS(1866), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(1868), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1870), + }, + [495] = { + [sym__concat] = ACTIONS(1281), + [anon_sym_in] = ACTIONS(1283), + [anon_sym_SEMI_SEMI] = ACTIONS(1283), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + }, + [496] = { + [sym__concat] = ACTIONS(1379), + [anon_sym_in] = ACTIONS(1381), + [anon_sym_SEMI_SEMI] = ACTIONS(1381), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_LF] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + }, + [497] = { + [sym__concat] = ACTIONS(1513), + [anon_sym_in] = ACTIONS(1515), + [anon_sym_SEMI_SEMI] = ACTIONS(1515), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + }, + [498] = { + [sym_compound_statement] = STATE(881), + [anon_sym_LBRACE] = ACTIONS(372), + [sym_comment] = ACTIONS(48), + }, + [499] = { + [sym_file_descriptor] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_RPAREN] = ACTIONS(1874), + [anon_sym_SEMI_SEMI] = ACTIONS(1874), + [anon_sym_PIPE_AMP] = ACTIONS(1874), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_PIPE_PIPE] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_GT] = ACTIONS(1874), + [anon_sym_GT_GT] = ACTIONS(1874), + [anon_sym_AMP_GT] = ACTIONS(1874), + [anon_sym_AMP_GT_GT] = ACTIONS(1874), + [anon_sym_LT_AMP] = ACTIONS(1874), + [anon_sym_GT_AMP] = ACTIONS(1874), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_LF] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + }, + [500] = { + [sym_file_descriptor] = ACTIONS(234), + [sym_variable_name] = ACTIONS(234), + [anon_sym_for] = ACTIONS(236), + [anon_sym_while] = ACTIONS(236), + [anon_sym_if] = ACTIONS(236), + [anon_sym_case] = ACTIONS(236), + [anon_sym_function] = ACTIONS(236), + [anon_sym_LPAREN] = ACTIONS(234), + [anon_sym_RBRACE] = ACTIONS(234), + [anon_sym_declare] = ACTIONS(236), + [anon_sym_typeset] = ACTIONS(236), + [anon_sym_export] = ACTIONS(236), + [anon_sym_readonly] = ACTIONS(236), + [anon_sym_local] = ACTIONS(236), + [anon_sym_LT] = ACTIONS(236), + [anon_sym_GT] = ACTIONS(236), + [anon_sym_GT_GT] = ACTIONS(234), + [anon_sym_AMP_GT] = ACTIONS(236), + [anon_sym_AMP_GT_GT] = ACTIONS(234), + [anon_sym_LT_AMP] = ACTIONS(234), + [anon_sym_GT_AMP] = ACTIONS(234), + [sym__special_characters] = ACTIONS(238), + [anon_sym_DQUOTE] = ACTIONS(234), + [sym_raw_string] = ACTIONS(234), + [anon_sym_DOLLAR] = ACTIONS(236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), + [anon_sym_BQUOTE] = ACTIONS(234), + [anon_sym_LT_LPAREN] = ACTIONS(234), + [anon_sym_GT_LPAREN] = ACTIONS(234), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(238), + }, + [501] = { + [anon_sym_PIPE] = ACTIONS(240), + [anon_sym_SEMI_SEMI] = ACTIONS(1876), + [anon_sym_PIPE_AMP] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(244), + [anon_sym_PIPE_PIPE] = ACTIONS(244), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_AMP] = ACTIONS(1876), + }, + [502] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(240), + [anon_sym_SEMI_SEMI] = ACTIONS(1876), + [anon_sym_PIPE_AMP] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(244), + [anon_sym_PIPE_PIPE] = ACTIONS(244), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_AMP_GT] = ACTIONS(274), + [anon_sym_AMP_GT_GT] = ACTIONS(274), + [anon_sym_LT_AMP] = ACTIONS(274), + [anon_sym_GT_AMP] = ACTIONS(274), + [sym__special_characters] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(274), + [sym_raw_string] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(274), + [anon_sym_BQUOTE] = ACTIONS(274), + [anon_sym_LT_LPAREN] = ACTIONS(274), + [anon_sym_GT_LPAREN] = ACTIONS(274), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_LF] = ACTIONS(1876), + [anon_sym_AMP] = ACTIONS(1876), + }, + [503] = { + [sym__terminated_statement] = STATE(500), + [sym_for_statement] = STATE(501), + [sym_while_statement] = STATE(501), + [sym_if_statement] = STATE(501), + [sym_case_statement] = STATE(501), + [sym_function_definition] = STATE(501), + [sym_subshell] = STATE(501), + [sym_pipeline] = STATE(501), + [sym_list] = STATE(501), + [sym_command] = STATE(501), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(502), + [sym_declaration_command] = STATE(501), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(884), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), + }, + [504] = { + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_GT] = ACTIONS(1880), + [anon_sym_GT_GT] = ACTIONS(1882), + [anon_sym_AMP_GT] = ACTIONS(1880), + [anon_sym_AMP_GT_GT] = ACTIONS(1882), + [anon_sym_LT_AMP] = ACTIONS(1882), + [anon_sym_GT_AMP] = ACTIONS(1882), + [sym_comment] = ACTIONS(48), + }, + [505] = { + [sym_concatenation] = STATE(894), + [sym_string] = STATE(888), + [sym_simple_expansion] = STATE(888), + [sym_expansion] = STATE(888), + [sym_command_substitution] = STATE(888), + [sym_process_substitution] = STATE(888), + [sym__special_characters] = ACTIONS(1884), + [anon_sym_DQUOTE] = ACTIONS(1886), + [sym_raw_string] = ACTIONS(1888), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1896), + [anon_sym_LT_LPAREN] = ACTIONS(1898), + [anon_sym_GT_LPAREN] = ACTIONS(1898), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1900), + }, + [506] = { + [anon_sym_PIPE] = ACTIONS(1902), + [anon_sym_RPAREN] = ACTIONS(1902), + [anon_sym_SEMI_SEMI] = ACTIONS(1902), + [anon_sym_PIPE_AMP] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1902), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_LF] = ACTIONS(1902), + [anon_sym_AMP] = ACTIONS(1902), + }, + [507] = { + [aux_sym_concatenation_repeat1] = STATE(896), + [sym_file_descriptor] = ACTIONS(848), + [sym__concat] = ACTIONS(1904), + [sym_variable_name] = ACTIONS(848), + [anon_sym_PIPE] = ACTIONS(852), + [anon_sym_RPAREN] = ACTIONS(852), + [anon_sym_SEMI_SEMI] = ACTIONS(852), + [anon_sym_PIPE_AMP] = ACTIONS(852), + [anon_sym_AMP_AMP] = ACTIONS(852), + [anon_sym_PIPE_PIPE] = ACTIONS(852), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_GT_GT] = ACTIONS(852), + [anon_sym_AMP_GT] = ACTIONS(852), + [anon_sym_AMP_GT_GT] = ACTIONS(852), + [anon_sym_LT_AMP] = ACTIONS(852), + [anon_sym_GT_AMP] = ACTIONS(852), + [sym__special_characters] = ACTIONS(852), + [anon_sym_DQUOTE] = ACTIONS(852), + [sym_raw_string] = ACTIONS(852), + [anon_sym_DOLLAR] = ACTIONS(852), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(852), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(852), + [anon_sym_BQUOTE] = ACTIONS(852), + [anon_sym_LT_LPAREN] = ACTIONS(852), + [anon_sym_GT_LPAREN] = ACTIONS(852), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(852), + [anon_sym_SEMI] = ACTIONS(852), + [anon_sym_LF] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(852), + }, + [508] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(898), + [anon_sym_DQUOTE] = ACTIONS(1906), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [509] = { + [aux_sym_concatenation_repeat1] = STATE(896), + [sym_file_descriptor] = ACTIONS(824), + [sym__concat] = ACTIONS(1904), + [sym_variable_name] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(826), + [anon_sym_GT] = ACTIONS(826), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(826), + [anon_sym_AMP_GT_GT] = ACTIONS(826), + [anon_sym_LT_AMP] = ACTIONS(826), + [anon_sym_GT_AMP] = ACTIONS(826), + [sym__special_characters] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(826), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + }, + [510] = { + [anon_sym_DOLLAR] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1908), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1908), + [anon_sym_AT] = ACTIONS(1908), + [anon_sym_QMARK] = ACTIONS(1908), + [anon_sym_0] = ACTIONS(1912), + [anon_sym__] = ACTIONS(1912), + }, + [511] = { + [sym_subscript] = STATE(905), + [sym_variable_name] = ACTIONS(1914), + [anon_sym_DOLLAR] = ACTIONS(1916), + [anon_sym_POUND] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1916), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(1916), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_QMARK] = ACTIONS(1916), + [anon_sym_0] = ACTIONS(1922), + [anon_sym__] = ACTIONS(1922), + }, + [512] = { + [sym_for_statement] = STATE(906), + [sym_while_statement] = STATE(906), + [sym_if_statement] = STATE(906), + [sym_case_statement] = STATE(906), + [sym_function_definition] = STATE(906), + [sym_subshell] = STATE(906), + [sym_pipeline] = STATE(906), + [sym_list] = STATE(906), + [sym_command] = STATE(906), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(907), + [sym_declaration_command] = STATE(906), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [513] = { + [sym_for_statement] = STATE(908), + [sym_while_statement] = STATE(908), + [sym_if_statement] = STATE(908), + [sym_case_statement] = STATE(908), + [sym_function_definition] = STATE(908), + [sym_subshell] = STATE(908), + [sym_pipeline] = STATE(908), + [sym_list] = STATE(908), + [sym_command] = STATE(908), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(909), + [sym_declaration_command] = STATE(908), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), + }, + [514] = { + [sym_for_statement] = STATE(910), + [sym_while_statement] = STATE(910), + [sym_if_statement] = STATE(910), + [sym_case_statement] = STATE(910), + [sym_function_definition] = STATE(910), + [sym_subshell] = STATE(910), + [sym_pipeline] = STATE(910), + [sym_list] = STATE(910), + [sym_command] = STATE(910), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(911), + [sym_declaration_command] = STATE(910), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [515] = { + [anon_sym_RPAREN] = ACTIONS(1924), + [sym_comment] = ACTIONS(48), + }, + [516] = { + [sym_file_redirect] = STATE(506), + [sym_file_descriptor] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_SEMI_SEMI] = ACTIONS(980), + [anon_sym_PIPE_AMP] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_GT_GT] = ACTIONS(1928), + [anon_sym_AMP_GT] = ACTIONS(1928), + [anon_sym_AMP_GT_GT] = ACTIONS(1928), + [anon_sym_LT_AMP] = ACTIONS(1928), + [anon_sym_GT_AMP] = ACTIONS(1928), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_LF] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(980), + }, + [517] = { + [sym_concatenation] = STATE(554), + [sym_string] = STATE(917), + [sym_array] = STATE(554), + [sym_simple_expansion] = STATE(917), + [sym_expansion] = STATE(917), + [sym_command_substitution] = STATE(917), + [sym_process_substitution] = STATE(917), + [sym__empty_value] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1082), + [sym__special_characters] = ACTIONS(1930), + [anon_sym_DQUOTE] = ACTIONS(1932), + [sym_raw_string] = ACTIONS(1934), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1942), + [anon_sym_LT_LPAREN] = ACTIONS(1944), + [anon_sym_GT_LPAREN] = ACTIONS(1944), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1946), + }, + [518] = { + [sym_variable_assignment] = STATE(70), + [sym_subscript] = STATE(213), + [aux_sym_declaration_command_repeat1] = STATE(518), + [sym_variable_name] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1105), + [anon_sym_RPAREN] = ACTIONS(1105), + [anon_sym_SEMI_SEMI] = ACTIONS(1105), + [anon_sym_PIPE_AMP] = ACTIONS(1105), + [anon_sym_AMP_AMP] = ACTIONS(1105), + [anon_sym_PIPE_PIPE] = ACTIONS(1105), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1107), + [sym_word] = ACTIONS(1110), + [anon_sym_SEMI] = ACTIONS(1105), + [anon_sym_LF] = ACTIONS(1105), + [anon_sym_AMP] = ACTIONS(1105), + }, + [519] = { + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1159), + [anon_sym_AMP_GT] = ACTIONS(1159), + [anon_sym_AMP_GT_GT] = ACTIONS(1159), + [anon_sym_LT_AMP] = ACTIONS(1159), + [anon_sym_GT_AMP] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_LT_LT_DASH] = ACTIONS(1159), + [anon_sym_LT_LT_LT] = ACTIONS(1159), + [sym__special_characters] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_raw_string] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), + [anon_sym_BQUOTE] = ACTIONS(1159), + [anon_sym_LT_LPAREN] = ACTIONS(1159), + [anon_sym_GT_LPAREN] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [520] = { + [aux_sym_concatenation_repeat1] = STATE(520), + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(1951), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1159), + [anon_sym_AMP_GT] = ACTIONS(1159), + [anon_sym_AMP_GT_GT] = ACTIONS(1159), + [anon_sym_LT_AMP] = ACTIONS(1159), + [anon_sym_GT_AMP] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_LT_LT_DASH] = ACTIONS(1159), + [anon_sym_LT_LT_LT] = ACTIONS(1159), + [sym__special_characters] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_raw_string] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), + [anon_sym_BQUOTE] = ACTIONS(1159), + [anon_sym_LT_LPAREN] = ACTIONS(1159), + [anon_sym_GT_LPAREN] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [521] = { + [sym_file_descriptor] = ACTIONS(1196), + [sym__concat] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1198), + [anon_sym_RPAREN] = ACTIONS(1198), + [anon_sym_SEMI_SEMI] = ACTIONS(1198), + [anon_sym_PIPE_AMP] = ACTIONS(1198), + [anon_sym_AMP_AMP] = ACTIONS(1198), + [anon_sym_PIPE_PIPE] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1198), + [anon_sym_GT_GT] = ACTIONS(1198), + [anon_sym_AMP_GT] = ACTIONS(1198), + [anon_sym_AMP_GT_GT] = ACTIONS(1198), + [anon_sym_LT_AMP] = ACTIONS(1198), + [anon_sym_GT_AMP] = ACTIONS(1198), + [anon_sym_LT_LT] = ACTIONS(1198), + [anon_sym_LT_LT_DASH] = ACTIONS(1198), + [anon_sym_LT_LT_LT] = ACTIONS(1198), + [sym__special_characters] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_raw_string] = ACTIONS(1198), + [anon_sym_DOLLAR] = ACTIONS(1198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), + [anon_sym_BQUOTE] = ACTIONS(1198), + [anon_sym_LT_LPAREN] = ACTIONS(1198), + [anon_sym_GT_LPAREN] = ACTIONS(1198), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + }, + [522] = { + [sym_concatenation] = STATE(926), + [sym_string] = STATE(925), + [sym_simple_expansion] = STATE(925), + [sym_expansion] = STATE(925), + [sym_command_substitution] = STATE(925), + [sym_process_substitution] = STATE(925), + [anon_sym_RBRACE] = ACTIONS(1954), + [sym__special_characters] = ACTIONS(1956), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(1958), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1960), + }, + [523] = { + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_RPAREN] = ACTIONS(1243), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1243), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1243), + [anon_sym_LT_LT_DASH] = ACTIONS(1243), + [anon_sym_LT_LT_LT] = ACTIONS(1243), + [sym__special_characters] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1243), + [sym_raw_string] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), + [anon_sym_LT_LPAREN] = ACTIONS(1243), + [anon_sym_GT_LPAREN] = ACTIONS(1243), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1243), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1243), + }, + [524] = { + [sym_concatenation] = STATE(930), + [sym_string] = STATE(929), + [sym_simple_expansion] = STATE(929), + [sym_expansion] = STATE(929), + [sym_command_substitution] = STATE(929), + [sym_process_substitution] = STATE(929), + [anon_sym_RBRACE] = ACTIONS(1962), + [sym__special_characters] = ACTIONS(1964), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(1966), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1968), }, [525] = { - [sym_for_statement] = STATE(832), - [sym_while_statement] = STATE(832), - [sym_if_statement] = STATE(832), - [sym_case_statement] = STATE(832), - [sym_function_definition] = STATE(832), - [sym_subshell] = STATE(832), - [sym_pipeline] = STATE(832), - [sym_list] = STATE(832), - [sym_command] = STATE(832), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(833), - [sym_declaration_command] = STATE(832), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), + [anon_sym_EQ] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), }, [526] = { - [aux_sym_concatenation_repeat1] = STATE(834), - [sym_file_descriptor] = ACTIONS(722), - [sym_word] = ACTIONS(722), - [sym__concat] = ACTIONS(1571), - [sym_variable_name] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(722), - [anon_sym_PIPE_AMP] = ACTIONS(722), - [anon_sym_AMP_AMP] = ACTIONS(722), - [anon_sym_PIPE_PIPE] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1589), - [anon_sym_GT_GT] = ACTIONS(722), - [anon_sym_AMP_GT] = ACTIONS(1589), - [anon_sym_AMP_GT_GT] = ACTIONS(722), - [anon_sym_LT_AMP] = ACTIONS(722), - [anon_sym_GT_AMP] = ACTIONS(722), - [anon_sym_DQUOTE] = ACTIONS(722), - [sym_raw_string] = ACTIONS(722), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(722), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(722), - [anon_sym_BQUOTE] = ACTIONS(722), - [anon_sym_LT_LPAREN] = ACTIONS(722), - [anon_sym_GT_LPAREN] = ACTIONS(722), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_EQ] = ACTIONS(1974), + [anon_sym_COLON] = ACTIONS(1976), + [anon_sym_COLON_QMARK] = ACTIONS(1974), + [anon_sym_COLON_DASH] = ACTIONS(1974), + [anon_sym_PERCENT] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [sym_comment] = ACTIONS(48), }, [527] = { - [sym_concatenation] = STATE(408), - [sym_string] = STATE(400), - [sym_simple_expansion] = STATE(400), - [sym_expansion] = STATE(400), - [sym_command_substitution] = STATE(400), - [sym_process_substitution] = STATE(400), - [aux_sym_for_statement_repeat1] = STATE(835), - [sym_word] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(746), - [sym_raw_string] = ACTIONS(744), - [anon_sym_DOLLAR] = ACTIONS(748), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(752), - [anon_sym_BQUOTE] = ACTIONS(754), - [anon_sym_LT_LPAREN] = ACTIONS(756), - [anon_sym_GT_LPAREN] = ACTIONS(756), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_EQ] = ACTIONS(1980), + [anon_sym_COLON] = ACTIONS(1982), + [anon_sym_COLON_QMARK] = ACTIONS(1980), + [anon_sym_COLON_DASH] = ACTIONS(1980), + [anon_sym_PERCENT] = ACTIONS(1980), + [anon_sym_SLASH] = ACTIONS(1980), + [anon_sym_DASH] = ACTIONS(1980), + [sym_comment] = ACTIONS(48), }, [528] = { - [sym__terminated_statement] = STATE(411), - [sym_for_statement] = STATE(412), - [sym_while_statement] = STATE(412), - [sym_if_statement] = STATE(412), - [sym_case_statement] = STATE(412), - [sym_function_definition] = STATE(412), - [sym_subshell] = STATE(412), - [sym_pipeline] = STATE(412), - [sym_list] = STATE(412), - [sym_command] = STATE(412), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(413), - [sym_declaration_command] = STATE(412), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(837), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(1591), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), + [anon_sym_RBRACE] = ACTIONS(1954), + [anon_sym_EQ] = ACTIONS(1970), + [anon_sym_COLON] = ACTIONS(1984), + [anon_sym_COLON_QMARK] = ACTIONS(1970), + [anon_sym_COLON_DASH] = ACTIONS(1970), + [anon_sym_PERCENT] = ACTIONS(1970), + [anon_sym_SLASH] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1970), + [sym_comment] = ACTIONS(48), }, [529] = { - [anon_sym_PIPE] = ACTIONS(1593), - [anon_sym_RPAREN] = ACTIONS(1595), - [anon_sym_PIPE_AMP] = ACTIONS(1595), - [anon_sym_AMP_AMP] = ACTIONS(1595), - [anon_sym_PIPE_PIPE] = ACTIONS(1595), - [anon_sym_BQUOTE] = ACTIONS(1595), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(1269), + [sym__concat] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_RPAREN] = ACTIONS(1271), + [anon_sym_SEMI_SEMI] = ACTIONS(1271), + [anon_sym_PIPE_AMP] = ACTIONS(1271), + [anon_sym_AMP_AMP] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_AMP_GT] = ACTIONS(1271), + [anon_sym_AMP_GT_GT] = ACTIONS(1271), + [anon_sym_LT_AMP] = ACTIONS(1271), + [anon_sym_GT_AMP] = ACTIONS(1271), + [anon_sym_LT_LT] = ACTIONS(1271), + [anon_sym_LT_LT_DASH] = ACTIONS(1271), + [anon_sym_LT_LT_LT] = ACTIONS(1271), + [sym__special_characters] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym_raw_string] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1271), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1271), + [anon_sym_LT_LPAREN] = ACTIONS(1271), + [anon_sym_GT_LPAREN] = ACTIONS(1271), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_LF] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), }, [530] = { - [sym__terminated_statement] = STATE(418), - [sym_for_statement] = STATE(419), - [sym_while_statement] = STATE(419), - [sym_if_statement] = STATE(419), - [sym_elif_clause] = STATE(420), - [sym_else_clause] = STATE(839), - [sym_case_statement] = STATE(419), - [sym_function_definition] = STATE(419), - [sym_subshell] = STATE(419), - [sym_pipeline] = STATE(419), - [sym_list] = STATE(419), - [sym_command] = STATE(419), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(422), - [sym_declaration_command] = STATE(419), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(840), - [aux_sym_if_statement_repeat1] = STATE(841), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(1597), - [anon_sym_elif] = ACTIONS(766), - [anon_sym_else] = ACTIONS(768), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), + [sym_concatenation] = STATE(939), + [sym_string] = STATE(938), + [sym_simple_expansion] = STATE(938), + [sym_expansion] = STATE(938), + [sym_command_substitution] = STATE(938), + [sym_process_substitution] = STATE(938), + [anon_sym_RBRACE] = ACTIONS(1986), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(1990), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1992), }, [531] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1599), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_LF] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1599), + [sym_file_descriptor] = ACTIONS(1281), + [sym__concat] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_RPAREN] = ACTIONS(1283), + [anon_sym_SEMI_SEMI] = ACTIONS(1283), + [anon_sym_PIPE_AMP] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1283), + [anon_sym_PIPE_PIPE] = ACTIONS(1283), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_AMP_GT] = ACTIONS(1283), + [anon_sym_AMP_GT_GT] = ACTIONS(1283), + [anon_sym_LT_AMP] = ACTIONS(1283), + [anon_sym_GT_AMP] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(1283), + [anon_sym_LT_LT_DASH] = ACTIONS(1283), + [anon_sym_LT_LT_LT] = ACTIONS(1283), + [sym__special_characters] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1283), + [sym_raw_string] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1283), + [anon_sym_BQUOTE] = ACTIONS(1283), + [anon_sym_LT_LPAREN] = ACTIONS(1283), + [anon_sym_GT_LPAREN] = ACTIONS(1283), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), }, [532] = { - [anon_sym_in] = ACTIONS(1601), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(1379), + [sym__concat] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_RPAREN] = ACTIONS(1381), + [anon_sym_SEMI_SEMI] = ACTIONS(1381), + [anon_sym_PIPE_AMP] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [anon_sym_PIPE_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(1381), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_GT_GT] = ACTIONS(1381), + [anon_sym_AMP_GT] = ACTIONS(1381), + [anon_sym_AMP_GT_GT] = ACTIONS(1381), + [anon_sym_LT_AMP] = ACTIONS(1381), + [anon_sym_GT_AMP] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1381), + [anon_sym_LT_LT_DASH] = ACTIONS(1381), + [anon_sym_LT_LT_LT] = ACTIONS(1381), + [sym__special_characters] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1381), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1381), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1381), + [anon_sym_BQUOTE] = ACTIONS(1381), + [anon_sym_LT_LPAREN] = ACTIONS(1381), + [anon_sym_GT_LPAREN] = ACTIONS(1381), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_LF] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), }, [533] = { + [sym_file_descriptor] = ACTIONS(1513), + [sym__concat] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_SEMI_SEMI] = ACTIONS(1515), + [anon_sym_PIPE_AMP] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE_PIPE] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1515), + [anon_sym_GT] = ACTIONS(1515), + [anon_sym_GT_GT] = ACTIONS(1515), + [anon_sym_AMP_GT] = ACTIONS(1515), + [anon_sym_AMP_GT_GT] = ACTIONS(1515), + [anon_sym_LT_AMP] = ACTIONS(1515), + [anon_sym_GT_AMP] = ACTIONS(1515), + [anon_sym_LT_LT] = ACTIONS(1515), + [anon_sym_LT_LT_DASH] = ACTIONS(1515), + [anon_sym_LT_LT_LT] = ACTIONS(1515), + [sym__special_characters] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [sym_raw_string] = ACTIONS(1515), + [anon_sym_DOLLAR] = ACTIONS(1515), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1515), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [anon_sym_LT_LPAREN] = ACTIONS(1515), + [anon_sym_GT_LPAREN] = ACTIONS(1515), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + }, + [534] = { + [sym_compound_statement] = STATE(940), + [anon_sym_LBRACE] = ACTIONS(372), + [sym_comment] = ACTIONS(48), + }, + [535] = { + [anon_sym_PIPE] = ACTIONS(1994), + [anon_sym_RPAREN] = ACTIONS(1994), + [anon_sym_SEMI_SEMI] = ACTIONS(1994), + [anon_sym_PIPE_AMP] = ACTIONS(1994), + [anon_sym_AMP_AMP] = ACTIONS(1994), + [anon_sym_PIPE_PIPE] = ACTIONS(1994), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_LF] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + }, + [536] = { + [anon_sym_PIPE] = ACTIONS(402), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_SEMI_SEMI] = ACTIONS(1519), + [anon_sym_PIPE_AMP] = ACTIONS(402), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_PIPE_PIPE] = ACTIONS(1519), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_LF] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1519), + }, + [537] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(402), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_SEMI_SEMI] = ACTIONS(1519), + [anon_sym_PIPE_AMP] = ACTIONS(402), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_PIPE_PIPE] = ACTIONS(1519), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_AMP_GT] = ACTIONS(274), + [anon_sym_AMP_GT_GT] = ACTIONS(274), + [anon_sym_LT_AMP] = ACTIONS(274), + [anon_sym_GT_AMP] = ACTIONS(274), + [sym__special_characters] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(274), + [sym_raw_string] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(274), + [anon_sym_BQUOTE] = ACTIONS(274), + [anon_sym_LT_LPAREN] = ACTIONS(274), + [anon_sym_GT_LPAREN] = ACTIONS(274), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_LF] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1519), + }, + [538] = { + [sym_concatenation] = STATE(733), + [sym_string] = STATE(942), + [sym_simple_expansion] = STATE(942), + [sym_expansion] = STATE(942), + [sym_command_substitution] = STATE(942), + [sym_process_substitution] = STATE(942), + [sym__special_characters] = ACTIONS(1996), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_raw_string] = ACTIONS(1998), + [anon_sym_DOLLAR] = ACTIONS(1058), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1060), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1062), + [anon_sym_BQUOTE] = ACTIONS(1064), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2000), + }, + [539] = { + [aux_sym_concatenation_repeat1] = STATE(944), + [sym_file_descriptor] = ACTIONS(446), + [sym__concat] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_RPAREN] = ACTIONS(1529), + [anon_sym_SEMI_SEMI] = ACTIONS(1529), + [anon_sym_PIPE_AMP] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1529), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_GT] = ACTIONS(1529), + [anon_sym_GT_GT] = ACTIONS(1529), + [anon_sym_AMP_GT] = ACTIONS(1529), + [anon_sym_AMP_GT_GT] = ACTIONS(1529), + [anon_sym_LT_AMP] = ACTIONS(1529), + [anon_sym_GT_AMP] = ACTIONS(1529), + [anon_sym_LT_LT] = ACTIONS(1529), + [anon_sym_LT_LT_DASH] = ACTIONS(1529), + [anon_sym_LT_LT_LT] = ACTIONS(1529), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1529), + [anon_sym_LF] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1529), + }, + [540] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(946), + [anon_sym_DQUOTE] = ACTIONS(2004), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [541] = { + [aux_sym_concatenation_repeat1] = STATE(944), + [sym_file_descriptor] = ACTIONS(454), + [sym__concat] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_RPAREN] = ACTIONS(1533), + [anon_sym_SEMI_SEMI] = ACTIONS(1533), + [anon_sym_PIPE_AMP] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1533), + [anon_sym_PIPE_PIPE] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(1533), + [anon_sym_GT] = ACTIONS(1533), + [anon_sym_GT_GT] = ACTIONS(1533), + [anon_sym_AMP_GT] = ACTIONS(1533), + [anon_sym_AMP_GT_GT] = ACTIONS(1533), + [anon_sym_LT_AMP] = ACTIONS(1533), + [anon_sym_GT_AMP] = ACTIONS(1533), + [anon_sym_LT_LT] = ACTIONS(1533), + [anon_sym_LT_LT_DASH] = ACTIONS(1533), + [anon_sym_LT_LT_LT] = ACTIONS(1533), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_LF] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + }, + [542] = { + [anon_sym_DOLLAR] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_AT] = ACTIONS(2006), + [anon_sym_QMARK] = ACTIONS(2006), + [anon_sym_0] = ACTIONS(2010), + [anon_sym__] = ACTIONS(2010), + }, + [543] = { + [sym_subscript] = STATE(953), + [sym_variable_name] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_POUND] = ACTIONS(2016), + [anon_sym_DASH] = ACTIONS(2014), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2018), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_AT] = ACTIONS(2014), + [anon_sym_QMARK] = ACTIONS(2014), + [anon_sym_0] = ACTIONS(2020), + [anon_sym__] = ACTIONS(2020), + }, + [544] = { + [sym_for_statement] = STATE(954), + [sym_while_statement] = STATE(954), + [sym_if_statement] = STATE(954), + [sym_case_statement] = STATE(954), + [sym_function_definition] = STATE(954), + [sym_subshell] = STATE(954), + [sym_pipeline] = STATE(954), + [sym_list] = STATE(954), + [sym_command] = STATE(954), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(955), + [sym_declaration_command] = STATE(954), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [545] = { + [sym_for_statement] = STATE(956), + [sym_while_statement] = STATE(956), + [sym_if_statement] = STATE(956), + [sym_case_statement] = STATE(956), + [sym_function_definition] = STATE(956), + [sym_subshell] = STATE(956), + [sym_pipeline] = STATE(956), + [sym_list] = STATE(956), + [sym_command] = STATE(956), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(957), + [sym_declaration_command] = STATE(956), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), + }, + [546] = { + [sym_for_statement] = STATE(958), + [sym_while_statement] = STATE(958), + [sym_if_statement] = STATE(958), + [sym_case_statement] = STATE(958), + [sym_function_definition] = STATE(958), + [sym_subshell] = STATE(958), + [sym_pipeline] = STATE(958), + [sym_list] = STATE(958), + [sym_command] = STATE(958), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(959), + [sym_declaration_command] = STATE(958), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [547] = { + [aux_sym_concatenation_repeat1] = STATE(944), + [sym_file_descriptor] = ACTIONS(1567), + [sym__concat] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(1569), + [anon_sym_SEMI_SEMI] = ACTIONS(1569), + [anon_sym_PIPE_AMP] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1569), + [anon_sym_PIPE_PIPE] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_GT_GT] = ACTIONS(1569), + [anon_sym_AMP_GT] = ACTIONS(1569), + [anon_sym_AMP_GT_GT] = ACTIONS(1569), + [anon_sym_LT_AMP] = ACTIONS(1569), + [anon_sym_GT_AMP] = ACTIONS(1569), + [anon_sym_LT_LT] = ACTIONS(1569), + [anon_sym_LT_LT_DASH] = ACTIONS(1569), + [anon_sym_LT_LT_LT] = ACTIONS(1569), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1569), + [anon_sym_LF] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1569), + }, + [548] = { + [aux_sym_concatenation_repeat1] = STATE(944), + [sym_file_descriptor] = ACTIONS(1571), + [sym__concat] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(1573), + [anon_sym_SEMI_SEMI] = ACTIONS(1573), + [anon_sym_PIPE_AMP] = ACTIONS(1573), + [anon_sym_AMP_AMP] = ACTIONS(1573), + [anon_sym_PIPE_PIPE] = ACTIONS(1573), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_AMP_GT] = ACTIONS(1573), + [anon_sym_AMP_GT_GT] = ACTIONS(1573), + [anon_sym_LT_AMP] = ACTIONS(1573), + [anon_sym_GT_AMP] = ACTIONS(1573), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_LT_LT_DASH] = ACTIONS(1573), + [anon_sym_LT_LT_LT] = ACTIONS(1573), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_LF] = ACTIONS(1573), + [anon_sym_AMP] = ACTIONS(1573), + }, + [549] = { + [sym_concatenation] = STATE(151), + [sym_string] = STATE(241), + [sym_simple_expansion] = STATE(241), + [sym_expansion] = STATE(241), + [sym_command_substitution] = STATE(241), + [sym_process_substitution] = STATE(241), + [aux_sym_for_statement_repeat1] = STATE(549), + [sym_file_descriptor] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(1577), + [anon_sym_SEMI_SEMI] = ACTIONS(1577), + [anon_sym_PIPE_AMP] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1577), + [anon_sym_PIPE_PIPE] = ACTIONS(1577), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_GT_GT] = ACTIONS(1577), + [anon_sym_AMP_GT] = ACTIONS(1577), + [anon_sym_AMP_GT_GT] = ACTIONS(1577), + [anon_sym_LT_AMP] = ACTIONS(1577), + [anon_sym_GT_AMP] = ACTIONS(1577), + [anon_sym_LT_LT] = ACTIONS(1577), + [anon_sym_LT_LT_DASH] = ACTIONS(1577), + [anon_sym_LT_LT_LT] = ACTIONS(1577), + [sym__special_characters] = ACTIONS(2022), + [anon_sym_DQUOTE] = ACTIONS(2025), + [sym_raw_string] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2037), + [anon_sym_BQUOTE] = ACTIONS(2040), + [anon_sym_LT_LPAREN] = ACTIONS(2043), + [anon_sym_GT_LPAREN] = ACTIONS(2043), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(1577), + [anon_sym_LF] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1577), + }, + [550] = { + [sym_file_redirect] = STATE(150), + [sym_heredoc_redirect] = STATE(150), + [sym_herestring_redirect] = STATE(150), + [aux_sym_command_repeat2] = STATE(551), + [sym_file_descriptor] = ACTIONS(410), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(1603), [anon_sym_SEMI_SEMI] = ACTIONS(1603), - [sym_comment] = ACTIONS(60), + [anon_sym_PIPE_AMP] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(1603), + [anon_sym_PIPE_PIPE] = ACTIONS(1603), + [anon_sym_LT] = ACTIONS(412), + [anon_sym_GT] = ACTIONS(412), + [anon_sym_GT_GT] = ACTIONS(412), + [anon_sym_AMP_GT] = ACTIONS(412), + [anon_sym_AMP_GT_GT] = ACTIONS(412), + [anon_sym_LT_AMP] = ACTIONS(412), + [anon_sym_GT_AMP] = ACTIONS(412), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(414), + [sym_comment] = ACTIONS(110), [anon_sym_SEMI] = ACTIONS(1603), [anon_sym_LF] = ACTIONS(1603), [anon_sym_AMP] = ACTIONS(1603), }, - [534] = { - [anon_sym_in] = ACTIONS(1605), - [sym_comment] = ACTIONS(46), - }, - [535] = { - [anon_sym_RPAREN] = ACTIONS(1607), - [sym_comment] = ACTIONS(46), - }, - [536] = { - [sym__terminated_statement] = STATE(21), - [sym_for_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_function_definition] = STATE(22), - [sym_subshell] = STATE(22), - [sym_pipeline] = STATE(22), - [sym_list] = STATE(22), - [sym_command] = STATE(22), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(24), - [sym_declaration_command] = STATE(22), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(848), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(1609), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), - }, - [537] = { - [sym_file_redirect] = STATE(851), - [sym_file_descriptor] = ACTIONS(1611), - [anon_sym_PIPE] = ACTIONS(1613), - [anon_sym_RPAREN] = ACTIONS(1615), - [anon_sym_PIPE_AMP] = ACTIONS(1615), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_PIPE_PIPE] = ACTIONS(1615), - [anon_sym_LT] = ACTIONS(1617), - [anon_sym_GT] = ACTIONS(1617), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_AMP_GT] = ACTIONS(1617), - [anon_sym_AMP_GT_GT] = ACTIONS(1619), - [anon_sym_LT_AMP] = ACTIONS(1619), - [anon_sym_GT_AMP] = ACTIONS(1619), - [sym_comment] = ACTIONS(46), - }, - [538] = { - [anon_sym_PIPE] = ACTIONS(1621), - [anon_sym_RPAREN] = ACTIONS(1623), - [anon_sym_PIPE_AMP] = ACTIONS(1623), - [anon_sym_AMP_AMP] = ACTIONS(1623), - [anon_sym_PIPE_PIPE] = ACTIONS(1623), - [anon_sym_BQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(46), - }, - [539] = { - [sym_file_descriptor] = ACTIONS(546), - [sym_word] = ACTIONS(546), - [sym_variable_name] = ACTIONS(546), - [anon_sym_for] = ACTIONS(548), - [anon_sym_while] = ACTIONS(548), - [anon_sym_if] = ACTIONS(548), - [anon_sym_case] = ACTIONS(548), - [anon_sym_RPAREN] = ACTIONS(1625), - [anon_sym_function] = ACTIONS(548), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_typeset] = ACTIONS(548), - [anon_sym_export] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(548), - [anon_sym_local] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_GT] = ACTIONS(548), - [anon_sym_GT_GT] = ACTIONS(546), - [anon_sym_AMP_GT] = ACTIONS(548), - [anon_sym_AMP_GT_GT] = ACTIONS(546), - [anon_sym_LT_AMP] = ACTIONS(546), - [anon_sym_GT_AMP] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(546), - [sym_raw_string] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(546), - [anon_sym_BQUOTE] = ACTIONS(546), - [anon_sym_LT_LPAREN] = ACTIONS(546), - [anon_sym_GT_LPAREN] = ACTIONS(546), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(550), - }, - [540] = { - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_RPAREN] = ACTIONS(1627), - [anon_sym_SEMI_SEMI] = ACTIONS(1629), - [anon_sym_PIPE_AMP] = ACTIONS(340), - [anon_sym_AMP_AMP] = ACTIONS(346), - [anon_sym_PIPE_PIPE] = ACTIONS(346), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_LF] = ACTIONS(1629), - [anon_sym_AMP] = ACTIONS(1629), - }, - [541] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(340), - [anon_sym_RPAREN] = ACTIONS(1627), - [anon_sym_SEMI_SEMI] = ACTIONS(1629), - [anon_sym_PIPE_AMP] = ACTIONS(340), - [anon_sym_AMP_AMP] = ACTIONS(346), - [anon_sym_PIPE_PIPE] = ACTIONS(346), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(236), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(236), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_LF] = ACTIONS(1629), - [anon_sym_AMP] = ACTIONS(1629), - }, - [542] = { - [sym_concatenation] = STATE(855), - [sym_string] = STATE(854), - [sym_array] = STATE(855), - [sym_simple_expansion] = STATE(854), - [sym_expansion] = STATE(854), - [sym_command_substitution] = STATE(854), - [sym_process_substitution] = STATE(854), - [sym_word] = ACTIONS(1631), - [sym__empty_value] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_DQUOTE] = ACTIONS(1637), - [sym_raw_string] = ACTIONS(1631), - [anon_sym_DOLLAR] = ACTIONS(1639), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1641), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1643), - [anon_sym_BQUOTE] = ACTIONS(1645), - [anon_sym_LT_LPAREN] = ACTIONS(1647), - [anon_sym_GT_LPAREN] = ACTIONS(1647), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1649), - }, - [543] = { - [sym_word] = ACTIONS(294), - [sym_variable_name] = ACTIONS(294), - [anon_sym_PIPE] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(294), - [anon_sym_PIPE_AMP] = ACTIONS(294), - [anon_sym_AMP_AMP] = ACTIONS(294), - [anon_sym_PIPE_PIPE] = ACTIONS(294), - [anon_sym_BQUOTE] = ACTIONS(294), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1006), - }, - [544] = { - [sym_variable_assignment] = STATE(275), - [sym_subscript] = STATE(278), - [aux_sym_declaration_command_repeat1] = STATE(544), - [sym_word] = ACTIONS(1651), - [sym_variable_name] = ACTIONS(1654), - [anon_sym_PIPE] = ACTIONS(1657), - [anon_sym_RPAREN] = ACTIONS(1659), - [anon_sym_PIPE_AMP] = ACTIONS(1659), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE_PIPE] = ACTIONS(1659), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1661), - }, - [545] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_word] = ACTIONS(931), - [sym__concat] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_PIPE_AMP] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(1478), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_LT_LT_DASH] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(1478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1478), - }, - [546] = { - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_LBRACK] = ACTIONS(1666), - [sym_comment] = ACTIONS(46), - }, - [547] = { - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_comment] = ACTIONS(46), - }, - [548] = { - [sym_file_descriptor] = ACTIONS(960), - [sym_word] = ACTIONS(960), - [sym__concat] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_PIPE_AMP] = ACTIONS(960), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), - [anon_sym_LT] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1488), - [anon_sym_GT_GT] = ACTIONS(960), - [anon_sym_AMP_GT] = ACTIONS(1488), - [anon_sym_AMP_GT_GT] = ACTIONS(960), - [anon_sym_LT_AMP] = ACTIONS(960), - [anon_sym_GT_AMP] = ACTIONS(960), - [anon_sym_LT_LT] = ACTIONS(1488), - [anon_sym_LT_LT_DASH] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(1488), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(960), - [anon_sym_BQUOTE] = ACTIONS(960), - [anon_sym_LT_LPAREN] = ACTIONS(960), - [anon_sym_GT_LPAREN] = ACTIONS(960), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1488), - }, - [549] = { - [sym_concatenation] = STATE(871), - [sym_string] = STATE(868), - [sym_simple_expansion] = STATE(868), - [sym_expansion] = STATE(868), - [sym_command_substitution] = STATE(868), - [sym_process_substitution] = STATE(868), - [sym_word] = ACTIONS(1672), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1672), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1676), - }, - [550] = { - [anon_sym_AT] = ACTIONS(1678), - [sym_comment] = ACTIONS(46), - }, [551] = { - [sym_file_descriptor] = ACTIONS(972), - [sym_word] = ACTIONS(972), - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_RPAREN] = ACTIONS(972), - [anon_sym_PIPE_AMP] = ACTIONS(972), - [anon_sym_AMP_AMP] = ACTIONS(972), - [anon_sym_PIPE_PIPE] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(1498), - [anon_sym_GT] = ACTIONS(1498), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_AMP_GT] = ACTIONS(1498), - [anon_sym_AMP_GT_GT] = ACTIONS(972), - [anon_sym_LT_AMP] = ACTIONS(972), - [anon_sym_GT_AMP] = ACTIONS(972), - [anon_sym_LT_LT] = ACTIONS(1498), - [anon_sym_LT_LT_DASH] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym_raw_string] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(1498), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), - [anon_sym_BQUOTE] = ACTIONS(972), - [anon_sym_LT_LPAREN] = ACTIONS(972), - [anon_sym_GT_LPAREN] = ACTIONS(972), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1498), + [sym_file_redirect] = STATE(150), + [sym_heredoc_redirect] = STATE(150), + [sym_herestring_redirect] = STATE(150), + [aux_sym_command_repeat2] = STATE(551), + [sym_file_descriptor] = ACTIONS(2046), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_RPAREN] = ACTIONS(1608), + [anon_sym_SEMI_SEMI] = ACTIONS(1608), + [anon_sym_PIPE_AMP] = ACTIONS(1608), + [anon_sym_AMP_AMP] = ACTIONS(1608), + [anon_sym_PIPE_PIPE] = ACTIONS(1608), + [anon_sym_LT] = ACTIONS(2049), + [anon_sym_GT] = ACTIONS(2049), + [anon_sym_GT_GT] = ACTIONS(2049), + [anon_sym_AMP_GT] = ACTIONS(2049), + [anon_sym_AMP_GT_GT] = ACTIONS(2049), + [anon_sym_LT_AMP] = ACTIONS(2049), + [anon_sym_GT_AMP] = ACTIONS(2049), + [anon_sym_LT_LT] = ACTIONS(1613), + [anon_sym_LT_LT_DASH] = ACTIONS(1613), + [anon_sym_LT_LT_LT] = ACTIONS(2052), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_LF] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), }, [552] = { - [sym_concatenation] = STATE(875), - [sym_string] = STATE(873), - [sym_simple_expansion] = STATE(873), - [sym_expansion] = STATE(873), - [sym_command_substitution] = STATE(873), - [sym_process_substitution] = STATE(873), - [sym_word] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1682), + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(684), + [anon_sym_for] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_case] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(2055), + [anon_sym_function] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_declare] = ACTIONS(686), + [anon_sym_typeset] = ACTIONS(686), + [anon_sym_export] = ACTIONS(686), + [anon_sym_readonly] = ACTIONS(686), + [anon_sym_local] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(684), + [anon_sym_AMP_GT] = ACTIONS(686), + [anon_sym_AMP_GT_GT] = ACTIONS(684), + [anon_sym_LT_AMP] = ACTIONS(684), + [anon_sym_GT_AMP] = ACTIONS(684), + [sym__special_characters] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(684), + [sym_raw_string] = ACTIONS(684), + [anon_sym_DOLLAR] = ACTIONS(686), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(684), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(684), + [anon_sym_BQUOTE] = ACTIONS(684), + [anon_sym_LT_LPAREN] = ACTIONS(684), + [anon_sym_GT_LPAREN] = ACTIONS(684), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(688), }, [553] = { - [anon_sym_AT] = ACTIONS(1684), - [sym_comment] = ACTIONS(46), + [sym_file_redirect] = STATE(150), + [sym_heredoc_redirect] = STATE(150), + [sym_herestring_redirect] = STATE(150), + [sym_concatenation] = STATE(151), + [sym_string] = STATE(241), + [sym_simple_expansion] = STATE(241), + [sym_expansion] = STATE(241), + [sym_command_substitution] = STATE(241), + [sym_process_substitution] = STATE(241), + [aux_sym_for_statement_repeat1] = STATE(549), + [aux_sym_command_repeat2] = STATE(961), + [sym_file_descriptor] = ACTIONS(410), + [anon_sym_PIPE] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(1603), + [anon_sym_SEMI_SEMI] = ACTIONS(1603), + [anon_sym_PIPE_AMP] = ACTIONS(1603), + [anon_sym_AMP_AMP] = ACTIONS(1603), + [anon_sym_PIPE_PIPE] = ACTIONS(1603), + [anon_sym_LT] = ACTIONS(412), + [anon_sym_GT] = ACTIONS(412), + [anon_sym_GT_GT] = ACTIONS(412), + [anon_sym_AMP_GT] = ACTIONS(412), + [anon_sym_AMP_GT_GT] = ACTIONS(412), + [anon_sym_LT_AMP] = ACTIONS(412), + [anon_sym_GT_AMP] = ACTIONS(412), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(414), + [sym__special_characters] = ACTIONS(416), + [anon_sym_DQUOTE] = ACTIONS(418), + [sym_raw_string] = ACTIONS(420), + [anon_sym_DOLLAR] = ACTIONS(422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(426), + [anon_sym_BQUOTE] = ACTIONS(428), + [anon_sym_LT_LPAREN] = ACTIONS(430), + [anon_sym_GT_LPAREN] = ACTIONS(430), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(420), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_LF] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1603), }, [554] = { - [sym_file_descriptor] = ACTIONS(1066), - [sym_word] = ACTIONS(1066), - [sym__concat] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1066), - [anon_sym_PIPE_AMP] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(1066), - [anon_sym_AMP_GT] = ACTIONS(1506), - [anon_sym_AMP_GT_GT] = ACTIONS(1066), - [anon_sym_LT_AMP] = ACTIONS(1066), - [anon_sym_GT_AMP] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1506), - [anon_sym_LT_LT_DASH] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_raw_string] = ACTIONS(1066), - [anon_sym_DOLLAR] = ACTIONS(1506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1066), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1066), - [anon_sym_BQUOTE] = ACTIONS(1066), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1506), + [sym_variable_name] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(826), + [sym_word] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [555] = { - [sym_file_descriptor] = ACTIONS(1122), - [sym_word] = ACTIONS(1122), - [sym__concat] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_RPAREN] = ACTIONS(1122), - [anon_sym_PIPE_AMP] = ACTIONS(1122), - [anon_sym_AMP_AMP] = ACTIONS(1122), - [anon_sym_PIPE_PIPE] = ACTIONS(1122), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_GT_GT] = ACTIONS(1122), - [anon_sym_AMP_GT] = ACTIONS(1508), - [anon_sym_AMP_GT_GT] = ACTIONS(1122), - [anon_sym_LT_AMP] = ACTIONS(1122), - [anon_sym_GT_AMP] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1508), - [anon_sym_LT_LT_DASH] = ACTIONS(1122), - [anon_sym_DQUOTE] = ACTIONS(1122), - [sym_raw_string] = ACTIONS(1122), - [anon_sym_DOLLAR] = ACTIONS(1508), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1122), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1122), - [anon_sym_LT_LPAREN] = ACTIONS(1122), - [anon_sym_GT_LPAREN] = ACTIONS(1122), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1508), + [sym_concatenation] = STATE(414), + [sym_string] = STATE(408), + [sym_simple_expansion] = STATE(408), + [sym_expansion] = STATE(408), + [sym_command_substitution] = STATE(408), + [sym_process_substitution] = STATE(408), + [aux_sym_for_statement_repeat1] = STATE(963), + [anon_sym_RPAREN] = ACTIONS(2057), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(846), }, [556] = { - [sym_compound_statement] = STATE(877), - [anon_sym_LBRACE] = ACTIONS(1024), - [sym_comment] = ACTIONS(46), + [aux_sym_concatenation_repeat1] = STATE(965), + [sym__concat] = ACTIONS(2059), + [sym_variable_name] = ACTIONS(848), + [anon_sym_PIPE] = ACTIONS(852), + [anon_sym_SEMI_SEMI] = ACTIONS(852), + [anon_sym_PIPE_AMP] = ACTIONS(852), + [anon_sym_AMP_AMP] = ACTIONS(852), + [anon_sym_PIPE_PIPE] = ACTIONS(852), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(852), + [sym_word] = ACTIONS(852), + [anon_sym_SEMI] = ACTIONS(852), + [anon_sym_LF] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(852), }, [557] = { - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_RPAREN] = ACTIONS(1688), - [anon_sym_PIPE_AMP] = ACTIONS(1688), - [anon_sym_AMP_AMP] = ACTIONS(1688), - [anon_sym_PIPE_PIPE] = ACTIONS(1688), - [anon_sym_BQUOTE] = ACTIONS(1688), - [sym_comment] = ACTIONS(46), + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(967), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), }, [558] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_RPAREN] = ACTIONS(1688), - [anon_sym_PIPE_AMP] = ACTIONS(1688), - [anon_sym_AMP_AMP] = ACTIONS(1688), - [anon_sym_PIPE_PIPE] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), + [aux_sym_concatenation_repeat1] = STATE(965), + [sym__concat] = ACTIONS(2059), + [sym_variable_name] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(826), + [sym_word] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), }, [559] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1690), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(1690), - [anon_sym_PIPE_PIPE] = ACTIONS(1690), - [sym_comment] = ACTIONS(46), + [anon_sym_DOLLAR] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2063), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2063), + [anon_sym_AT] = ACTIONS(2063), + [anon_sym_QMARK] = ACTIONS(2063), + [anon_sym_0] = ACTIONS(2067), + [anon_sym__] = ACTIONS(2067), }, [560] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1690), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(1690), - [anon_sym_PIPE_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), + [sym_subscript] = STATE(974), + [sym_variable_name] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2071), + [anon_sym_POUND] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2071), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2075), + [anon_sym_STAR] = ACTIONS(2071), + [anon_sym_AT] = ACTIONS(2071), + [anon_sym_QMARK] = ACTIONS(2071), + [anon_sym_0] = ACTIONS(2077), + [anon_sym__] = ACTIONS(2077), }, [561] = { - [sym_concatenation] = STATE(880), - [sym_string] = STATE(878), - [sym_simple_expansion] = STATE(878), - [sym_expansion] = STATE(878), - [sym_command_substitution] = STATE(878), - [sym_process_substitution] = STATE(878), - [sym_word] = ACTIONS(1692), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym_raw_string] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1082), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1084), - [anon_sym_BQUOTE] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(1088), - [anon_sym_GT_LPAREN] = ACTIONS(1088), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1694), + [sym_for_statement] = STATE(975), + [sym_while_statement] = STATE(975), + [sym_if_statement] = STATE(975), + [sym_case_statement] = STATE(975), + [sym_function_definition] = STATE(975), + [sym_subshell] = STATE(975), + [sym_pipeline] = STATE(975), + [sym_list] = STATE(975), + [sym_command] = STATE(975), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(976), + [sym_declaration_command] = STATE(975), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, [562] = { - [aux_sym_concatenation_repeat1] = STATE(882), - [sym_file_descriptor] = ACTIONS(372), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(372), - [anon_sym_PIPE_AMP] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_GT_GT] = ACTIONS(372), - [anon_sym_AMP_GT] = ACTIONS(376), - [anon_sym_AMP_GT_GT] = ACTIONS(372), - [anon_sym_LT_AMP] = ACTIONS(372), - [anon_sym_GT_AMP] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(376), - [anon_sym_LT_LT_DASH] = ACTIONS(372), - [sym_comment] = ACTIONS(46), + [sym_for_statement] = STATE(977), + [sym_while_statement] = STATE(977), + [sym_if_statement] = STATE(977), + [sym_case_statement] = STATE(977), + [sym_function_definition] = STATE(977), + [sym_subshell] = STATE(977), + [sym_pipeline] = STATE(977), + [sym_list] = STATE(977), + [sym_command] = STATE(977), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(978), + [sym_declaration_command] = STATE(977), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), }, [563] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(884), - [anon_sym_DQUOTE] = ACTIONS(1698), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), + [sym_for_statement] = STATE(979), + [sym_while_statement] = STATE(979), + [sym_if_statement] = STATE(979), + [sym_case_statement] = STATE(979), + [sym_function_definition] = STATE(979), + [sym_subshell] = STATE(979), + [sym_pipeline] = STATE(979), + [sym_list] = STATE(979), + [sym_command] = STATE(979), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(980), + [sym_declaration_command] = STATE(979), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, [564] = { - [sym_special_variable_name] = STATE(887), - [anon_sym_DOLLAR] = ACTIONS(1700), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_AT] = ACTIONS(1700), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1702), - [anon_sym_STAR] = ACTIONS(1700), - [anon_sym_QMARK] = ACTIONS(1700), - [anon_sym_DASH] = ACTIONS(1700), - [anon_sym_BANG] = ACTIONS(1700), - [anon_sym_0] = ACTIONS(1704), - [anon_sym__] = ACTIONS(1704), + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(1157), + [sym_variable_name] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_GT_GT] = ACTIONS(1157), + [anon_sym_AMP_GT] = ACTIONS(2079), + [anon_sym_AMP_GT_GT] = ACTIONS(1157), + [anon_sym_LT_AMP] = ACTIONS(1157), + [anon_sym_GT_AMP] = ACTIONS(1157), + [sym__special_characters] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_raw_string] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(2079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1157), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(1157), + [anon_sym_LT_LPAREN] = ACTIONS(1157), + [anon_sym_GT_LPAREN] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2079), }, [565] = { - [sym_special_variable_name] = STATE(890), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(1706), - [anon_sym_AT] = ACTIONS(138), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1708), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), + [aux_sym_concatenation_repeat1] = STATE(565), + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(2081), + [sym_variable_name] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_GT_GT] = ACTIONS(1157), + [anon_sym_AMP_GT] = ACTIONS(2079), + [anon_sym_AMP_GT_GT] = ACTIONS(1157), + [anon_sym_LT_AMP] = ACTIONS(1157), + [anon_sym_GT_AMP] = ACTIONS(1157), + [sym__special_characters] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_raw_string] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(2079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1157), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(1157), + [anon_sym_LT_LPAREN] = ACTIONS(1157), + [anon_sym_GT_LPAREN] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2079), }, [566] = { - [sym_for_statement] = STATE(891), - [sym_while_statement] = STATE(891), - [sym_if_statement] = STATE(891), - [sym_case_statement] = STATE(891), - [sym_function_definition] = STATE(891), - [sym_subshell] = STATE(891), - [sym_pipeline] = STATE(891), - [sym_list] = STATE(891), - [sym_command] = STATE(891), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(892), - [sym_declaration_command] = STATE(891), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), + [sym_file_descriptor] = ACTIONS(1196), + [sym__concat] = ACTIONS(1196), + [sym_variable_name] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(2084), + [anon_sym_GT] = ACTIONS(2084), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_AMP_GT] = ACTIONS(2084), + [anon_sym_AMP_GT_GT] = ACTIONS(1196), + [anon_sym_LT_AMP] = ACTIONS(1196), + [anon_sym_GT_AMP] = ACTIONS(1196), + [sym__special_characters] = ACTIONS(2084), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_raw_string] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [anon_sym_LT_LPAREN] = ACTIONS(1196), + [anon_sym_GT_LPAREN] = ACTIONS(1196), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2084), }, [567] = { - [sym_for_statement] = STATE(893), - [sym_while_statement] = STATE(893), - [sym_if_statement] = STATE(893), - [sym_case_statement] = STATE(893), - [sym_function_definition] = STATE(893), - [sym_subshell] = STATE(893), - [sym_pipeline] = STATE(893), - [sym_list] = STATE(893), - [sym_command] = STATE(893), - [sym_command_name] = STATE(118), - [sym_variable_assignment] = STATE(894), - [sym_declaration_command] = STATE(893), - [sym_subscript] = STATE(120), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_command_repeat1] = STATE(121), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(178), - [sym_variable_name] = ACTIONS(180), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(184), - [anon_sym_typeset] = ACTIONS(184), - [anon_sym_export] = ACTIONS(184), - [anon_sym_readonly] = ACTIONS(184), - [anon_sym_local] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(178), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(186), + [sym_concatenation] = STATE(984), + [sym_string] = STATE(983), + [sym_simple_expansion] = STATE(983), + [sym_expansion] = STATE(983), + [sym_command_substitution] = STATE(983), + [sym_process_substitution] = STATE(983), + [anon_sym_RBRACE] = ACTIONS(2086), + [sym__special_characters] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(2090), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2092), }, [568] = { - [sym_for_statement] = STATE(895), - [sym_while_statement] = STATE(895), - [sym_if_statement] = STATE(895), - [sym_case_statement] = STATE(895), - [sym_function_definition] = STATE(895), - [sym_subshell] = STATE(895), - [sym_pipeline] = STATE(895), - [sym_list] = STATE(895), - [sym_command] = STATE(895), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(896), - [sym_declaration_command] = STATE(895), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(1241), + [sym_variable_name] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(2094), + [anon_sym_GT] = ACTIONS(2094), + [anon_sym_GT_GT] = ACTIONS(1241), + [anon_sym_AMP_GT] = ACTIONS(2094), + [anon_sym_AMP_GT_GT] = ACTIONS(1241), + [anon_sym_LT_AMP] = ACTIONS(1241), + [anon_sym_GT_AMP] = ACTIONS(1241), + [sym__special_characters] = ACTIONS(2094), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_raw_string] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(2094), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1241), + [anon_sym_BQUOTE] = ACTIONS(1241), + [anon_sym_LT_LPAREN] = ACTIONS(1241), + [anon_sym_GT_LPAREN] = ACTIONS(1241), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2094), }, [569] = { - [aux_sym_concatenation_repeat1] = STATE(897), - [sym_file_descriptor] = ACTIONS(390), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_RPAREN] = ACTIONS(390), - [anon_sym_PIPE_AMP] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(390), - [anon_sym_PIPE_PIPE] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(392), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_AMP_GT] = ACTIONS(392), - [anon_sym_AMP_GT_GT] = ACTIONS(390), - [anon_sym_LT_AMP] = ACTIONS(390), - [anon_sym_GT_AMP] = ACTIONS(390), - [anon_sym_LT_LT] = ACTIONS(392), - [anon_sym_LT_LT_DASH] = ACTIONS(390), - [sym_comment] = ACTIONS(46), + [sym_concatenation] = STATE(988), + [sym_string] = STATE(987), + [sym_simple_expansion] = STATE(987), + [sym_expansion] = STATE(987), + [sym_command_substitution] = STATE(987), + [sym_process_substitution] = STATE(987), + [anon_sym_RBRACE] = ACTIONS(2096), + [sym__special_characters] = ACTIONS(2098), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(2100), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2102), }, [570] = { - [sym_file_descriptor] = ACTIONS(372), - [anon_sym_PIPE] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(372), - [anon_sym_PIPE_AMP] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_GT_GT] = ACTIONS(372), - [anon_sym_AMP_GT] = ACTIONS(376), - [anon_sym_AMP_GT_GT] = ACTIONS(372), - [anon_sym_LT_AMP] = ACTIONS(372), - [anon_sym_GT_AMP] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(376), - [anon_sym_LT_LT_DASH] = ACTIONS(372), - [anon_sym_BQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(46), + [anon_sym_EQ] = ACTIONS(2104), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), }, [571] = { - [sym_file_descriptor] = ACTIONS(1152), - [anon_sym_PIPE] = ACTIONS(1710), - [anon_sym_RPAREN] = ACTIONS(1152), - [anon_sym_PIPE_AMP] = ACTIONS(1152), - [anon_sym_AMP_AMP] = ACTIONS(1152), - [anon_sym_PIPE_PIPE] = ACTIONS(1152), - [anon_sym_LT] = ACTIONS(1710), - [anon_sym_GT] = ACTIONS(1710), - [anon_sym_GT_GT] = ACTIONS(1152), - [anon_sym_AMP_GT] = ACTIONS(1710), - [anon_sym_AMP_GT_GT] = ACTIONS(1152), - [anon_sym_LT_AMP] = ACTIONS(1152), - [anon_sym_GT_AMP] = ACTIONS(1152), - [anon_sym_LT_LT] = ACTIONS(1710), - [anon_sym_LT_LT_DASH] = ACTIONS(1152), - [anon_sym_BQUOTE] = ACTIONS(1152), - [sym_comment] = ACTIONS(46), + [anon_sym_RBRACE] = ACTIONS(2106), + [anon_sym_EQ] = ACTIONS(2108), + [anon_sym_COLON] = ACTIONS(2110), + [anon_sym_COLON_QMARK] = ACTIONS(2108), + [anon_sym_COLON_DASH] = ACTIONS(2108), + [anon_sym_PERCENT] = ACTIONS(2108), + [anon_sym_SLASH] = ACTIONS(2108), + [anon_sym_DASH] = ACTIONS(2108), + [sym_comment] = ACTIONS(48), }, [572] = { - [sym_simple_expansion] = STATE(617), - [sym_expansion] = STATE(617), - [aux_sym_heredoc_repeat1] = STATE(899), - [sym__heredoc_middle] = ACTIONS(1156), - [sym__heredoc_end] = ACTIONS(1712), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1162), - [sym_comment] = ACTIONS(46), + [anon_sym_RBRACE] = ACTIONS(2112), + [anon_sym_EQ] = ACTIONS(2114), + [anon_sym_COLON] = ACTIONS(2116), + [anon_sym_COLON_QMARK] = ACTIONS(2114), + [anon_sym_COLON_DASH] = ACTIONS(2114), + [anon_sym_PERCENT] = ACTIONS(2114), + [anon_sym_SLASH] = ACTIONS(2114), + [anon_sym_DASH] = ACTIONS(2114), + [sym_comment] = ACTIONS(48), }, [573] = { - [sym_file_descriptor] = ACTIONS(1164), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_RPAREN] = ACTIONS(1164), - [anon_sym_PIPE_AMP] = ACTIONS(1164), - [anon_sym_AMP_AMP] = ACTIONS(1164), - [anon_sym_PIPE_PIPE] = ACTIONS(1164), - [anon_sym_LT] = ACTIONS(1714), - [anon_sym_GT] = ACTIONS(1714), - [anon_sym_GT_GT] = ACTIONS(1164), - [anon_sym_AMP_GT] = ACTIONS(1714), - [anon_sym_AMP_GT_GT] = ACTIONS(1164), - [anon_sym_LT_AMP] = ACTIONS(1164), - [anon_sym_GT_AMP] = ACTIONS(1164), - [anon_sym_LT_LT] = ACTIONS(1714), - [anon_sym_LT_LT_DASH] = ACTIONS(1164), - [anon_sym_BQUOTE] = ACTIONS(1164), - [sym_comment] = ACTIONS(46), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_EQ] = ACTIONS(2104), + [anon_sym_COLON] = ACTIONS(2118), + [anon_sym_COLON_QMARK] = ACTIONS(2104), + [anon_sym_COLON_DASH] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(2104), + [anon_sym_SLASH] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [sym_comment] = ACTIONS(48), }, [574] = { - [sym_concatenation] = STATE(305), - [sym_string] = STATE(300), - [sym_simple_expansion] = STATE(300), - [sym_expansion] = STATE(300), - [sym_command_substitution] = STATE(300), - [sym_process_substitution] = STATE(300), - [aux_sym_for_statement_repeat1] = STATE(574), - [sym_file_descriptor] = ACTIONS(1168), - [sym_word] = ACTIONS(1716), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_RPAREN] = ACTIONS(1168), - [anon_sym_PIPE_AMP] = ACTIONS(1168), - [anon_sym_AMP_AMP] = ACTIONS(1168), - [anon_sym_PIPE_PIPE] = ACTIONS(1168), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_GT] = ACTIONS(1719), - [anon_sym_GT_GT] = ACTIONS(1168), - [anon_sym_AMP_GT] = ACTIONS(1719), - [anon_sym_AMP_GT_GT] = ACTIONS(1168), - [anon_sym_LT_AMP] = ACTIONS(1168), - [anon_sym_GT_AMP] = ACTIONS(1168), - [anon_sym_LT_LT] = ACTIONS(1719), - [anon_sym_LT_LT_DASH] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym_raw_string] = ACTIONS(1716), - [anon_sym_DOLLAR] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1727), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1733), - [anon_sym_LT_LPAREN] = ACTIONS(1736), - [anon_sym_GT_LPAREN] = ACTIONS(1736), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1739), + [sym_file_descriptor] = ACTIONS(1269), + [sym__concat] = ACTIONS(1269), + [sym_variable_name] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_GT] = ACTIONS(2120), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_AMP_GT] = ACTIONS(2120), + [anon_sym_AMP_GT_GT] = ACTIONS(1269), + [anon_sym_LT_AMP] = ACTIONS(1269), + [anon_sym_GT_AMP] = ACTIONS(1269), + [sym__special_characters] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_raw_string] = ACTIONS(1269), + [anon_sym_DOLLAR] = ACTIONS(2120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1269), + [anon_sym_BQUOTE] = ACTIONS(1269), + [anon_sym_LT_LPAREN] = ACTIONS(1269), + [anon_sym_GT_LPAREN] = ACTIONS(1269), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2120), }, [575] = { - [sym_file_redirect] = STATE(304), - [sym_heredoc_redirect] = STATE(304), - [aux_sym_command_repeat2] = STATE(576), - [sym_file_descriptor] = ACTIONS(492), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_PIPE_AMP] = ACTIONS(1744), - [anon_sym_AMP_AMP] = ACTIONS(1744), - [anon_sym_PIPE_PIPE] = ACTIONS(1744), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(500), - [anon_sym_GT_GT] = ACTIONS(502), - [anon_sym_AMP_GT] = ACTIONS(500), - [anon_sym_AMP_GT_GT] = ACTIONS(502), - [anon_sym_LT_AMP] = ACTIONS(502), - [anon_sym_GT_AMP] = ACTIONS(502), - [anon_sym_LT_LT] = ACTIONS(504), - [anon_sym_LT_LT_DASH] = ACTIONS(506), - [sym_comment] = ACTIONS(46), + [sym_concatenation] = STATE(997), + [sym_string] = STATE(996), + [sym_simple_expansion] = STATE(996), + [sym_expansion] = STATE(996), + [sym_command_substitution] = STATE(996), + [sym_process_substitution] = STATE(996), + [anon_sym_RBRACE] = ACTIONS(2122), + [sym__special_characters] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(2126), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2128), }, [576] = { - [sym_file_redirect] = STATE(304), - [sym_heredoc_redirect] = STATE(304), - [aux_sym_command_repeat2] = STATE(576), - [sym_file_descriptor] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1749), - [anon_sym_RPAREN] = ACTIONS(1751), - [anon_sym_PIPE_AMP] = ACTIONS(1751), - [anon_sym_AMP_AMP] = ACTIONS(1751), - [anon_sym_PIPE_PIPE] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1753), - [anon_sym_GT] = ACTIONS(1753), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_AMP_GT] = ACTIONS(1753), - [anon_sym_AMP_GT_GT] = ACTIONS(1756), - [anon_sym_LT_AMP] = ACTIONS(1756), - [anon_sym_GT_AMP] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1759), - [anon_sym_LT_LT_DASH] = ACTIONS(1762), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(1281), + [sym__concat] = ACTIONS(1281), + [sym_variable_name] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(2130), + [anon_sym_GT] = ACTIONS(2130), + [anon_sym_GT_GT] = ACTIONS(1281), + [anon_sym_AMP_GT] = ACTIONS(2130), + [anon_sym_AMP_GT_GT] = ACTIONS(1281), + [anon_sym_LT_AMP] = ACTIONS(1281), + [anon_sym_GT_AMP] = ACTIONS(1281), + [sym__special_characters] = ACTIONS(2130), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_raw_string] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(2130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1281), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2130), }, [577] = { - [sym_file_redirect] = STATE(304), - [sym_heredoc_redirect] = STATE(304), - [sym_concatenation] = STATE(305), - [sym_string] = STATE(300), - [sym_simple_expansion] = STATE(300), - [sym_expansion] = STATE(300), - [sym_command_substitution] = STATE(300), - [sym_process_substitution] = STATE(300), - [aux_sym_for_statement_repeat1] = STATE(574), - [aux_sym_command_repeat2] = STATE(900), - [sym_file_descriptor] = ACTIONS(492), - [sym_word] = ACTIONS(494), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_RPAREN] = ACTIONS(1744), - [anon_sym_PIPE_AMP] = ACTIONS(1744), - [anon_sym_AMP_AMP] = ACTIONS(1744), - [anon_sym_PIPE_PIPE] = ACTIONS(1744), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(500), - [anon_sym_GT_GT] = ACTIONS(502), - [anon_sym_AMP_GT] = ACTIONS(500), - [anon_sym_AMP_GT_GT] = ACTIONS(502), - [anon_sym_LT_AMP] = ACTIONS(502), - [anon_sym_GT_AMP] = ACTIONS(502), - [anon_sym_LT_LT] = ACTIONS(504), - [anon_sym_LT_LT_DASH] = ACTIONS(506), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(494), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(508), + [sym_file_descriptor] = ACTIONS(1379), + [sym__concat] = ACTIONS(1379), + [sym_variable_name] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(2132), + [anon_sym_GT] = ACTIONS(2132), + [anon_sym_GT_GT] = ACTIONS(1379), + [anon_sym_AMP_GT] = ACTIONS(2132), + [anon_sym_AMP_GT_GT] = ACTIONS(1379), + [anon_sym_LT_AMP] = ACTIONS(1379), + [anon_sym_GT_AMP] = ACTIONS(1379), + [sym__special_characters] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(1379), + [sym_raw_string] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(2132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1379), + [anon_sym_BQUOTE] = ACTIONS(1379), + [anon_sym_LT_LPAREN] = ACTIONS(1379), + [anon_sym_GT_LPAREN] = ACTIONS(1379), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2132), }, [578] = { - [aux_sym_concatenation_repeat1] = STATE(578), - [sym_file_descriptor] = ACTIONS(675), - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(1568), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_GT] = ACTIONS(1471), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_AMP_GT] = ACTIONS(1471), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(675), - [anon_sym_GT_AMP] = ACTIONS(675), - [anon_sym_LT_LT] = ACTIONS(1471), - [anon_sym_LT_LT_DASH] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(675), - [sym_raw_string] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(1471), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(675), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), - [anon_sym_BQUOTE] = ACTIONS(675), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1471), + [sym_file_descriptor] = ACTIONS(1513), + [sym__concat] = ACTIONS(1513), + [sym_variable_name] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_GT] = ACTIONS(2134), + [anon_sym_GT_GT] = ACTIONS(1513), + [anon_sym_AMP_GT] = ACTIONS(2134), + [anon_sym_AMP_GT_GT] = ACTIONS(1513), + [anon_sym_LT_AMP] = ACTIONS(1513), + [anon_sym_GT_AMP] = ACTIONS(1513), + [sym__special_characters] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(1513), + [sym_raw_string] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(2134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1513), + [anon_sym_BQUOTE] = ACTIONS(1513), + [anon_sym_LT_LPAREN] = ACTIONS(1513), + [anon_sym_GT_LPAREN] = ACTIONS(1513), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2134), }, [579] = { - [aux_sym_concatenation_repeat1] = STATE(901), - [sym_file_descriptor] = ACTIONS(686), - [sym_word] = ACTIONS(686), - [sym__concat] = ACTIONS(1571), - [sym_variable_name] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_PIPE_AMP] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(686), - [anon_sym_PIPE_PIPE] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_AMP_GT] = ACTIONS(1573), - [anon_sym_AMP_GT_GT] = ACTIONS(686), - [anon_sym_LT_AMP] = ACTIONS(686), - [anon_sym_GT_AMP] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(686), - [sym_raw_string] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(686), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(686), - [anon_sym_BQUOTE] = ACTIONS(686), - [anon_sym_LT_LPAREN] = ACTIONS(686), - [anon_sym_GT_LPAREN] = ACTIONS(686), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1573), + [sym_concatenation] = STATE(1001), + [sym_string] = STATE(1000), + [sym_simple_expansion] = STATE(1000), + [sym_expansion] = STATE(1000), + [sym_command_substitution] = STATE(1000), + [sym_process_substitution] = STATE(1000), + [anon_sym_RBRACE] = ACTIONS(2136), + [sym__special_characters] = ACTIONS(2138), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(2140), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2142), }, [580] = { - [aux_sym_concatenation_repeat1] = STATE(902), - [sym_file_descriptor] = ACTIONS(722), - [sym_word] = ACTIONS(722), - [sym__concat] = ACTIONS(1571), - [sym_variable_name] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_PIPE_AMP] = ACTIONS(722), - [anon_sym_AMP_AMP] = ACTIONS(722), - [anon_sym_PIPE_PIPE] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1589), - [anon_sym_GT_GT] = ACTIONS(722), - [anon_sym_AMP_GT] = ACTIONS(1589), - [anon_sym_AMP_GT_GT] = ACTIONS(722), - [anon_sym_LT_AMP] = ACTIONS(722), - [anon_sym_GT_AMP] = ACTIONS(722), - [anon_sym_DQUOTE] = ACTIONS(722), - [sym_raw_string] = ACTIONS(722), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(722), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(722), - [anon_sym_BQUOTE] = ACTIONS(722), - [anon_sym_LT_LPAREN] = ACTIONS(722), - [anon_sym_GT_LPAREN] = ACTIONS(722), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1589), + [sym__concat] = ACTIONS(1241), + [anon_sym_DQUOTE] = ACTIONS(1243), + [sym__string_content] = ACTIONS(2094), + [anon_sym_DOLLAR] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_comment] = ACTIONS(110), }, [581] = { - [anon_sym_RPAREN] = ACTIONS(1765), - [sym_comment] = ACTIONS(46), + [sym_concatenation] = STATE(1005), + [sym_string] = STATE(1004), + [sym_simple_expansion] = STATE(1004), + [sym_expansion] = STATE(1004), + [sym_command_substitution] = STATE(1004), + [sym_process_substitution] = STATE(1004), + [anon_sym_RBRACE] = ACTIONS(2144), + [sym__special_characters] = ACTIONS(2146), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(2148), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2150), }, [582] = { - [sym_file_redirect] = STATE(851), - [sym_file_descriptor] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1613), - [anon_sym_PIPE_AMP] = ACTIONS(1615), - [anon_sym_AMP_AMP] = ACTIONS(1615), - [anon_sym_PIPE_PIPE] = ACTIONS(1615), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1769), - [anon_sym_GT_GT] = ACTIONS(1771), - [anon_sym_AMP_GT] = ACTIONS(1769), - [anon_sym_AMP_GT_GT] = ACTIONS(1771), - [anon_sym_LT_AMP] = ACTIONS(1771), - [anon_sym_GT_AMP] = ACTIONS(1771), - [anon_sym_BQUOTE] = ACTIONS(1615), - [sym_comment] = ACTIONS(46), + [anon_sym_EQ] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), }, [583] = { - [sym_concatenation] = STATE(855), - [sym_string] = STATE(906), - [sym_array] = STATE(855), - [sym_simple_expansion] = STATE(906), - [sym_expansion] = STATE(906), - [sym_command_substitution] = STATE(906), - [sym_process_substitution] = STATE(906), - [sym_word] = ACTIONS(1773), - [sym__empty_value] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_DQUOTE] = ACTIONS(1637), - [sym_raw_string] = ACTIONS(1773), - [anon_sym_DOLLAR] = ACTIONS(1639), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1641), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1643), - [anon_sym_BQUOTE] = ACTIONS(1645), - [anon_sym_LT_LPAREN] = ACTIONS(1647), - [anon_sym_GT_LPAREN] = ACTIONS(1647), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1775), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_EQ] = ACTIONS(2156), + [anon_sym_COLON] = ACTIONS(2158), + [anon_sym_COLON_QMARK] = ACTIONS(2156), + [anon_sym_COLON_DASH] = ACTIONS(2156), + [anon_sym_PERCENT] = ACTIONS(2156), + [anon_sym_SLASH] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2156), + [sym_comment] = ACTIONS(48), }, [584] = { - [sym_variable_assignment] = STATE(275), - [sym_subscript] = STATE(314), - [aux_sym_declaration_command_repeat1] = STATE(584), - [sym_word] = ACTIONS(1651), - [sym_variable_name] = ACTIONS(1777), - [anon_sym_PIPE] = ACTIONS(1657), - [anon_sym_PIPE_AMP] = ACTIONS(1659), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_PIPE_PIPE] = ACTIONS(1659), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_EQ] = ACTIONS(2162), + [anon_sym_COLON] = ACTIONS(2164), + [anon_sym_COLON_QMARK] = ACTIONS(2162), + [anon_sym_COLON_DASH] = ACTIONS(2162), + [anon_sym_PERCENT] = ACTIONS(2162), + [anon_sym_SLASH] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2162), + [sym_comment] = ACTIONS(48), }, [585] = { - [sym_compound_statement] = STATE(908), - [anon_sym_LBRACE] = ACTIONS(1024), - [sym_comment] = ACTIONS(46), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_EQ] = ACTIONS(2152), + [anon_sym_COLON] = ACTIONS(2166), + [anon_sym_COLON_QMARK] = ACTIONS(2152), + [anon_sym_COLON_DASH] = ACTIONS(2152), + [anon_sym_PERCENT] = ACTIONS(2152), + [anon_sym_SLASH] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2152), + [sym_comment] = ACTIONS(48), }, [586] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_PIPE_AMP] = ACTIONS(1688), - [anon_sym_AMP_AMP] = ACTIONS(1688), - [anon_sym_PIPE_PIPE] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(1688), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), + [sym__concat] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym__string_content] = ACTIONS(2120), + [anon_sym_DOLLAR] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1271), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1271), + [sym_comment] = ACTIONS(110), }, [587] = { - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(1690), - [anon_sym_PIPE_PIPE] = ACTIONS(1690), - [anon_sym_BQUOTE] = ACTIONS(1690), - [sym_comment] = ACTIONS(46), + [sym_concatenation] = STATE(1014), + [sym_string] = STATE(1013), + [sym_simple_expansion] = STATE(1013), + [sym_expansion] = STATE(1013), + [sym_command_substitution] = STATE(1013), + [sym_process_substitution] = STATE(1013), + [anon_sym_RBRACE] = ACTIONS(2168), + [sym__special_characters] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(2172), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2174), }, [588] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(1690), - [anon_sym_PIPE_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), + [sym__concat] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1283), + [sym__string_content] = ACTIONS(2130), + [anon_sym_DOLLAR] = ACTIONS(1283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1283), + [anon_sym_BQUOTE] = ACTIONS(1283), + [sym_comment] = ACTIONS(110), }, [589] = { - [sym_concatenation] = STATE(880), - [sym_string] = STATE(909), - [sym_simple_expansion] = STATE(909), - [sym_expansion] = STATE(909), - [sym_command_substitution] = STATE(909), - [sym_process_substitution] = STATE(909), - [sym_word] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym_raw_string] = ACTIONS(1780), - [anon_sym_DOLLAR] = ACTIONS(1080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1082), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1084), - [anon_sym_BQUOTE] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(1088), - [anon_sym_GT_LPAREN] = ACTIONS(1088), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1782), + [sym__concat] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1381), + [sym__string_content] = ACTIONS(2132), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1381), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1381), + [anon_sym_BQUOTE] = ACTIONS(1381), + [sym_comment] = ACTIONS(110), }, [590] = { - [aux_sym_concatenation_repeat1] = STATE(911), - [sym_file_descriptor] = ACTIONS(372), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(376), - [anon_sym_PIPE_AMP] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_GT_GT] = ACTIONS(372), - [anon_sym_AMP_GT] = ACTIONS(376), - [anon_sym_AMP_GT_GT] = ACTIONS(372), - [anon_sym_LT_AMP] = ACTIONS(372), - [anon_sym_GT_AMP] = ACTIONS(372), - [anon_sym_LT_LT] = ACTIONS(376), - [anon_sym_LT_LT_DASH] = ACTIONS(372), - [anon_sym_BQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(2176), + [sym__concat] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_SEMI_SEMI] = ACTIONS(2178), + [anon_sym_PIPE_AMP] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2178), + [anon_sym_PIPE_PIPE] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2178), + [anon_sym_AMP_GT] = ACTIONS(2178), + [anon_sym_AMP_GT_GT] = ACTIONS(2178), + [anon_sym_LT_AMP] = ACTIONS(2178), + [anon_sym_GT_AMP] = ACTIONS(2178), + [anon_sym_LT_LT] = ACTIONS(2178), + [anon_sym_LT_LT_DASH] = ACTIONS(2178), + [anon_sym_LT_LT_LT] = ACTIONS(2178), + [sym__special_characters] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [sym_raw_string] = ACTIONS(2178), + [anon_sym_DOLLAR] = ACTIONS(2178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2178), + [anon_sym_BQUOTE] = ACTIONS(2178), + [anon_sym_LT_LPAREN] = ACTIONS(2178), + [anon_sym_GT_LPAREN] = ACTIONS(2178), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_LF] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), }, [591] = { - [aux_sym_concatenation_repeat1] = STATE(912), - [sym_file_descriptor] = ACTIONS(390), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_PIPE_AMP] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(390), - [anon_sym_PIPE_PIPE] = ACTIONS(390), - [anon_sym_LT] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(392), - [anon_sym_GT_GT] = ACTIONS(390), - [anon_sym_AMP_GT] = ACTIONS(392), - [anon_sym_AMP_GT_GT] = ACTIONS(390), - [anon_sym_LT_AMP] = ACTIONS(390), - [anon_sym_GT_AMP] = ACTIONS(390), - [anon_sym_LT_LT] = ACTIONS(392), - [anon_sym_LT_LT_DASH] = ACTIONS(390), - [anon_sym_BQUOTE] = ACTIONS(390), - [sym_comment] = ACTIONS(46), + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2182), + [sym_comment] = ACTIONS(48), }, [592] = { - [sym_concatenation] = STATE(305), - [sym_string] = STATE(321), - [sym_simple_expansion] = STATE(321), - [sym_expansion] = STATE(321), - [sym_command_substitution] = STATE(321), - [sym_process_substitution] = STATE(321), - [aux_sym_for_statement_repeat1] = STATE(592), - [sym_file_descriptor] = ACTIONS(1168), - [sym_word] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_PIPE_AMP] = ACTIONS(1168), - [anon_sym_AMP_AMP] = ACTIONS(1168), - [anon_sym_PIPE_PIPE] = ACTIONS(1168), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_GT] = ACTIONS(1719), - [anon_sym_GT_GT] = ACTIONS(1168), - [anon_sym_AMP_GT] = ACTIONS(1719), - [anon_sym_AMP_GT_GT] = ACTIONS(1168), - [anon_sym_LT_AMP] = ACTIONS(1168), - [anon_sym_GT_AMP] = ACTIONS(1168), - [anon_sym_LT_LT] = ACTIONS(1719), - [anon_sym_LT_LT_DASH] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym_raw_string] = ACTIONS(1784), - [anon_sym_DOLLAR] = ACTIONS(1724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1727), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1730), - [anon_sym_BQUOTE] = ACTIONS(1733), - [anon_sym_LT_LPAREN] = ACTIONS(1736), - [anon_sym_GT_LPAREN] = ACTIONS(1736), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1787), + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(1019), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), }, [593] = { - [sym_file_redirect] = STATE(304), - [sym_heredoc_redirect] = STATE(304), - [aux_sym_command_repeat2] = STATE(594), - [sym_file_descriptor] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_PIPE_AMP] = ACTIONS(1744), - [anon_sym_AMP_AMP] = ACTIONS(1744), - [anon_sym_PIPE_PIPE] = ACTIONS(1744), - [anon_sym_LT] = ACTIONS(530), - [anon_sym_GT] = ACTIONS(530), - [anon_sym_GT_GT] = ACTIONS(532), - [anon_sym_AMP_GT] = ACTIONS(530), - [anon_sym_AMP_GT_GT] = ACTIONS(532), - [anon_sym_LT_AMP] = ACTIONS(532), - [anon_sym_GT_AMP] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(504), - [anon_sym_LT_LT_DASH] = ACTIONS(506), - [anon_sym_BQUOTE] = ACTIONS(1744), - [sym_comment] = ACTIONS(46), + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2186), + [sym_comment] = ACTIONS(48), }, [594] = { - [sym_file_redirect] = STATE(304), - [sym_heredoc_redirect] = STATE(304), - [aux_sym_command_repeat2] = STATE(594), - [sym_file_descriptor] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1749), - [anon_sym_PIPE_AMP] = ACTIONS(1751), - [anon_sym_AMP_AMP] = ACTIONS(1751), - [anon_sym_PIPE_PIPE] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1793), - [anon_sym_GT] = ACTIONS(1793), - [anon_sym_GT_GT] = ACTIONS(1796), - [anon_sym_AMP_GT] = ACTIONS(1793), - [anon_sym_AMP_GT_GT] = ACTIONS(1796), - [anon_sym_LT_AMP] = ACTIONS(1796), - [anon_sym_GT_AMP] = ACTIONS(1796), - [anon_sym_LT_LT] = ACTIONS(1759), - [anon_sym_LT_LT_DASH] = ACTIONS(1762), - [anon_sym_BQUOTE] = ACTIONS(1751), - [sym_comment] = ACTIONS(46), + [anon_sym_DOLLAR] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2188), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2190), + [anon_sym_STAR] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(2188), + [anon_sym_QMARK] = ACTIONS(2188), + [anon_sym_0] = ACTIONS(2192), + [anon_sym__] = ACTIONS(2192), }, [595] = { - [sym_file_redirect] = STATE(304), - [sym_heredoc_redirect] = STATE(304), - [sym_concatenation] = STATE(305), - [sym_string] = STATE(321), - [sym_simple_expansion] = STATE(321), - [sym_expansion] = STATE(321), - [sym_command_substitution] = STATE(321), - [sym_process_substitution] = STATE(321), - [aux_sym_for_statement_repeat1] = STATE(592), - [aux_sym_command_repeat2] = STATE(913), - [sym_file_descriptor] = ACTIONS(526), - [sym_word] = ACTIONS(528), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_PIPE_AMP] = ACTIONS(1744), - [anon_sym_AMP_AMP] = ACTIONS(1744), - [anon_sym_PIPE_PIPE] = ACTIONS(1744), - [anon_sym_LT] = ACTIONS(530), - [anon_sym_GT] = ACTIONS(530), - [anon_sym_GT_GT] = ACTIONS(532), - [anon_sym_AMP_GT] = ACTIONS(530), - [anon_sym_AMP_GT_GT] = ACTIONS(532), - [anon_sym_LT_AMP] = ACTIONS(532), - [anon_sym_GT_AMP] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(504), - [anon_sym_LT_LT_DASH] = ACTIONS(506), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(528), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(1744), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(534), + [sym_subscript] = STATE(1027), + [sym_variable_name] = ACTIONS(2194), + [anon_sym_DOLLAR] = ACTIONS(2196), + [anon_sym_POUND] = ACTIONS(2198), + [anon_sym_DASH] = ACTIONS(2196), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2200), + [anon_sym_STAR] = ACTIONS(2196), + [anon_sym_AT] = ACTIONS(2196), + [anon_sym_QMARK] = ACTIONS(2196), + [anon_sym_0] = ACTIONS(2202), + [anon_sym__] = ACTIONS(2202), }, [596] = { - [sym_file_redirect] = STATE(914), - [sym_file_descriptor] = ACTIONS(810), - [anon_sym_PIPE] = ACTIONS(1799), - [anon_sym_SEMI_SEMI] = ACTIONS(1799), - [anon_sym_PIPE_AMP] = ACTIONS(1799), - [anon_sym_AMP_AMP] = ACTIONS(1799), - [anon_sym_PIPE_PIPE] = ACTIONS(1799), - [anon_sym_LT] = ACTIONS(814), - [anon_sym_GT] = ACTIONS(814), - [anon_sym_GT_GT] = ACTIONS(814), - [anon_sym_AMP_GT] = ACTIONS(814), - [anon_sym_AMP_GT_GT] = ACTIONS(814), - [anon_sym_LT_AMP] = ACTIONS(814), - [anon_sym_GT_AMP] = ACTIONS(814), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1799), - [anon_sym_LF] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), + [sym_for_statement] = STATE(1028), + [sym_while_statement] = STATE(1028), + [sym_if_statement] = STATE(1028), + [sym_case_statement] = STATE(1028), + [sym_function_definition] = STATE(1028), + [sym_subshell] = STATE(1028), + [sym_pipeline] = STATE(1028), + [sym_list] = STATE(1028), + [sym_command] = STATE(1028), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1029), + [sym_declaration_command] = STATE(1028), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, [597] = { - [aux_sym_concatenation_repeat1] = STATE(601), - [sym_file_descriptor] = ACTIONS(667), - [sym__concat] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_SEMI_SEMI] = ACTIONS(1801), - [anon_sym_PIPE_AMP] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1801), - [anon_sym_PIPE_PIPE] = ACTIONS(1801), - [anon_sym_LT] = ACTIONS(1801), - [anon_sym_GT] = ACTIONS(1801), - [anon_sym_GT_GT] = ACTIONS(1801), - [anon_sym_AMP_GT] = ACTIONS(1801), - [anon_sym_AMP_GT_GT] = ACTIONS(1801), - [anon_sym_LT_AMP] = ACTIONS(1801), - [anon_sym_GT_AMP] = ACTIONS(1801), - [anon_sym_LT_LT] = ACTIONS(1801), - [anon_sym_LT_LT_DASH] = ACTIONS(1801), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_LF] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1801), + [sym_for_statement] = STATE(1030), + [sym_while_statement] = STATE(1030), + [sym_if_statement] = STATE(1030), + [sym_case_statement] = STATE(1030), + [sym_function_definition] = STATE(1030), + [sym_subshell] = STATE(1030), + [sym_pipeline] = STATE(1030), + [sym_list] = STATE(1030), + [sym_command] = STATE(1030), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(1031), + [sym_declaration_command] = STATE(1030), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), }, [598] = { - [aux_sym_concatenation_repeat1] = STATE(616), - [sym_file_descriptor] = ACTIONS(671), - [sym__concat] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_SEMI_SEMI] = ACTIONS(1803), - [anon_sym_PIPE_AMP] = ACTIONS(1803), - [anon_sym_AMP_AMP] = ACTIONS(1803), - [anon_sym_PIPE_PIPE] = ACTIONS(1803), - [anon_sym_LT] = ACTIONS(1803), - [anon_sym_GT] = ACTIONS(1803), - [anon_sym_GT_GT] = ACTIONS(1803), - [anon_sym_AMP_GT] = ACTIONS(1803), - [anon_sym_AMP_GT_GT] = ACTIONS(1803), - [anon_sym_LT_AMP] = ACTIONS(1803), - [anon_sym_GT_AMP] = ACTIONS(1803), - [anon_sym_LT_LT] = ACTIONS(1803), - [anon_sym_LT_LT_DASH] = ACTIONS(1803), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_LF] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1803), + [sym_for_statement] = STATE(1032), + [sym_while_statement] = STATE(1032), + [sym_if_statement] = STATE(1032), + [sym_case_statement] = STATE(1032), + [sym_function_definition] = STATE(1032), + [sym_subshell] = STATE(1032), + [sym_pipeline] = STATE(1032), + [sym_list] = STATE(1032), + [sym_command] = STATE(1032), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1033), + [sym_declaration_command] = STATE(1032), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, [599] = { - [sym_file_descriptor] = ACTIONS(667), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_RPAREN] = ACTIONS(1801), - [anon_sym_SEMI_SEMI] = ACTIONS(1801), - [anon_sym_PIPE_AMP] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1801), - [anon_sym_PIPE_PIPE] = ACTIONS(1801), - [anon_sym_LT] = ACTIONS(1801), - [anon_sym_GT] = ACTIONS(1801), - [anon_sym_GT_GT] = ACTIONS(1801), - [anon_sym_AMP_GT] = ACTIONS(1801), - [anon_sym_AMP_GT_GT] = ACTIONS(1801), - [anon_sym_LT_AMP] = ACTIONS(1801), - [anon_sym_GT_AMP] = ACTIONS(1801), - [anon_sym_LT_LT] = ACTIONS(1801), - [anon_sym_LT_LT_DASH] = ACTIONS(1801), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_LF] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(2186), + [sym_comment] = ACTIONS(48), }, [600] = { - [sym_string] = STATE(915), - [sym_simple_expansion] = STATE(915), - [sym_expansion] = STATE(915), - [sym_command_substitution] = STATE(915), - [sym_process_substitution] = STATE(915), - [sym_word] = ACTIONS(1805), - [anon_sym_DQUOTE] = ACTIONS(562), - [sym_raw_string] = ACTIONS(1805), - [anon_sym_DOLLAR] = ACTIONS(564), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(566), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(568), - [anon_sym_BQUOTE] = ACTIONS(570), - [anon_sym_LT_LPAREN] = ACTIONS(572), - [anon_sym_GT_LPAREN] = ACTIONS(572), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1807), + [aux_sym_concatenation_repeat1] = STATE(435), + [sym__concat] = ACTIONS(2204), + [anon_sym_RBRACK] = ACTIONS(2206), + [sym_comment] = ACTIONS(48), }, [601] = { - [aux_sym_concatenation_repeat1] = STATE(917), - [sym_file_descriptor] = ACTIONS(254), - [sym__concat] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(256), - [anon_sym_SEMI_SEMI] = ACTIONS(256), - [anon_sym_PIPE_AMP] = ACTIONS(256), - [anon_sym_AMP_AMP] = ACTIONS(256), - [anon_sym_PIPE_PIPE] = ACTIONS(256), - [anon_sym_LT] = ACTIONS(256), - [anon_sym_GT] = ACTIONS(256), - [anon_sym_GT_GT] = ACTIONS(256), - [anon_sym_AMP_GT] = ACTIONS(256), - [anon_sym_AMP_GT_GT] = ACTIONS(256), - [anon_sym_LT_AMP] = ACTIONS(256), - [anon_sym_GT_AMP] = ACTIONS(256), - [anon_sym_LT_LT] = ACTIONS(256), - [anon_sym_LT_LT_DASH] = ACTIONS(256), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(256), - [anon_sym_LF] = ACTIONS(256), - [anon_sym_AMP] = ACTIONS(256), + [aux_sym_concatenation_repeat1] = STATE(435), + [sym__concat] = ACTIONS(2208), + [anon_sym_RBRACK] = ACTIONS(2210), + [sym_comment] = ACTIONS(48), }, [602] = { - [sym_file_descriptor] = ACTIONS(394), - [sym__concat] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(396), - [anon_sym_RPAREN] = ACTIONS(396), - [anon_sym_SEMI_SEMI] = ACTIONS(396), - [anon_sym_PIPE_AMP] = ACTIONS(396), - [anon_sym_AMP_AMP] = ACTIONS(396), - [anon_sym_PIPE_PIPE] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(396), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(396), - [anon_sym_AMP_GT] = ACTIONS(396), - [anon_sym_AMP_GT_GT] = ACTIONS(396), - [anon_sym_LT_AMP] = ACTIONS(396), - [anon_sym_GT_AMP] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_LT_LT_DASH] = ACTIONS(396), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(396), - [anon_sym_LF] = ACTIONS(396), - [anon_sym_AMP] = ACTIONS(396), + [sym__concat] = ACTIONS(2212), + [anon_sym_RBRACK] = ACTIONS(2210), + [sym_comment] = ACTIONS(48), }, [603] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(252), - [anon_sym_DQUOTE] = ACTIONS(1809), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), + [sym_file_descriptor] = ACTIONS(2214), + [sym__concat] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2216), + [anon_sym_SEMI_SEMI] = ACTIONS(2216), + [anon_sym_PIPE_AMP] = ACTIONS(2216), + [anon_sym_AMP_AMP] = ACTIONS(2216), + [anon_sym_PIPE_PIPE] = ACTIONS(2216), + [anon_sym_LT] = ACTIONS(2216), + [anon_sym_GT] = ACTIONS(2216), + [anon_sym_GT_GT] = ACTIONS(2216), + [anon_sym_AMP_GT] = ACTIONS(2216), + [anon_sym_AMP_GT_GT] = ACTIONS(2216), + [anon_sym_LT_AMP] = ACTIONS(2216), + [anon_sym_GT_AMP] = ACTIONS(2216), + [anon_sym_LT_LT] = ACTIONS(2216), + [anon_sym_LT_LT_DASH] = ACTIONS(2216), + [anon_sym_LT_LT_LT] = ACTIONS(2216), + [sym__special_characters] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2216), + [sym_raw_string] = ACTIONS(2216), + [anon_sym_DOLLAR] = ACTIONS(2216), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2216), + [anon_sym_BQUOTE] = ACTIONS(2216), + [anon_sym_LT_LPAREN] = ACTIONS(2216), + [anon_sym_GT_LPAREN] = ACTIONS(2216), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2216), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_LF] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2216), }, [604] = { - [sym_file_descriptor] = ACTIONS(412), - [sym__concat] = ACTIONS(412), - [anon_sym_PIPE] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(414), - [anon_sym_SEMI_SEMI] = ACTIONS(414), - [anon_sym_PIPE_AMP] = ACTIONS(414), - [anon_sym_AMP_AMP] = ACTIONS(414), - [anon_sym_PIPE_PIPE] = ACTIONS(414), - [anon_sym_LT] = ACTIONS(414), - [anon_sym_GT] = ACTIONS(414), - [anon_sym_GT_GT] = ACTIONS(414), - [anon_sym_AMP_GT] = ACTIONS(414), - [anon_sym_AMP_GT_GT] = ACTIONS(414), - [anon_sym_LT_AMP] = ACTIONS(414), - [anon_sym_GT_AMP] = ACTIONS(414), - [anon_sym_LT_LT] = ACTIONS(414), - [anon_sym_LT_LT_DASH] = ACTIONS(414), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(414), - [anon_sym_LF] = ACTIONS(414), - [anon_sym_AMP] = ACTIONS(414), + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2218), + [sym_comment] = ACTIONS(48), }, [605] = { - [sym_file_descriptor] = ACTIONS(416), - [sym__concat] = ACTIONS(416), - [anon_sym_PIPE] = ACTIONS(418), - [anon_sym_RPAREN] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(418), - [anon_sym_PIPE_AMP] = ACTIONS(418), - [anon_sym_AMP_AMP] = ACTIONS(418), - [anon_sym_PIPE_PIPE] = ACTIONS(418), - [anon_sym_LT] = ACTIONS(418), - [anon_sym_GT] = ACTIONS(418), - [anon_sym_GT_GT] = ACTIONS(418), - [anon_sym_AMP_GT] = ACTIONS(418), - [anon_sym_AMP_GT_GT] = ACTIONS(418), - [anon_sym_LT_AMP] = ACTIONS(418), - [anon_sym_GT_AMP] = ACTIONS(418), - [anon_sym_LT_LT] = ACTIONS(418), - [anon_sym_LT_LT_DASH] = ACTIONS(418), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(418), - [anon_sym_LF] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2220), + [sym_comment] = ACTIONS(48), }, [606] = { - [sym_file_descriptor] = ACTIONS(420), - [sym__concat] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(422), - [anon_sym_SEMI_SEMI] = ACTIONS(422), - [anon_sym_PIPE_AMP] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(422), - [anon_sym_LT] = ACTIONS(422), - [anon_sym_GT] = ACTIONS(422), - [anon_sym_GT_GT] = ACTIONS(422), - [anon_sym_AMP_GT] = ACTIONS(422), - [anon_sym_AMP_GT_GT] = ACTIONS(422), - [anon_sym_LT_AMP] = ACTIONS(422), - [anon_sym_GT_AMP] = ACTIONS(422), - [anon_sym_LT_LT] = ACTIONS(422), - [anon_sym_LT_LT_DASH] = ACTIONS(422), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LF] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(422), + [anon_sym_RBRACE] = ACTIONS(2220), + [sym_comment] = ACTIONS(48), }, [607] = { - [sym_special_variable_name] = STATE(920), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(138), - [anon_sym_AT] = ACTIONS(138), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_COLON_QMARK] = ACTIONS(412), - [anon_sym_COLON_DASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(412), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), + [sym_concatenation] = STATE(1043), + [sym_string] = STATE(1042), + [sym_simple_expansion] = STATE(1042), + [sym_expansion] = STATE(1042), + [sym_command_substitution] = STATE(1042), + [sym_process_substitution] = STATE(1042), + [anon_sym_RBRACE] = ACTIONS(2186), + [sym__special_characters] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(2224), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2226), }, [608] = { - [anon_sym_RBRACE] = ACTIONS(1813), - [anon_sym_EQ] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_COLON] = ACTIONS(1819), - [anon_sym_COLON_QMARK] = ACTIONS(1815), - [anon_sym_COLON_DASH] = ACTIONS(1815), - [anon_sym_PERCENT] = ACTIONS(1815), - [anon_sym_SLASH] = ACTIONS(1815), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(2228), + [sym__concat] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2230), + [anon_sym_SEMI_SEMI] = ACTIONS(2230), + [anon_sym_PIPE_AMP] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2230), + [anon_sym_PIPE_PIPE] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2230), + [anon_sym_GT_GT] = ACTIONS(2230), + [anon_sym_AMP_GT] = ACTIONS(2230), + [anon_sym_AMP_GT_GT] = ACTIONS(2230), + [anon_sym_LT_AMP] = ACTIONS(2230), + [anon_sym_GT_AMP] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(2230), + [anon_sym_LT_LT_DASH] = ACTIONS(2230), + [anon_sym_LT_LT_LT] = ACTIONS(2230), + [sym__special_characters] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [sym_raw_string] = ACTIONS(2230), + [anon_sym_DOLLAR] = ACTIONS(2230), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2230), + [anon_sym_BQUOTE] = ACTIONS(2230), + [anon_sym_LT_LPAREN] = ACTIONS(2230), + [anon_sym_GT_LPAREN] = ACTIONS(2230), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_LF] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2230), }, [609] = { - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_EQ] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1825), - [anon_sym_COLON] = ACTIONS(1827), - [anon_sym_COLON_QMARK] = ACTIONS(1823), - [anon_sym_COLON_DASH] = ACTIONS(1823), - [anon_sym_PERCENT] = ACTIONS(1823), - [anon_sym_SLASH] = ACTIONS(1823), - [sym_comment] = ACTIONS(46), + [sym_concatenation] = STATE(1047), + [sym_string] = STATE(1046), + [sym_simple_expansion] = STATE(1046), + [sym_expansion] = STATE(1046), + [sym_command_substitution] = STATE(1046), + [sym_process_substitution] = STATE(1046), + [anon_sym_RBRACE] = ACTIONS(2232), + [sym__special_characters] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(2236), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2238), }, [610] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1829), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(2240), + [sym__concat] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_SEMI_SEMI] = ACTIONS(2242), + [anon_sym_PIPE_AMP] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2242), + [anon_sym_GT_GT] = ACTIONS(2242), + [anon_sym_AMP_GT] = ACTIONS(2242), + [anon_sym_AMP_GT_GT] = ACTIONS(2242), + [anon_sym_LT_AMP] = ACTIONS(2242), + [anon_sym_GT_AMP] = ACTIONS(2242), + [anon_sym_LT_LT] = ACTIONS(2242), + [anon_sym_LT_LT_DASH] = ACTIONS(2242), + [anon_sym_LT_LT_LT] = ACTIONS(2242), + [sym__special_characters] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym_raw_string] = ACTIONS(2242), + [anon_sym_DOLLAR] = ACTIONS(2242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2242), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2242), + [anon_sym_BQUOTE] = ACTIONS(2242), + [anon_sym_LT_LPAREN] = ACTIONS(2242), + [anon_sym_GT_LPAREN] = ACTIONS(2242), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_LF] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), }, [611] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1829), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), + [sym_concatenation] = STATE(1051), + [sym_string] = STATE(1050), + [sym_simple_expansion] = STATE(1050), + [sym_expansion] = STATE(1050), + [sym_command_substitution] = STATE(1050), + [sym_process_substitution] = STATE(1050), + [anon_sym_RBRACE] = ACTIONS(2244), + [sym__special_characters] = ACTIONS(2246), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(2248), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2250), }, [612] = { - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_BQUOTE] = ACTIONS(1829), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(2252), + [sym__concat] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_SEMI_SEMI] = ACTIONS(2254), + [anon_sym_PIPE_AMP] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_GT_GT] = ACTIONS(2254), + [anon_sym_AMP_GT] = ACTIONS(2254), + [anon_sym_AMP_GT_GT] = ACTIONS(2254), + [anon_sym_LT_AMP] = ACTIONS(2254), + [anon_sym_GT_AMP] = ACTIONS(2254), + [anon_sym_LT_LT] = ACTIONS(2254), + [anon_sym_LT_LT_DASH] = ACTIONS(2254), + [anon_sym_LT_LT_LT] = ACTIONS(2254), + [sym__special_characters] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2254), + [sym_raw_string] = ACTIONS(2254), + [anon_sym_DOLLAR] = ACTIONS(2254), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2254), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2254), + [anon_sym_BQUOTE] = ACTIONS(2254), + [anon_sym_LT_LPAREN] = ACTIONS(2254), + [anon_sym_GT_LPAREN] = ACTIONS(2254), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LF] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), }, [613] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(1829), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2256), + [sym_comment] = ACTIONS(48), }, [614] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1831), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2258), + [sym_comment] = ACTIONS(48), }, [615] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1831), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), + [anon_sym_RBRACE] = ACTIONS(2258), + [sym_comment] = ACTIONS(48), }, [616] = { - [aux_sym_concatenation_repeat1] = STATE(917), - [sym_file_descriptor] = ACTIONS(542), - [sym__concat] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_SEMI_SEMI] = ACTIONS(544), - [anon_sym_PIPE_AMP] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_AMP_GT] = ACTIONS(544), - [anon_sym_AMP_GT_GT] = ACTIONS(544), - [anon_sym_LT_AMP] = ACTIONS(544), - [anon_sym_GT_AMP] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_LT_LT_DASH] = ACTIONS(544), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_LF] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(544), + [sym_file_descriptor] = ACTIONS(824), + [sym_variable_name] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(2260), + [anon_sym_RPAREN] = ACTIONS(824), + [anon_sym_PIPE_AMP] = ACTIONS(824), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(824), + [anon_sym_AMP_GT] = ACTIONS(2260), + [anon_sym_AMP_GT_GT] = ACTIONS(824), + [anon_sym_LT_AMP] = ACTIONS(824), + [anon_sym_GT_AMP] = ACTIONS(824), + [sym__special_characters] = ACTIONS(2260), + [anon_sym_DQUOTE] = ACTIONS(824), + [sym_raw_string] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(2260), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(824), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(826), }, [617] = { - [sym__heredoc_middle] = ACTIONS(1833), - [sym__heredoc_end] = ACTIONS(1833), - [anon_sym_DOLLAR] = ACTIONS(1835), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1833), - [sym_comment] = ACTIONS(46), + [sym_concatenation] = STATE(414), + [sym_string] = STATE(408), + [sym_simple_expansion] = STATE(408), + [sym_expansion] = STATE(408), + [sym_command_substitution] = STATE(408), + [sym_process_substitution] = STATE(408), + [aux_sym_for_statement_repeat1] = STATE(1055), + [anon_sym_RPAREN] = ACTIONS(2262), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(846), }, [618] = { - [sym_file_descriptor] = ACTIONS(1837), - [anon_sym_PIPE] = ACTIONS(1839), - [anon_sym_RPAREN] = ACTIONS(1839), - [anon_sym_SEMI_SEMI] = ACTIONS(1839), - [anon_sym_PIPE_AMP] = ACTIONS(1839), - [anon_sym_AMP_AMP] = ACTIONS(1839), - [anon_sym_PIPE_PIPE] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(1839), - [anon_sym_GT] = ACTIONS(1839), - [anon_sym_GT_GT] = ACTIONS(1839), - [anon_sym_AMP_GT] = ACTIONS(1839), - [anon_sym_AMP_GT_GT] = ACTIONS(1839), - [anon_sym_LT_AMP] = ACTIONS(1839), - [anon_sym_GT_AMP] = ACTIONS(1839), - [anon_sym_LT_LT] = ACTIONS(1839), - [anon_sym_LT_LT_DASH] = ACTIONS(1839), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1839), - [anon_sym_LF] = ACTIONS(1839), - [anon_sym_AMP] = ACTIONS(1839), + [aux_sym_concatenation_repeat1] = STATE(1057), + [sym_file_descriptor] = ACTIONS(848), + [sym__concat] = ACTIONS(2264), + [sym_variable_name] = ACTIONS(848), + [anon_sym_PIPE] = ACTIONS(2266), + [anon_sym_RPAREN] = ACTIONS(848), + [anon_sym_PIPE_AMP] = ACTIONS(848), + [anon_sym_AMP_AMP] = ACTIONS(848), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_LT] = ACTIONS(2266), + [anon_sym_GT] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(848), + [anon_sym_AMP_GT] = ACTIONS(2266), + [anon_sym_AMP_GT_GT] = ACTIONS(848), + [anon_sym_LT_AMP] = ACTIONS(848), + [anon_sym_GT_AMP] = ACTIONS(848), + [sym__special_characters] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(848), + [sym_raw_string] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(2266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(848), + [anon_sym_BQUOTE] = ACTIONS(848), + [anon_sym_LT_LPAREN] = ACTIONS(848), + [anon_sym_GT_LPAREN] = ACTIONS(848), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(852), }, [619] = { - [sym_special_variable_name] = STATE(931), - [anon_sym_DOLLAR] = ACTIONS(1841), - [anon_sym_POUND] = ACTIONS(1841), - [anon_sym_AT] = ACTIONS(1841), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_QMARK] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_0] = ACTIONS(1845), - [anon_sym__] = ACTIONS(1845), + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(1059), + [anon_sym_DQUOTE] = ACTIONS(2268), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), }, [620] = { - [sym_special_variable_name] = STATE(934), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(1847), - [anon_sym_AT] = ACTIONS(138), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1849), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), + [aux_sym_concatenation_repeat1] = STATE(1057), + [sym_file_descriptor] = ACTIONS(824), + [sym__concat] = ACTIONS(2264), + [sym_variable_name] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(2260), + [anon_sym_RPAREN] = ACTIONS(824), + [anon_sym_PIPE_AMP] = ACTIONS(824), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(824), + [anon_sym_AMP_GT] = ACTIONS(2260), + [anon_sym_AMP_GT_GT] = ACTIONS(824), + [anon_sym_LT_AMP] = ACTIONS(824), + [anon_sym_GT_AMP] = ACTIONS(824), + [sym__special_characters] = ACTIONS(2260), + [anon_sym_DQUOTE] = ACTIONS(824), + [sym_raw_string] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(2260), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(824), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(826), }, [621] = { - [sym_simple_expansion] = STATE(617), - [sym_expansion] = STATE(617), - [aux_sym_heredoc_repeat1] = STATE(936), - [sym__heredoc_middle] = ACTIONS(1156), - [sym__heredoc_end] = ACTIONS(1851), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1162), - [sym_comment] = ACTIONS(46), + [anon_sym_DOLLAR] = ACTIONS(2270), + [anon_sym_DASH] = ACTIONS(2270), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_AT] = ACTIONS(2270), + [anon_sym_QMARK] = ACTIONS(2270), + [anon_sym_0] = ACTIONS(2274), + [anon_sym__] = ACTIONS(2274), }, [622] = { - [aux_sym_concatenation_repeat1] = STATE(225), - [sym_file_descriptor] = ACTIONS(686), - [sym_word] = ACTIONS(686), - [sym__concat] = ACTIONS(374), - [sym_variable_name] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_AMP_GT] = ACTIONS(1573), - [anon_sym_AMP_GT_GT] = ACTIONS(686), - [anon_sym_LT_AMP] = ACTIONS(686), - [anon_sym_GT_AMP] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(686), - [sym_raw_string] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(686), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(686), - [anon_sym_BQUOTE] = ACTIONS(686), - [anon_sym_LT_LPAREN] = ACTIONS(686), - [anon_sym_GT_LPAREN] = ACTIONS(686), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1573), + [sym_subscript] = STATE(1066), + [sym_variable_name] = ACTIONS(2276), + [anon_sym_DOLLAR] = ACTIONS(2278), + [anon_sym_POUND] = ACTIONS(2280), + [anon_sym_DASH] = ACTIONS(2278), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2278), + [anon_sym_AT] = ACTIONS(2278), + [anon_sym_QMARK] = ACTIONS(2278), + [anon_sym_0] = ACTIONS(2284), + [anon_sym__] = ACTIONS(2284), }, [623] = { - [sym_file_descriptor] = ACTIONS(686), - [sym_word] = ACTIONS(686), - [sym_variable_name] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_AMP_GT] = ACTIONS(1573), - [anon_sym_AMP_GT_GT] = ACTIONS(686), - [anon_sym_LT_AMP] = ACTIONS(686), - [anon_sym_GT_AMP] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(686), - [sym_raw_string] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(686), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(686), - [anon_sym_BQUOTE] = ACTIONS(686), - [anon_sym_LT_LPAREN] = ACTIONS(686), - [anon_sym_GT_LPAREN] = ACTIONS(686), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1573), + [sym_for_statement] = STATE(1067), + [sym_while_statement] = STATE(1067), + [sym_if_statement] = STATE(1067), + [sym_case_statement] = STATE(1067), + [sym_function_definition] = STATE(1067), + [sym_subshell] = STATE(1067), + [sym_pipeline] = STATE(1067), + [sym_list] = STATE(1067), + [sym_command] = STATE(1067), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1068), + [sym_declaration_command] = STATE(1067), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, [624] = { - [sym_concatenation] = STATE(364), - [sym_string] = STATE(355), - [sym_simple_expansion] = STATE(355), - [sym_expansion] = STATE(355), - [sym_command_substitution] = STATE(355), - [sym_process_substitution] = STATE(355), - [aux_sym_for_statement_repeat1] = STATE(938), - [sym_word] = ACTIONS(692), - [anon_sym_RPAREN] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(696), - [sym_raw_string] = ACTIONS(692), - [anon_sym_DOLLAR] = ACTIONS(698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(702), - [anon_sym_BQUOTE] = ACTIONS(704), - [anon_sym_LT_LPAREN] = ACTIONS(706), - [anon_sym_GT_LPAREN] = ACTIONS(706), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(708), + [sym_for_statement] = STATE(1069), + [sym_while_statement] = STATE(1069), + [sym_if_statement] = STATE(1069), + [sym_case_statement] = STATE(1069), + [sym_function_definition] = STATE(1069), + [sym_subshell] = STATE(1069), + [sym_pipeline] = STATE(1069), + [sym_list] = STATE(1069), + [sym_command] = STATE(1069), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(1070), + [sym_declaration_command] = STATE(1069), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), }, [625] = { - [aux_sym_concatenation_repeat1] = STATE(240), - [sym_file_descriptor] = ACTIONS(722), - [sym_word] = ACTIONS(722), - [sym__concat] = ACTIONS(374), - [sym_variable_name] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1589), - [anon_sym_GT_GT] = ACTIONS(722), - [anon_sym_AMP_GT] = ACTIONS(1589), - [anon_sym_AMP_GT_GT] = ACTIONS(722), - [anon_sym_LT_AMP] = ACTIONS(722), - [anon_sym_GT_AMP] = ACTIONS(722), - [anon_sym_DQUOTE] = ACTIONS(722), - [sym_raw_string] = ACTIONS(722), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(722), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(722), - [anon_sym_BQUOTE] = ACTIONS(722), - [anon_sym_LT_LPAREN] = ACTIONS(722), - [anon_sym_GT_LPAREN] = ACTIONS(722), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1589), + [sym_for_statement] = STATE(1071), + [sym_while_statement] = STATE(1071), + [sym_if_statement] = STATE(1071), + [sym_case_statement] = STATE(1071), + [sym_function_definition] = STATE(1071), + [sym_subshell] = STATE(1071), + [sym_pipeline] = STATE(1071), + [sym_list] = STATE(1071), + [sym_command] = STATE(1071), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1072), + [sym_declaration_command] = STATE(1071), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, [626] = { - [sym_file_redirect] = STATE(134), - [sym_heredoc_redirect] = STATE(134), - [aux_sym_command_repeat2] = STATE(349), - [sym_file_descriptor] = ACTIONS(208), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_SEMI_SEMI] = ACTIONS(1855), - [anon_sym_PIPE_AMP] = ACTIONS(1855), - [anon_sym_AMP_AMP] = ACTIONS(1855), - [anon_sym_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(214), - [anon_sym_GT] = ACTIONS(214), - [anon_sym_GT_GT] = ACTIONS(214), - [anon_sym_AMP_GT] = ACTIONS(214), - [anon_sym_AMP_GT_GT] = ACTIONS(214), - [anon_sym_LT_AMP] = ACTIONS(214), - [anon_sym_GT_AMP] = ACTIONS(214), - [anon_sym_LT_LT] = ACTIONS(216), - [anon_sym_LT_LT_DASH] = ACTIONS(216), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1855), - [anon_sym_LF] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1855), + [sym_concatenation] = STATE(462), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_for_statement_repeat1] = STATE(1073), + [sym__special_characters] = ACTIONS(900), + [anon_sym_DQUOTE] = ACTIONS(902), + [sym_raw_string] = ACTIONS(904), + [anon_sym_DOLLAR] = ACTIONS(906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(908), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(910), + [anon_sym_BQUOTE] = ACTIONS(912), + [anon_sym_LT_LPAREN] = ACTIONS(914), + [anon_sym_GT_LPAREN] = ACTIONS(914), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(916), }, [627] = { - [sym_file_descriptor] = ACTIONS(675), - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(675), - [sym_variable_name] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(677), - [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_SEMI_SEMI] = ACTIONS(677), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(677), - [anon_sym_GT_GT] = ACTIONS(677), - [anon_sym_AMP_GT] = ACTIONS(677), - [anon_sym_AMP_GT_GT] = ACTIONS(677), - [anon_sym_LT_AMP] = ACTIONS(677), - [anon_sym_GT_AMP] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(677), - [sym_raw_string] = ACTIONS(677), - [anon_sym_DOLLAR] = ACTIONS(677), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(677), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(677), - [anon_sym_BQUOTE] = ACTIONS(677), - [anon_sym_LT_LPAREN] = ACTIONS(677), - [anon_sym_GT_LPAREN] = ACTIONS(677), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(677), + [sym__terminated_statement] = STATE(465), + [sym_for_statement] = STATE(466), + [sym_while_statement] = STATE(466), + [sym_if_statement] = STATE(466), + [sym_case_statement] = STATE(466), + [sym_function_definition] = STATE(466), + [sym_subshell] = STATE(466), + [sym_pipeline] = STATE(466), + [sym_list] = STATE(466), + [sym_command] = STATE(466), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(467), + [sym_declaration_command] = STATE(466), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(1075), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_done] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), }, [628] = { - [sym_file_descriptor] = ACTIONS(679), - [sym_word] = ACTIONS(679), - [sym__concat] = ACTIONS(679), - [sym_variable_name] = ACTIONS(679), - [anon_sym_PIPE] = ACTIONS(681), - [anon_sym_RPAREN] = ACTIONS(681), - [anon_sym_SEMI_SEMI] = ACTIONS(681), - [anon_sym_PIPE_AMP] = ACTIONS(681), - [anon_sym_AMP_AMP] = ACTIONS(681), - [anon_sym_PIPE_PIPE] = ACTIONS(681), - [anon_sym_LT] = ACTIONS(681), - [anon_sym_GT] = ACTIONS(681), - [anon_sym_GT_GT] = ACTIONS(681), - [anon_sym_AMP_GT] = ACTIONS(681), - [anon_sym_AMP_GT_GT] = ACTIONS(681), - [anon_sym_LT_AMP] = ACTIONS(681), - [anon_sym_GT_AMP] = ACTIONS(681), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_raw_string] = ACTIONS(681), - [anon_sym_DOLLAR] = ACTIONS(681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(681), - [anon_sym_LT_LPAREN] = ACTIONS(681), - [anon_sym_GT_LPAREN] = ACTIONS(681), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(681), - [anon_sym_SEMI] = ACTIONS(681), - [anon_sym_LF] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_RPAREN] = ACTIONS(2290), + [anon_sym_PIPE_AMP] = ACTIONS(2290), + [anon_sym_AMP_AMP] = ACTIONS(2290), + [anon_sym_PIPE_PIPE] = ACTIONS(2290), + [anon_sym_BQUOTE] = ACTIONS(2290), + [sym_comment] = ACTIONS(48), }, [629] = { - [aux_sym_concatenation_repeat1] = STATE(629), - [sym_file_descriptor] = ACTIONS(675), - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(1857), - [sym_variable_name] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(677), - [anon_sym_SEMI_SEMI] = ACTIONS(677), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(677), - [anon_sym_GT_GT] = ACTIONS(677), - [anon_sym_AMP_GT] = ACTIONS(677), - [anon_sym_AMP_GT_GT] = ACTIONS(677), - [anon_sym_LT_AMP] = ACTIONS(677), - [anon_sym_GT_AMP] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(677), - [sym_raw_string] = ACTIONS(677), - [anon_sym_DOLLAR] = ACTIONS(677), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(677), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(677), - [anon_sym_BQUOTE] = ACTIONS(677), - [anon_sym_LT_LPAREN] = ACTIONS(677), - [anon_sym_GT_LPAREN] = ACTIONS(677), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(677), + [sym__terminated_statement] = STATE(472), + [sym_for_statement] = STATE(473), + [sym_while_statement] = STATE(473), + [sym_if_statement] = STATE(473), + [sym_elif_clause] = STATE(474), + [sym_else_clause] = STATE(1077), + [sym_case_statement] = STATE(473), + [sym_function_definition] = STATE(473), + [sym_subshell] = STATE(473), + [sym_pipeline] = STATE(473), + [sym_list] = STATE(473), + [sym_command] = STATE(473), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(476), + [sym_declaration_command] = STATE(473), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(1078), + [aux_sym_if_statement_repeat1] = STATE(1079), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_fi] = ACTIONS(2292), + [anon_sym_elif] = ACTIONS(924), + [anon_sym_else] = ACTIONS(926), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), }, [630] = { - [sym_string] = STATE(939), - [sym_simple_expansion] = STATE(939), - [sym_expansion] = STATE(939), - [sym_command_substitution] = STATE(939), - [sym_process_substitution] = STATE(939), - [sym_word] = ACTIONS(1860), - [anon_sym_DQUOTE] = ACTIONS(696), - [sym_raw_string] = ACTIONS(1860), - [anon_sym_DOLLAR] = ACTIONS(698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(702), - [anon_sym_BQUOTE] = ACTIONS(704), - [anon_sym_LT_LPAREN] = ACTIONS(706), - [anon_sym_GT_LPAREN] = ACTIONS(706), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1862), + [anon_sym_SEMI_SEMI] = ACTIONS(2294), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_LF] = ACTIONS(2294), + [anon_sym_AMP] = ACTIONS(2294), }, [631] = { - [aux_sym_concatenation_repeat1] = STATE(941), - [sym_word] = ACTIONS(254), - [sym__concat] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(254), - [anon_sym_DQUOTE] = ACTIONS(254), - [sym_raw_string] = ACTIONS(254), - [anon_sym_DOLLAR] = ACTIONS(877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(254), - [anon_sym_LT_LPAREN] = ACTIONS(254), - [anon_sym_GT_LPAREN] = ACTIONS(254), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(877), + [anon_sym_in] = ACTIONS(2296), + [sym_comment] = ACTIONS(48), }, [632] = { - [sym_word] = ACTIONS(394), - [sym__concat] = ACTIONS(394), - [anon_sym_RPAREN] = ACTIONS(394), - [anon_sym_DQUOTE] = ACTIONS(394), - [sym_raw_string] = ACTIONS(394), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(394), - [anon_sym_BQUOTE] = ACTIONS(394), - [anon_sym_LT_LPAREN] = ACTIONS(394), - [anon_sym_GT_LPAREN] = ACTIONS(394), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(879), + [anon_sym_SEMI_SEMI] = ACTIONS(2298), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_LF] = ACTIONS(2298), + [anon_sym_AMP] = ACTIONS(2298), }, [633] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(252), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), + [anon_sym_in] = ACTIONS(2300), + [sym_comment] = ACTIONS(48), }, [634] = { - [sym_word] = ACTIONS(412), - [sym__concat] = ACTIONS(412), - [anon_sym_RPAREN] = ACTIONS(412), - [anon_sym_DQUOTE] = ACTIONS(412), - [sym_raw_string] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(412), - [anon_sym_BQUOTE] = ACTIONS(412), - [anon_sym_LT_LPAREN] = ACTIONS(412), - [anon_sym_GT_LPAREN] = ACTIONS(412), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(424), + [anon_sym_RPAREN] = ACTIONS(2302), + [sym_comment] = ACTIONS(48), }, [635] = { - [sym_word] = ACTIONS(416), - [sym__concat] = ACTIONS(416), - [anon_sym_RPAREN] = ACTIONS(416), - [anon_sym_DQUOTE] = ACTIONS(416), - [sym_raw_string] = ACTIONS(416), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(416), - [anon_sym_BQUOTE] = ACTIONS(416), - [anon_sym_LT_LPAREN] = ACTIONS(416), - [anon_sym_GT_LPAREN] = ACTIONS(416), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(883), + [sym__terminated_statement] = STATE(500), + [sym_for_statement] = STATE(501), + [sym_while_statement] = STATE(501), + [sym_if_statement] = STATE(501), + [sym_case_statement] = STATE(501), + [sym_function_definition] = STATE(501), + [sym_subshell] = STATE(501), + [sym_pipeline] = STATE(501), + [sym_list] = STATE(501), + [sym_command] = STATE(501), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(502), + [sym_declaration_command] = STATE(501), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(1086), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), }, [636] = { - [sym_word] = ACTIONS(420), - [sym__concat] = ACTIONS(420), - [anon_sym_RPAREN] = ACTIONS(420), - [anon_sym_DQUOTE] = ACTIONS(420), - [sym_raw_string] = ACTIONS(420), - [anon_sym_DOLLAR] = ACTIONS(885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(420), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), - [anon_sym_BQUOTE] = ACTIONS(420), - [anon_sym_LT_LPAREN] = ACTIONS(420), - [anon_sym_GT_LPAREN] = ACTIONS(420), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(885), + [sym_file_redirect] = STATE(1089), + [sym_file_descriptor] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2308), + [anon_sym_RPAREN] = ACTIONS(2310), + [anon_sym_PIPE_AMP] = ACTIONS(2310), + [anon_sym_AMP_AMP] = ACTIONS(2310), + [anon_sym_PIPE_PIPE] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2312), + [anon_sym_GT] = ACTIONS(2312), + [anon_sym_GT_GT] = ACTIONS(2314), + [anon_sym_AMP_GT] = ACTIONS(2312), + [anon_sym_AMP_GT_GT] = ACTIONS(2314), + [anon_sym_LT_AMP] = ACTIONS(2314), + [anon_sym_GT_AMP] = ACTIONS(2314), + [sym_comment] = ACTIONS(48), }, [637] = { - [sym_special_variable_name] = STATE(944), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(138), - [anon_sym_AT] = ACTIONS(138), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_COLON_QMARK] = ACTIONS(412), - [anon_sym_COLON_DASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(412), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), + [anon_sym_PIPE] = ACTIONS(2316), + [anon_sym_RPAREN] = ACTIONS(2318), + [anon_sym_PIPE_AMP] = ACTIONS(2318), + [anon_sym_AMP_AMP] = ACTIONS(2318), + [anon_sym_PIPE_PIPE] = ACTIONS(2318), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_comment] = ACTIONS(48), }, [638] = { - [anon_sym_RBRACE] = ACTIONS(1868), - [anon_sym_EQ] = ACTIONS(1870), - [anon_sym_LBRACK] = ACTIONS(1872), - [anon_sym_COLON] = ACTIONS(1874), - [anon_sym_COLON_QMARK] = ACTIONS(1870), - [anon_sym_COLON_DASH] = ACTIONS(1870), - [anon_sym_PERCENT] = ACTIONS(1870), - [anon_sym_SLASH] = ACTIONS(1870), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(684), + [anon_sym_for] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_case] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(2320), + [anon_sym_function] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_declare] = ACTIONS(686), + [anon_sym_typeset] = ACTIONS(686), + [anon_sym_export] = ACTIONS(686), + [anon_sym_readonly] = ACTIONS(686), + [anon_sym_local] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(684), + [anon_sym_AMP_GT] = ACTIONS(686), + [anon_sym_AMP_GT_GT] = ACTIONS(684), + [anon_sym_LT_AMP] = ACTIONS(684), + [anon_sym_GT_AMP] = ACTIONS(684), + [sym__special_characters] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(684), + [sym_raw_string] = ACTIONS(684), + [anon_sym_DOLLAR] = ACTIONS(686), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(684), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(684), + [anon_sym_BQUOTE] = ACTIONS(684), + [anon_sym_LT_LPAREN] = ACTIONS(684), + [anon_sym_GT_LPAREN] = ACTIONS(684), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(688), }, [639] = { - [anon_sym_RBRACE] = ACTIONS(1876), - [anon_sym_EQ] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1880), - [anon_sym_COLON] = ACTIONS(1882), - [anon_sym_COLON_QMARK] = ACTIONS(1878), - [anon_sym_COLON_DASH] = ACTIONS(1878), - [anon_sym_PERCENT] = ACTIONS(1878), - [anon_sym_SLASH] = ACTIONS(1878), - [sym_comment] = ACTIONS(46), + [anon_sym_PIPE] = ACTIONS(402), + [anon_sym_RPAREN] = ACTIONS(2322), + [anon_sym_SEMI_SEMI] = ACTIONS(2324), + [anon_sym_PIPE_AMP] = ACTIONS(402), + [anon_sym_AMP_AMP] = ACTIONS(408), + [anon_sym_PIPE_PIPE] = ACTIONS(408), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2324), + [anon_sym_LF] = ACTIONS(2324), + [anon_sym_AMP] = ACTIONS(2324), }, [640] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(402), + [anon_sym_RPAREN] = ACTIONS(2322), + [anon_sym_SEMI_SEMI] = ACTIONS(2324), + [anon_sym_PIPE_AMP] = ACTIONS(402), + [anon_sym_AMP_AMP] = ACTIONS(408), + [anon_sym_PIPE_PIPE] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_AMP_GT] = ACTIONS(274), + [anon_sym_AMP_GT_GT] = ACTIONS(274), + [anon_sym_LT_AMP] = ACTIONS(274), + [anon_sym_GT_AMP] = ACTIONS(274), + [sym__special_characters] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(274), + [sym_raw_string] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(274), + [anon_sym_BQUOTE] = ACTIONS(274), + [anon_sym_LT_LPAREN] = ACTIONS(274), + [anon_sym_GT_LPAREN] = ACTIONS(274), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(2324), + [anon_sym_LF] = ACTIONS(2324), + [anon_sym_AMP] = ACTIONS(2324), }, [641] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), + [sym_concatenation] = STATE(1092), + [sym_string] = STATE(1096), + [sym_array] = STATE(1092), + [sym_simple_expansion] = STATE(1096), + [sym_expansion] = STATE(1096), + [sym_command_substitution] = STATE(1096), + [sym_process_substitution] = STATE(1096), + [sym__empty_value] = ACTIONS(2326), + [anon_sym_LPAREN] = ACTIONS(2328), + [sym__special_characters] = ACTIONS(2330), + [anon_sym_DQUOTE] = ACTIONS(2332), + [sym_raw_string] = ACTIONS(2334), + [anon_sym_DOLLAR] = ACTIONS(2336), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2338), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2340), + [anon_sym_BQUOTE] = ACTIONS(2342), + [anon_sym_LT_LPAREN] = ACTIONS(2344), + [anon_sym_GT_LPAREN] = ACTIONS(2344), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2346), }, [642] = { - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_BQUOTE] = ACTIONS(1884), - [sym_comment] = ACTIONS(46), + [sym_variable_name] = ACTIONS(330), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(330), + [anon_sym_PIPE_AMP] = ACTIONS(330), + [anon_sym_AMP_AMP] = ACTIONS(330), + [anon_sym_PIPE_PIPE] = ACTIONS(1307), + [anon_sym_BQUOTE] = ACTIONS(330), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1307), + [sym_word] = ACTIONS(332), }, [643] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(1884), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), + [sym_variable_assignment] = STATE(309), + [sym_subscript] = STATE(310), + [aux_sym_declaration_command_repeat1] = STATE(643), + [sym_variable_name] = ACTIONS(2348), + [anon_sym_PIPE] = ACTIONS(2351), + [anon_sym_RPAREN] = ACTIONS(2353), + [anon_sym_PIPE_AMP] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_PIPE_PIPE] = ACTIONS(2351), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2355), + [sym_word] = ACTIONS(2358), }, [644] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(1157), + [anon_sym_PIPE_AMP] = ACTIONS(1157), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_GT_GT] = ACTIONS(1157), + [anon_sym_AMP_GT] = ACTIONS(2079), + [anon_sym_AMP_GT_GT] = ACTIONS(1157), + [anon_sym_LT_AMP] = ACTIONS(1157), + [anon_sym_GT_AMP] = ACTIONS(1157), + [anon_sym_LT_LT] = ACTIONS(2079), + [anon_sym_LT_LT_DASH] = ACTIONS(1157), + [anon_sym_LT_LT_LT] = ACTIONS(1157), + [sym__special_characters] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_raw_string] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(2079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1157), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(1157), + [anon_sym_LT_LPAREN] = ACTIONS(1157), + [anon_sym_GT_LPAREN] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1159), }, [645] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), + [aux_sym_concatenation_repeat1] = STATE(645), + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(2361), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(1157), + [anon_sym_PIPE_AMP] = ACTIONS(1157), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_GT_GT] = ACTIONS(1157), + [anon_sym_AMP_GT] = ACTIONS(2079), + [anon_sym_AMP_GT_GT] = ACTIONS(1157), + [anon_sym_LT_AMP] = ACTIONS(1157), + [anon_sym_GT_AMP] = ACTIONS(1157), + [anon_sym_LT_LT] = ACTIONS(2079), + [anon_sym_LT_LT_DASH] = ACTIONS(1157), + [anon_sym_LT_LT_LT] = ACTIONS(1157), + [sym__special_characters] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_raw_string] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(2079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1157), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(1157), + [anon_sym_LT_LPAREN] = ACTIONS(1157), + [anon_sym_GT_LPAREN] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1159), }, [646] = { - [aux_sym_concatenation_repeat1] = STATE(941), - [sym_word] = ACTIONS(542), - [sym__concat] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(542), - [anon_sym_DQUOTE] = ACTIONS(542), - [sym_raw_string] = ACTIONS(542), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(542), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(542), - [anon_sym_BQUOTE] = ACTIONS(542), - [anon_sym_LT_LPAREN] = ACTIONS(542), - [anon_sym_GT_LPAREN] = ACTIONS(542), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(909), + [sym_file_descriptor] = ACTIONS(1196), + [sym__concat] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_RPAREN] = ACTIONS(1196), + [anon_sym_PIPE_AMP] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_PIPE_PIPE] = ACTIONS(2084), + [anon_sym_LT] = ACTIONS(2084), + [anon_sym_GT] = ACTIONS(2084), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_AMP_GT] = ACTIONS(2084), + [anon_sym_AMP_GT_GT] = ACTIONS(1196), + [anon_sym_LT_AMP] = ACTIONS(1196), + [anon_sym_GT_AMP] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(2084), + [anon_sym_LT_LT_DASH] = ACTIONS(1196), + [anon_sym_LT_LT_LT] = ACTIONS(1196), + [sym__special_characters] = ACTIONS(2084), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_raw_string] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [anon_sym_LT_LPAREN] = ACTIONS(1196), + [anon_sym_GT_LPAREN] = ACTIONS(1196), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1198), }, [647] = { - [sym_file_descriptor] = ACTIONS(1888), - [sym_word] = ACTIONS(1888), - [sym_variable_name] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_RPAREN] = ACTIONS(1890), - [anon_sym_SEMI_SEMI] = ACTIONS(1890), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(1890), - [anon_sym_GT] = ACTIONS(1890), - [anon_sym_GT_GT] = ACTIONS(1890), - [anon_sym_AMP_GT] = ACTIONS(1890), - [anon_sym_AMP_GT_GT] = ACTIONS(1890), - [anon_sym_LT_AMP] = ACTIONS(1890), - [anon_sym_GT_AMP] = ACTIONS(1890), - [anon_sym_DQUOTE] = ACTIONS(1890), - [sym_raw_string] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(1890), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), - [anon_sym_BQUOTE] = ACTIONS(1890), - [anon_sym_LT_LPAREN] = ACTIONS(1890), - [anon_sym_GT_LPAREN] = ACTIONS(1890), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1890), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_LF] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1890), + [sym_concatenation] = STATE(1105), + [sym_string] = STATE(1104), + [sym_simple_expansion] = STATE(1104), + [sym_expansion] = STATE(1104), + [sym_command_substitution] = STATE(1104), + [sym_process_substitution] = STATE(1104), + [anon_sym_RBRACE] = ACTIONS(2364), + [sym__special_characters] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(2368), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2370), }, [648] = { - [sym_concatenation] = STATE(364), - [sym_string] = STATE(355), - [sym_simple_expansion] = STATE(355), - [sym_expansion] = STATE(355), - [sym_command_substitution] = STATE(355), - [sym_process_substitution] = STATE(355), - [aux_sym_for_statement_repeat1] = STATE(648), - [sym_word] = ACTIONS(1892), - [anon_sym_RPAREN] = ACTIONS(1168), - [anon_sym_DQUOTE] = ACTIONS(1895), - [sym_raw_string] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1901), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1904), - [anon_sym_BQUOTE] = ACTIONS(1907), - [anon_sym_LT_LPAREN] = ACTIONS(1910), - [anon_sym_GT_LPAREN] = ACTIONS(1910), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1913), + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_PIPE_AMP] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1241), + [anon_sym_PIPE_PIPE] = ACTIONS(2094), + [anon_sym_LT] = ACTIONS(2094), + [anon_sym_GT] = ACTIONS(2094), + [anon_sym_GT_GT] = ACTIONS(1241), + [anon_sym_AMP_GT] = ACTIONS(2094), + [anon_sym_AMP_GT_GT] = ACTIONS(1241), + [anon_sym_LT_AMP] = ACTIONS(1241), + [anon_sym_GT_AMP] = ACTIONS(1241), + [anon_sym_LT_LT] = ACTIONS(2094), + [anon_sym_LT_LT_DASH] = ACTIONS(1241), + [anon_sym_LT_LT_LT] = ACTIONS(1241), + [sym__special_characters] = ACTIONS(2094), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_raw_string] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(2094), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1241), + [anon_sym_BQUOTE] = ACTIONS(1241), + [anon_sym_LT_LPAREN] = ACTIONS(1241), + [anon_sym_GT_LPAREN] = ACTIONS(1241), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1243), }, [649] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_word] = ACTIONS(931), - [sym__concat] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_RPAREN] = ACTIONS(933), - [anon_sym_SEMI_SEMI] = ACTIONS(933), - [anon_sym_PIPE_AMP] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(933), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_GT_GT] = ACTIONS(933), - [anon_sym_AMP_GT] = ACTIONS(933), - [anon_sym_AMP_GT_GT] = ACTIONS(933), - [anon_sym_LT_AMP] = ACTIONS(933), - [anon_sym_GT_AMP] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_raw_string] = ACTIONS(933), - [anon_sym_DOLLAR] = ACTIONS(933), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), - [anon_sym_BQUOTE] = ACTIONS(933), - [anon_sym_LT_LPAREN] = ACTIONS(933), - [anon_sym_GT_LPAREN] = ACTIONS(933), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), + [sym_concatenation] = STATE(1109), + [sym_string] = STATE(1108), + [sym_simple_expansion] = STATE(1108), + [sym_expansion] = STATE(1108), + [sym_command_substitution] = STATE(1108), + [sym_process_substitution] = STATE(1108), + [anon_sym_RBRACE] = ACTIONS(2372), + [sym__special_characters] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(2376), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2378), }, [650] = { - [anon_sym_RBRACE] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1918), - [sym_comment] = ACTIONS(46), + [anon_sym_EQ] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), }, [651] = { - [anon_sym_RBRACE] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1922), - [sym_comment] = ACTIONS(46), + [anon_sym_RBRACE] = ACTIONS(2382), + [anon_sym_EQ] = ACTIONS(2384), + [anon_sym_COLON] = ACTIONS(2386), + [anon_sym_COLON_QMARK] = ACTIONS(2384), + [anon_sym_COLON_DASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2384), + [sym_comment] = ACTIONS(48), }, [652] = { - [sym_file_descriptor] = ACTIONS(960), - [sym_word] = ACTIONS(960), - [sym__concat] = ACTIONS(960), - [sym_variable_name] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_RPAREN] = ACTIONS(962), - [anon_sym_SEMI_SEMI] = ACTIONS(962), - [anon_sym_PIPE_AMP] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(962), - [anon_sym_PIPE_PIPE] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(962), - [anon_sym_GT] = ACTIONS(962), - [anon_sym_GT_GT] = ACTIONS(962), - [anon_sym_AMP_GT] = ACTIONS(962), - [anon_sym_AMP_GT_GT] = ACTIONS(962), - [anon_sym_LT_AMP] = ACTIONS(962), - [anon_sym_GT_AMP] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_raw_string] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(962), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_LT_LPAREN] = ACTIONS(962), - [anon_sym_GT_LPAREN] = ACTIONS(962), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_LF] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_EQ] = ACTIONS(2390), + [anon_sym_COLON] = ACTIONS(2392), + [anon_sym_COLON_QMARK] = ACTIONS(2390), + [anon_sym_COLON_DASH] = ACTIONS(2390), + [anon_sym_PERCENT] = ACTIONS(2390), + [anon_sym_SLASH] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2390), + [sym_comment] = ACTIONS(48), }, [653] = { - [sym_concatenation] = STATE(960), - [sym_string] = STATE(957), - [sym_simple_expansion] = STATE(957), - [sym_expansion] = STATE(957), - [sym_command_substitution] = STATE(957), - [sym_process_substitution] = STATE(957), - [sym_word] = ACTIONS(1924), - [anon_sym_RBRACE] = ACTIONS(1926), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1924), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(2364), + [anon_sym_EQ] = ACTIONS(2380), + [anon_sym_COLON] = ACTIONS(2394), + [anon_sym_COLON_QMARK] = ACTIONS(2380), + [anon_sym_COLON_DASH] = ACTIONS(2380), + [anon_sym_PERCENT] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [sym_comment] = ACTIONS(48), }, [654] = { - [anon_sym_AT] = ACTIONS(1930), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(1269), + [sym__concat] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_RPAREN] = ACTIONS(1269), + [anon_sym_PIPE_AMP] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_GT] = ACTIONS(2120), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_AMP_GT] = ACTIONS(2120), + [anon_sym_AMP_GT_GT] = ACTIONS(1269), + [anon_sym_LT_AMP] = ACTIONS(1269), + [anon_sym_GT_AMP] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(2120), + [anon_sym_LT_LT_DASH] = ACTIONS(1269), + [anon_sym_LT_LT_LT] = ACTIONS(1269), + [sym__special_characters] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_raw_string] = ACTIONS(1269), + [anon_sym_DOLLAR] = ACTIONS(2120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1269), + [anon_sym_BQUOTE] = ACTIONS(1269), + [anon_sym_LT_LPAREN] = ACTIONS(1269), + [anon_sym_GT_LPAREN] = ACTIONS(1269), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1271), }, [655] = { - [sym_file_descriptor] = ACTIONS(972), - [sym_word] = ACTIONS(972), - [sym__concat] = ACTIONS(972), - [sym_variable_name] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(974), - [anon_sym_SEMI_SEMI] = ACTIONS(974), - [anon_sym_PIPE_AMP] = ACTIONS(974), - [anon_sym_AMP_AMP] = ACTIONS(974), - [anon_sym_PIPE_PIPE] = ACTIONS(974), - [anon_sym_LT] = ACTIONS(974), - [anon_sym_GT] = ACTIONS(974), - [anon_sym_GT_GT] = ACTIONS(974), - [anon_sym_AMP_GT] = ACTIONS(974), - [anon_sym_AMP_GT_GT] = ACTIONS(974), - [anon_sym_LT_AMP] = ACTIONS(974), - [anon_sym_GT_AMP] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym_raw_string] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(974), - [anon_sym_BQUOTE] = ACTIONS(974), - [anon_sym_LT_LPAREN] = ACTIONS(974), - [anon_sym_GT_LPAREN] = ACTIONS(974), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_LF] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), + [sym_concatenation] = STATE(1118), + [sym_string] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [anon_sym_RBRACE] = ACTIONS(2396), + [sym__special_characters] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(2400), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2402), }, [656] = { - [sym_concatenation] = STATE(964), - [sym_string] = STATE(962), - [sym_simple_expansion] = STATE(962), - [sym_expansion] = STATE(962), - [sym_command_substitution] = STATE(962), - [sym_process_substitution] = STATE(962), - [sym_word] = ACTIONS(1932), - [anon_sym_RBRACE] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1932), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1934), + [sym_file_descriptor] = ACTIONS(1281), + [sym__concat] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_RPAREN] = ACTIONS(1281), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(2130), + [anon_sym_LT] = ACTIONS(2130), + [anon_sym_GT] = ACTIONS(2130), + [anon_sym_GT_GT] = ACTIONS(1281), + [anon_sym_AMP_GT] = ACTIONS(2130), + [anon_sym_AMP_GT_GT] = ACTIONS(1281), + [anon_sym_LT_AMP] = ACTIONS(1281), + [anon_sym_GT_AMP] = ACTIONS(1281), + [anon_sym_LT_LT] = ACTIONS(2130), + [anon_sym_LT_LT_DASH] = ACTIONS(1281), + [anon_sym_LT_LT_LT] = ACTIONS(1281), + [sym__special_characters] = ACTIONS(2130), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_raw_string] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(2130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1281), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1283), }, [657] = { - [anon_sym_AT] = ACTIONS(1936), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(1379), + [sym__concat] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_RPAREN] = ACTIONS(1379), + [anon_sym_PIPE_AMP] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(2132), + [anon_sym_LT] = ACTIONS(2132), + [anon_sym_GT] = ACTIONS(2132), + [anon_sym_GT_GT] = ACTIONS(1379), + [anon_sym_AMP_GT] = ACTIONS(2132), + [anon_sym_AMP_GT_GT] = ACTIONS(1379), + [anon_sym_LT_AMP] = ACTIONS(1379), + [anon_sym_GT_AMP] = ACTIONS(1379), + [anon_sym_LT_LT] = ACTIONS(2132), + [anon_sym_LT_LT_DASH] = ACTIONS(1379), + [anon_sym_LT_LT_LT] = ACTIONS(1379), + [sym__special_characters] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(1379), + [sym_raw_string] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(2132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1379), + [anon_sym_BQUOTE] = ACTIONS(1379), + [anon_sym_LT_LPAREN] = ACTIONS(1379), + [anon_sym_GT_LPAREN] = ACTIONS(1379), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1381), }, [658] = { - [sym_file_descriptor] = ACTIONS(1066), - [sym_word] = ACTIONS(1066), - [sym__concat] = ACTIONS(1066), - [sym_variable_name] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_SEMI_SEMI] = ACTIONS(1068), - [anon_sym_PIPE_AMP] = ACTIONS(1068), - [anon_sym_AMP_AMP] = ACTIONS(1068), - [anon_sym_PIPE_PIPE] = ACTIONS(1068), - [anon_sym_LT] = ACTIONS(1068), - [anon_sym_GT] = ACTIONS(1068), - [anon_sym_GT_GT] = ACTIONS(1068), - [anon_sym_AMP_GT] = ACTIONS(1068), - [anon_sym_AMP_GT_GT] = ACTIONS(1068), - [anon_sym_LT_AMP] = ACTIONS(1068), - [anon_sym_GT_AMP] = ACTIONS(1068), - [anon_sym_DQUOTE] = ACTIONS(1068), - [sym_raw_string] = ACTIONS(1068), - [anon_sym_DOLLAR] = ACTIONS(1068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1068), - [anon_sym_BQUOTE] = ACTIONS(1068), - [anon_sym_LT_LPAREN] = ACTIONS(1068), - [anon_sym_GT_LPAREN] = ACTIONS(1068), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_LF] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1068), + [sym_file_descriptor] = ACTIONS(1513), + [sym__concat] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(1513), + [anon_sym_PIPE_AMP] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(2134), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_GT] = ACTIONS(2134), + [anon_sym_GT_GT] = ACTIONS(1513), + [anon_sym_AMP_GT] = ACTIONS(2134), + [anon_sym_AMP_GT_GT] = ACTIONS(1513), + [anon_sym_LT_AMP] = ACTIONS(1513), + [anon_sym_GT_AMP] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(2134), + [anon_sym_LT_LT_DASH] = ACTIONS(1513), + [anon_sym_LT_LT_LT] = ACTIONS(1513), + [sym__special_characters] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(1513), + [sym_raw_string] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(2134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1513), + [anon_sym_BQUOTE] = ACTIONS(1513), + [anon_sym_LT_LPAREN] = ACTIONS(1513), + [anon_sym_GT_LPAREN] = ACTIONS(1513), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1515), }, [659] = { - [sym_file_descriptor] = ACTIONS(1122), - [sym_word] = ACTIONS(1122), - [sym__concat] = ACTIONS(1122), - [sym_variable_name] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1124), - [anon_sym_RPAREN] = ACTIONS(1124), - [anon_sym_SEMI_SEMI] = ACTIONS(1124), - [anon_sym_PIPE_AMP] = ACTIONS(1124), - [anon_sym_AMP_AMP] = ACTIONS(1124), - [anon_sym_PIPE_PIPE] = ACTIONS(1124), - [anon_sym_LT] = ACTIONS(1124), - [anon_sym_GT] = ACTIONS(1124), - [anon_sym_GT_GT] = ACTIONS(1124), - [anon_sym_AMP_GT] = ACTIONS(1124), - [anon_sym_AMP_GT_GT] = ACTIONS(1124), - [anon_sym_LT_AMP] = ACTIONS(1124), - [anon_sym_GT_AMP] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1124), - [sym_raw_string] = ACTIONS(1124), - [anon_sym_DOLLAR] = ACTIONS(1124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1124), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1124), - [anon_sym_BQUOTE] = ACTIONS(1124), - [anon_sym_LT_LPAREN] = ACTIONS(1124), - [anon_sym_GT_LPAREN] = ACTIONS(1124), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1124), + [sym_compound_statement] = STATE(1119), + [anon_sym_LBRACE] = ACTIONS(1325), + [sym_comment] = ACTIONS(48), }, [660] = { - [sym__concat] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(675), - [anon_sym_RBRACK] = ACTIONS(675), - [sym_comment] = ACTIONS(46), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_RPAREN] = ACTIONS(2406), + [anon_sym_PIPE_AMP] = ACTIONS(2406), + [anon_sym_AMP_AMP] = ACTIONS(2406), + [anon_sym_PIPE_PIPE] = ACTIONS(2406), + [anon_sym_BQUOTE] = ACTIONS(2406), + [sym_comment] = ACTIONS(48), }, [661] = { - [sym__concat] = ACTIONS(679), - [anon_sym_PIPE] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(679), - [anon_sym_RBRACE] = ACTIONS(679), - [anon_sym_RBRACK] = ACTIONS(679), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_RPAREN] = ACTIONS(2406), + [anon_sym_PIPE_AMP] = ACTIONS(2406), + [anon_sym_AMP_AMP] = ACTIONS(2406), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), }, [662] = { - [aux_sym_concatenation_repeat1] = STATE(662), - [sym__concat] = ACTIONS(1938), - [anon_sym_RBRACK] = ACTIONS(675), - [sym_comment] = ACTIONS(46), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(2408), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(2408), + [anon_sym_PIPE_PIPE] = ACTIONS(2408), + [sym_comment] = ACTIONS(48), }, [663] = { - [sym__concat] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_RBRACK] = ACTIONS(931), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(2408), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(2408), + [anon_sym_PIPE_PIPE] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), }, [664] = { - [anon_sym_RBRACE] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1943), - [sym_comment] = ACTIONS(46), + [sym_concatenation] = STATE(1122), + [sym_string] = STATE(1121), + [sym_simple_expansion] = STATE(1121), + [sym_expansion] = STATE(1121), + [sym_command_substitution] = STATE(1121), + [sym_process_substitution] = STATE(1121), + [sym__special_characters] = ACTIONS(2412), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym_raw_string] = ACTIONS(2414), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1395), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1397), + [anon_sym_BQUOTE] = ACTIONS(1399), + [anon_sym_LT_LPAREN] = ACTIONS(1401), + [anon_sym_GT_LPAREN] = ACTIONS(1401), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2416), }, [665] = { - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_LBRACK] = ACTIONS(1947), - [sym_comment] = ACTIONS(46), + [aux_sym_concatenation_repeat1] = STATE(1124), + [sym_file_descriptor] = ACTIONS(446), + [sym__concat] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(450), + [anon_sym_RPAREN] = ACTIONS(446), + [anon_sym_PIPE_AMP] = ACTIONS(446), + [anon_sym_AMP_AMP] = ACTIONS(446), + [anon_sym_PIPE_PIPE] = ACTIONS(446), + [anon_sym_LT] = ACTIONS(450), + [anon_sym_GT] = ACTIONS(450), + [anon_sym_GT_GT] = ACTIONS(446), + [anon_sym_AMP_GT] = ACTIONS(450), + [anon_sym_AMP_GT_GT] = ACTIONS(446), + [anon_sym_LT_AMP] = ACTIONS(446), + [anon_sym_GT_AMP] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(450), + [anon_sym_LT_LT_DASH] = ACTIONS(446), + [anon_sym_LT_LT_LT] = ACTIONS(446), + [sym_comment] = ACTIONS(48), }, [666] = { - [sym__concat] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_RBRACK] = ACTIONS(960), - [sym_comment] = ACTIONS(46), + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(1126), + [anon_sym_DQUOTE] = ACTIONS(2420), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), }, [667] = { - [sym_concatenation] = STATE(973), - [sym_string] = STATE(970), - [sym_simple_expansion] = STATE(970), - [sym_expansion] = STATE(970), - [sym_command_substitution] = STATE(970), - [sym_process_substitution] = STATE(970), - [sym_word] = ACTIONS(1949), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1949), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1953), + [aux_sym_concatenation_repeat1] = STATE(1124), + [sym_file_descriptor] = ACTIONS(454), + [sym__concat] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(456), + [anon_sym_RPAREN] = ACTIONS(454), + [anon_sym_PIPE_AMP] = ACTIONS(454), + [anon_sym_AMP_AMP] = ACTIONS(454), + [anon_sym_PIPE_PIPE] = ACTIONS(454), + [anon_sym_LT] = ACTIONS(456), + [anon_sym_GT] = ACTIONS(456), + [anon_sym_GT_GT] = ACTIONS(454), + [anon_sym_AMP_GT] = ACTIONS(456), + [anon_sym_AMP_GT_GT] = ACTIONS(454), + [anon_sym_LT_AMP] = ACTIONS(454), + [anon_sym_GT_AMP] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(456), + [anon_sym_LT_LT_DASH] = ACTIONS(454), + [anon_sym_LT_LT_LT] = ACTIONS(454), + [sym_comment] = ACTIONS(48), }, [668] = { - [anon_sym_AT] = ACTIONS(1955), - [sym_comment] = ACTIONS(46), + [anon_sym_DOLLAR] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_AT] = ACTIONS(2422), + [anon_sym_QMARK] = ACTIONS(2422), + [anon_sym_0] = ACTIONS(2426), + [anon_sym__] = ACTIONS(2426), }, [669] = { - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(972), - [sym_comment] = ACTIONS(46), + [sym_subscript] = STATE(1133), + [sym_variable_name] = ACTIONS(2428), + [anon_sym_DOLLAR] = ACTIONS(2430), + [anon_sym_POUND] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2430), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2430), + [anon_sym_QMARK] = ACTIONS(2430), + [anon_sym_0] = ACTIONS(2436), + [anon_sym__] = ACTIONS(2436), }, [670] = { - [sym_concatenation] = STATE(977), - [sym_string] = STATE(975), - [sym_simple_expansion] = STATE(975), - [sym_expansion] = STATE(975), - [sym_command_substitution] = STATE(975), - [sym_process_substitution] = STATE(975), - [sym_word] = ACTIONS(1957), - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1959), + [sym_for_statement] = STATE(1134), + [sym_while_statement] = STATE(1134), + [sym_if_statement] = STATE(1134), + [sym_case_statement] = STATE(1134), + [sym_function_definition] = STATE(1134), + [sym_subshell] = STATE(1134), + [sym_pipeline] = STATE(1134), + [sym_list] = STATE(1134), + [sym_command] = STATE(1134), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1135), + [sym_declaration_command] = STATE(1134), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, [671] = { - [anon_sym_AT] = ACTIONS(1961), - [sym_comment] = ACTIONS(46), + [sym_for_statement] = STATE(1136), + [sym_while_statement] = STATE(1136), + [sym_if_statement] = STATE(1136), + [sym_case_statement] = STATE(1136), + [sym_function_definition] = STATE(1136), + [sym_subshell] = STATE(1136), + [sym_pipeline] = STATE(1136), + [sym_list] = STATE(1136), + [sym_command] = STATE(1136), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(1137), + [sym_declaration_command] = STATE(1136), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), }, [672] = { - [sym__concat] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1066), - [anon_sym_RPAREN] = ACTIONS(1066), - [anon_sym_RBRACE] = ACTIONS(1066), - [anon_sym_RBRACK] = ACTIONS(1066), - [sym_comment] = ACTIONS(46), + [sym_for_statement] = STATE(1138), + [sym_while_statement] = STATE(1138), + [sym_if_statement] = STATE(1138), + [sym_case_statement] = STATE(1138), + [sym_function_definition] = STATE(1138), + [sym_subshell] = STATE(1138), + [sym_pipeline] = STATE(1138), + [sym_list] = STATE(1138), + [sym_command] = STATE(1138), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1139), + [sym_declaration_command] = STATE(1138), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, [673] = { - [sym__concat] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1122), - [anon_sym_RPAREN] = ACTIONS(1122), - [anon_sym_RBRACE] = ACTIONS(1122), - [anon_sym_RBRACK] = ACTIONS(1122), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(454), + [anon_sym_PIPE] = ACTIONS(456), + [anon_sym_RPAREN] = ACTIONS(454), + [anon_sym_PIPE_AMP] = ACTIONS(454), + [anon_sym_AMP_AMP] = ACTIONS(454), + [anon_sym_PIPE_PIPE] = ACTIONS(454), + [anon_sym_LT] = ACTIONS(456), + [anon_sym_GT] = ACTIONS(456), + [anon_sym_GT_GT] = ACTIONS(454), + [anon_sym_AMP_GT] = ACTIONS(456), + [anon_sym_AMP_GT_GT] = ACTIONS(454), + [anon_sym_LT_AMP] = ACTIONS(454), + [anon_sym_GT_AMP] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(456), + [anon_sym_LT_LT_DASH] = ACTIONS(454), + [anon_sym_LT_LT_LT] = ACTIONS(454), + [anon_sym_BQUOTE] = ACTIONS(454), + [sym_comment] = ACTIONS(48), }, [674] = { - [sym_string] = STATE(979), - [sym_simple_expansion] = STATE(979), - [sym_expansion] = STATE(979), - [sym_command_substitution] = STATE(979), - [sym_process_substitution] = STATE(979), - [sym_word] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(746), - [sym_raw_string] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(748), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(752), - [anon_sym_BQUOTE] = ACTIONS(754), - [anon_sym_LT_LPAREN] = ACTIONS(756), - [anon_sym_GT_LPAREN] = ACTIONS(756), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1965), + [sym_file_descriptor] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(2438), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_PIPE_AMP] = ACTIONS(1551), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_PIPE_PIPE] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(2438), + [anon_sym_GT] = ACTIONS(2438), + [anon_sym_GT_GT] = ACTIONS(1551), + [anon_sym_AMP_GT] = ACTIONS(2438), + [anon_sym_AMP_GT_GT] = ACTIONS(1551), + [anon_sym_LT_AMP] = ACTIONS(1551), + [anon_sym_GT_AMP] = ACTIONS(1551), + [anon_sym_LT_LT] = ACTIONS(2438), + [anon_sym_LT_LT_DASH] = ACTIONS(1551), + [anon_sym_LT_LT_LT] = ACTIONS(1551), + [anon_sym_BQUOTE] = ACTIONS(1551), + [sym_comment] = ACTIONS(48), }, [675] = { - [aux_sym_concatenation_repeat1] = STATE(981), - [sym_word] = ACTIONS(254), - [sym__concat] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(256), - [anon_sym_DQUOTE] = ACTIONS(256), - [sym_raw_string] = ACTIONS(256), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(256), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(256), - [anon_sym_BQUOTE] = ACTIONS(256), - [anon_sym_LT_LPAREN] = ACTIONS(256), - [anon_sym_GT_LPAREN] = ACTIONS(256), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(256), - [anon_sym_SEMI] = ACTIONS(256), - [anon_sym_LF] = ACTIONS(256), - [anon_sym_AMP] = ACTIONS(256), + [sym_simple_expansion] = STATE(751), + [sym_expansion] = STATE(751), + [aux_sym_heredoc_repeat1] = STATE(1141), + [sym__heredoc_middle] = ACTIONS(1555), + [sym__heredoc_end] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(1559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1561), + [sym_comment] = ACTIONS(48), }, [676] = { - [sym_word] = ACTIONS(394), - [sym__concat] = ACTIONS(394), - [anon_sym_SEMI_SEMI] = ACTIONS(396), - [anon_sym_DQUOTE] = ACTIONS(396), - [sym_raw_string] = ACTIONS(396), - [anon_sym_DOLLAR] = ACTIONS(396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(396), - [anon_sym_BQUOTE] = ACTIONS(396), - [anon_sym_LT_LPAREN] = ACTIONS(396), - [anon_sym_GT_LPAREN] = ACTIONS(396), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(396), - [anon_sym_SEMI] = ACTIONS(396), - [anon_sym_LF] = ACTIONS(396), - [anon_sym_AMP] = ACTIONS(396), + [sym_file_descriptor] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_RPAREN] = ACTIONS(1563), + [anon_sym_PIPE_AMP] = ACTIONS(1563), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_PIPE_PIPE] = ACTIONS(1563), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(1563), + [anon_sym_AMP_GT] = ACTIONS(2442), + [anon_sym_AMP_GT_GT] = ACTIONS(1563), + [anon_sym_LT_AMP] = ACTIONS(1563), + [anon_sym_GT_AMP] = ACTIONS(1563), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_LT_LT_DASH] = ACTIONS(1563), + [anon_sym_LT_LT_LT] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_comment] = ACTIONS(48), }, [677] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(252), - [anon_sym_DQUOTE] = ACTIONS(1967), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), + [aux_sym_concatenation_repeat1] = STATE(1124), + [sym_file_descriptor] = ACTIONS(1567), + [sym__concat] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2444), + [anon_sym_RPAREN] = ACTIONS(1567), + [anon_sym_PIPE_AMP] = ACTIONS(1567), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_PIPE_PIPE] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(2444), + [anon_sym_GT] = ACTIONS(2444), + [anon_sym_GT_GT] = ACTIONS(1567), + [anon_sym_AMP_GT] = ACTIONS(2444), + [anon_sym_AMP_GT_GT] = ACTIONS(1567), + [anon_sym_LT_AMP] = ACTIONS(1567), + [anon_sym_GT_AMP] = ACTIONS(1567), + [anon_sym_LT_LT] = ACTIONS(2444), + [anon_sym_LT_LT_DASH] = ACTIONS(1567), + [anon_sym_LT_LT_LT] = ACTIONS(1567), + [sym_comment] = ACTIONS(48), }, [678] = { - [sym_word] = ACTIONS(412), - [sym__concat] = ACTIONS(412), - [anon_sym_SEMI_SEMI] = ACTIONS(414), - [anon_sym_DQUOTE] = ACTIONS(414), - [sym_raw_string] = ACTIONS(414), - [anon_sym_DOLLAR] = ACTIONS(414), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(414), - [anon_sym_BQUOTE] = ACTIONS(414), - [anon_sym_LT_LPAREN] = ACTIONS(414), - [anon_sym_GT_LPAREN] = ACTIONS(414), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(414), - [anon_sym_SEMI] = ACTIONS(414), - [anon_sym_LF] = ACTIONS(414), - [anon_sym_AMP] = ACTIONS(414), + [aux_sym_concatenation_repeat1] = STATE(1124), + [sym_file_descriptor] = ACTIONS(1571), + [sym__concat] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_RPAREN] = ACTIONS(1571), + [anon_sym_PIPE_AMP] = ACTIONS(1571), + [anon_sym_AMP_AMP] = ACTIONS(1571), + [anon_sym_PIPE_PIPE] = ACTIONS(1571), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_GT] = ACTIONS(2446), + [anon_sym_GT_GT] = ACTIONS(1571), + [anon_sym_AMP_GT] = ACTIONS(2446), + [anon_sym_AMP_GT_GT] = ACTIONS(1571), + [anon_sym_LT_AMP] = ACTIONS(1571), + [anon_sym_GT_AMP] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(2446), + [anon_sym_LT_LT_DASH] = ACTIONS(1571), + [anon_sym_LT_LT_LT] = ACTIONS(1571), + [sym_comment] = ACTIONS(48), }, [679] = { - [sym_word] = ACTIONS(416), - [sym__concat] = ACTIONS(416), - [anon_sym_SEMI_SEMI] = ACTIONS(418), - [anon_sym_DQUOTE] = ACTIONS(418), - [sym_raw_string] = ACTIONS(418), - [anon_sym_DOLLAR] = ACTIONS(418), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(418), - [anon_sym_BQUOTE] = ACTIONS(418), - [anon_sym_LT_LPAREN] = ACTIONS(418), - [anon_sym_GT_LPAREN] = ACTIONS(418), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(418), - [anon_sym_SEMI] = ACTIONS(418), - [anon_sym_LF] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), + [sym_file_descriptor] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_RPAREN] = ACTIONS(1571), + [anon_sym_PIPE_AMP] = ACTIONS(1571), + [anon_sym_AMP_AMP] = ACTIONS(1571), + [anon_sym_PIPE_PIPE] = ACTIONS(1571), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_GT] = ACTIONS(2446), + [anon_sym_GT_GT] = ACTIONS(1571), + [anon_sym_AMP_GT] = ACTIONS(2446), + [anon_sym_AMP_GT_GT] = ACTIONS(1571), + [anon_sym_LT_AMP] = ACTIONS(1571), + [anon_sym_GT_AMP] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(2446), + [anon_sym_LT_LT_DASH] = ACTIONS(1571), + [anon_sym_LT_LT_LT] = ACTIONS(1571), + [anon_sym_BQUOTE] = ACTIONS(1571), + [sym_comment] = ACTIONS(48), }, [680] = { - [sym_word] = ACTIONS(420), - [sym__concat] = ACTIONS(420), - [anon_sym_SEMI_SEMI] = ACTIONS(422), - [anon_sym_DQUOTE] = ACTIONS(422), - [sym_raw_string] = ACTIONS(422), - [anon_sym_DOLLAR] = ACTIONS(422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(422), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(422), - [anon_sym_BQUOTE] = ACTIONS(422), - [anon_sym_LT_LPAREN] = ACTIONS(422), - [anon_sym_GT_LPAREN] = ACTIONS(422), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LF] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(422), - }, - [681] = { - [sym_special_variable_name] = STATE(984), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(138), - [anon_sym_AT] = ACTIONS(138), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_COLON_QMARK] = ACTIONS(412), - [anon_sym_COLON_DASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(412), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [682] = { - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_EQ] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_COLON] = ACTIONS(1977), - [anon_sym_COLON_QMARK] = ACTIONS(1973), - [anon_sym_COLON_DASH] = ACTIONS(1973), - [anon_sym_PERCENT] = ACTIONS(1973), - [anon_sym_SLASH] = ACTIONS(1973), - [sym_comment] = ACTIONS(46), - }, - [683] = { - [anon_sym_RBRACE] = ACTIONS(1979), - [anon_sym_EQ] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1983), - [anon_sym_COLON] = ACTIONS(1985), - [anon_sym_COLON_QMARK] = ACTIONS(1981), - [anon_sym_COLON_DASH] = ACTIONS(1981), - [anon_sym_PERCENT] = ACTIONS(1981), - [anon_sym_SLASH] = ACTIONS(1981), - [sym_comment] = ACTIONS(46), - }, - [684] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1987), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [685] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1987), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [686] = { - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_BQUOTE] = ACTIONS(1987), - [sym_comment] = ACTIONS(46), - }, - [687] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(1987), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [688] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1989), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [689] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(1989), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [690] = { - [aux_sym_concatenation_repeat1] = STATE(981), - [sym_word] = ACTIONS(542), - [sym__concat] = ACTIONS(1300), - [anon_sym_SEMI_SEMI] = ACTIONS(544), - [anon_sym_DQUOTE] = ACTIONS(544), - [sym_raw_string] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(544), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(544), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(544), - [anon_sym_BQUOTE] = ACTIONS(544), - [anon_sym_LT_LPAREN] = ACTIONS(544), - [anon_sym_GT_LPAREN] = ACTIONS(544), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_LF] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(544), - }, - [691] = { - [sym_do_group] = STATE(993), - [anon_sym_do] = ACTIONS(300), - [sym_comment] = ACTIONS(46), - }, - [692] = { - [sym_concatenation] = STATE(408), - [sym_string] = STATE(400), - [sym_simple_expansion] = STATE(400), - [sym_expansion] = STATE(400), - [sym_command_substitution] = STATE(400), - [sym_process_substitution] = STATE(400), - [aux_sym_for_statement_repeat1] = STATE(692), - [sym_word] = ACTIONS(1991), - [anon_sym_SEMI_SEMI] = ACTIONS(1173), - [anon_sym_DQUOTE] = ACTIONS(1994), - [sym_raw_string] = ACTIONS(1997), - [anon_sym_DOLLAR] = ACTIONS(2000), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2003), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2006), - [anon_sym_BQUOTE] = ACTIONS(2009), - [anon_sym_LT_LPAREN] = ACTIONS(2012), - [anon_sym_GT_LPAREN] = ACTIONS(2012), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym_LF] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1173), - }, - [693] = { - [sym_file_descriptor] = ACTIONS(546), - [sym_word] = ACTIONS(546), - [sym_variable_name] = ACTIONS(546), - [anon_sym_for] = ACTIONS(548), - [anon_sym_while] = ACTIONS(548), - [anon_sym_done] = ACTIONS(548), - [anon_sym_if] = ACTIONS(548), - [anon_sym_case] = ACTIONS(548), - [anon_sym_function] = ACTIONS(548), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_typeset] = ACTIONS(548), - [anon_sym_export] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(548), - [anon_sym_local] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_GT] = ACTIONS(548), - [anon_sym_GT_GT] = ACTIONS(546), - [anon_sym_AMP_GT] = ACTIONS(548), - [anon_sym_AMP_GT_GT] = ACTIONS(546), - [anon_sym_LT_AMP] = ACTIONS(546), - [anon_sym_GT_AMP] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(546), - [sym_raw_string] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(546), - [anon_sym_BQUOTE] = ACTIONS(546), - [anon_sym_LT_LPAREN] = ACTIONS(546), - [anon_sym_GT_LPAREN] = ACTIONS(546), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(550), - }, - [694] = { - [anon_sym_PIPE] = ACTIONS(2018), - [anon_sym_RPAREN] = ACTIONS(2018), - [anon_sym_SEMI_SEMI] = ACTIONS(2018), - [anon_sym_PIPE_AMP] = ACTIONS(2018), - [anon_sym_AMP_AMP] = ACTIONS(2018), - [anon_sym_PIPE_PIPE] = ACTIONS(2018), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2018), - [anon_sym_LF] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2018), - }, - [695] = { - [sym__terminated_statement] = STATE(411), - [sym_for_statement] = STATE(412), - [sym_while_statement] = STATE(412), - [sym_if_statement] = STATE(412), - [sym_case_statement] = STATE(412), - [sym_function_definition] = STATE(412), - [sym_subshell] = STATE(412), - [sym_pipeline] = STATE(412), - [sym_list] = STATE(412), - [sym_command] = STATE(412), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(413), - [sym_declaration_command] = STATE(412), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(695), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(590), - [sym_word] = ACTIONS(593), - [sym_variable_name] = ACTIONS(596), - [anon_sym_for] = ACTIONS(601), - [anon_sym_while] = ACTIONS(604), - [anon_sym_done] = ACTIONS(2020), - [anon_sym_if] = ACTIONS(607), - [anon_sym_case] = ACTIONS(610), - [anon_sym_function] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_declare] = ACTIONS(619), - [anon_sym_typeset] = ACTIONS(619), - [anon_sym_export] = ACTIONS(619), - [anon_sym_readonly] = ACTIONS(619), - [anon_sym_local] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(622), - [anon_sym_GT_GT] = ACTIONS(625), - [anon_sym_AMP_GT] = ACTIONS(622), - [anon_sym_AMP_GT_GT] = ACTIONS(625), - [anon_sym_LT_AMP] = ACTIONS(625), - [anon_sym_GT_AMP] = ACTIONS(625), - [anon_sym_DQUOTE] = ACTIONS(628), - [sym_raw_string] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(634), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(637), - [anon_sym_BQUOTE] = ACTIONS(640), - [anon_sym_LT_LPAREN] = ACTIONS(643), - [anon_sym_GT_LPAREN] = ACTIONS(643), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(646), - }, - [696] = { - [anon_sym_then] = ACTIONS(2022), - [sym_comment] = ACTIONS(46), - }, - [697] = { - [sym_file_descriptor] = ACTIONS(196), - [sym_word] = ACTIONS(196), - [sym_variable_name] = ACTIONS(196), - [anon_sym_for] = ACTIONS(198), - [anon_sym_while] = ACTIONS(198), - [anon_sym_if] = ACTIONS(198), - [anon_sym_fi] = ACTIONS(198), - [anon_sym_case] = ACTIONS(198), - [anon_sym_function] = ACTIONS(198), - [anon_sym_LPAREN] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(198), - [anon_sym_typeset] = ACTIONS(198), - [anon_sym_export] = ACTIONS(198), - [anon_sym_readonly] = ACTIONS(198), - [anon_sym_local] = ACTIONS(198), - [anon_sym_LT] = ACTIONS(198), - [anon_sym_GT] = ACTIONS(198), - [anon_sym_GT_GT] = ACTIONS(196), - [anon_sym_AMP_GT] = ACTIONS(198), - [anon_sym_AMP_GT_GT] = ACTIONS(196), - [anon_sym_LT_AMP] = ACTIONS(196), - [anon_sym_GT_AMP] = ACTIONS(196), - [anon_sym_DQUOTE] = ACTIONS(196), - [sym_raw_string] = ACTIONS(196), - [anon_sym_DOLLAR] = ACTIONS(198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(196), - [anon_sym_BQUOTE] = ACTIONS(196), - [anon_sym_LT_LPAREN] = ACTIONS(196), - [anon_sym_GT_LPAREN] = ACTIONS(196), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(200), - }, - [698] = { - [anon_sym_PIPE] = ACTIONS(202), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(206), - [anon_sym_PIPE_PIPE] = ACTIONS(206), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - }, - [699] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(202), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(206), - [anon_sym_PIPE_PIPE] = ACTIONS(206), - [anon_sym_LT] = ACTIONS(236), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_GT_GT] = ACTIONS(236), - [anon_sym_AMP_GT] = ACTIONS(236), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), - [anon_sym_DOLLAR] = ACTIONS(236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(236), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - }, - [700] = { - [sym__terminated_statement] = STATE(697), - [sym_for_statement] = STATE(698), - [sym_while_statement] = STATE(698), - [sym_if_statement] = STATE(698), - [sym_case_statement] = STATE(698), - [sym_function_definition] = STATE(698), - [sym_subshell] = STATE(698), - [sym_pipeline] = STATE(698), - [sym_list] = STATE(698), - [sym_command] = STATE(698), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(699), - [sym_declaration_command] = STATE(698), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(996), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(2026), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), - }, - [701] = { - [sym_file_descriptor] = ACTIONS(546), - [sym_word] = ACTIONS(546), - [sym_variable_name] = ACTIONS(546), - [anon_sym_for] = ACTIONS(548), - [anon_sym_while] = ACTIONS(548), - [anon_sym_if] = ACTIONS(548), - [anon_sym_fi] = ACTIONS(548), - [anon_sym_elif] = ACTIONS(548), - [anon_sym_else] = ACTIONS(548), - [anon_sym_case] = ACTIONS(548), - [anon_sym_function] = ACTIONS(548), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_typeset] = ACTIONS(548), - [anon_sym_export] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(548), - [anon_sym_local] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_GT] = ACTIONS(548), - [anon_sym_GT_GT] = ACTIONS(546), - [anon_sym_AMP_GT] = ACTIONS(548), - [anon_sym_AMP_GT_GT] = ACTIONS(546), - [anon_sym_LT_AMP] = ACTIONS(546), - [anon_sym_GT_AMP] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(546), - [sym_raw_string] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(546), - [anon_sym_BQUOTE] = ACTIONS(546), - [anon_sym_LT_LPAREN] = ACTIONS(546), - [anon_sym_GT_LPAREN] = ACTIONS(546), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(550), - }, - [702] = { - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_RPAREN] = ACTIONS(2028), - [anon_sym_SEMI_SEMI] = ACTIONS(2028), - [anon_sym_PIPE_AMP] = ACTIONS(2028), - [anon_sym_AMP_AMP] = ACTIONS(2028), - [anon_sym_PIPE_PIPE] = ACTIONS(2028), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2028), - [anon_sym_LF] = ACTIONS(2028), - [anon_sym_AMP] = ACTIONS(2028), - }, - [703] = { - [anon_sym_fi] = ACTIONS(2030), - [sym_comment] = ACTIONS(46), - }, - [704] = { - [sym__terminated_statement] = STATE(418), - [sym_for_statement] = STATE(419), - [sym_while_statement] = STATE(419), - [sym_if_statement] = STATE(419), - [sym_case_statement] = STATE(419), - [sym_function_definition] = STATE(419), - [sym_subshell] = STATE(419), - [sym_pipeline] = STATE(419), - [sym_list] = STATE(419), - [sym_command] = STATE(419), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(422), - [sym_declaration_command] = STATE(419), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(704), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(590), - [sym_word] = ACTIONS(593), - [sym_variable_name] = ACTIONS(596), - [anon_sym_for] = ACTIONS(601), - [anon_sym_while] = ACTIONS(604), - [anon_sym_if] = ACTIONS(607), - [anon_sym_fi] = ACTIONS(2020), - [anon_sym_elif] = ACTIONS(2020), - [anon_sym_else] = ACTIONS(2020), - [anon_sym_case] = ACTIONS(610), - [anon_sym_function] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_declare] = ACTIONS(619), - [anon_sym_typeset] = ACTIONS(619), - [anon_sym_export] = ACTIONS(619), - [anon_sym_readonly] = ACTIONS(619), - [anon_sym_local] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(622), - [anon_sym_GT_GT] = ACTIONS(625), - [anon_sym_AMP_GT] = ACTIONS(622), - [anon_sym_AMP_GT_GT] = ACTIONS(625), - [anon_sym_LT_AMP] = ACTIONS(625), - [anon_sym_GT_AMP] = ACTIONS(625), - [anon_sym_DQUOTE] = ACTIONS(628), - [sym_raw_string] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(634), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(637), - [anon_sym_BQUOTE] = ACTIONS(640), - [anon_sym_LT_LPAREN] = ACTIONS(643), - [anon_sym_GT_LPAREN] = ACTIONS(643), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(646), - }, - [705] = { - [sym_elif_clause] = STATE(420), - [sym_else_clause] = STATE(998), - [aux_sym_if_statement_repeat1] = STATE(706), - [anon_sym_fi] = ACTIONS(2030), - [anon_sym_elif] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1352), - [sym_comment] = ACTIONS(46), - }, - [706] = { - [sym_elif_clause] = STATE(420), - [aux_sym_if_statement_repeat1] = STATE(706), - [anon_sym_fi] = ACTIONS(2032), - [anon_sym_elif] = ACTIONS(2034), - [anon_sym_else] = ACTIONS(2032), - [sym_comment] = ACTIONS(46), - }, - [707] = { - [aux_sym_case_item_repeat1] = STATE(1001), - [aux_sym_concatenation_repeat1] = STATE(1002), - [sym__concat] = ACTIONS(726), - [anon_sym_PIPE] = ACTIONS(2037), - [anon_sym_RPAREN] = ACTIONS(2039), - [sym_comment] = ACTIONS(46), - }, - [708] = { - [anon_sym_PIPE] = ACTIONS(2041), - [anon_sym_RPAREN] = ACTIONS(2041), - [anon_sym_SEMI_SEMI] = ACTIONS(2041), - [anon_sym_PIPE_AMP] = ACTIONS(2041), - [anon_sym_AMP_AMP] = ACTIONS(2041), - [anon_sym_PIPE_PIPE] = ACTIONS(2041), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2041), - [anon_sym_LF] = ACTIONS(2041), - [anon_sym_AMP] = ACTIONS(2041), - }, - [709] = { - [aux_sym_case_item_repeat1] = STATE(1004), - [aux_sym_concatenation_repeat1] = STATE(1005), - [sym__concat] = ACTIONS(726), - [anon_sym_PIPE] = ACTIONS(2037), - [anon_sym_RPAREN] = ACTIONS(2043), - [sym_comment] = ACTIONS(46), - }, - [710] = { - [sym_word] = ACTIONS(2045), - [anon_sym_esac] = ACTIONS(2047), - [anon_sym_DQUOTE] = ACTIONS(2045), - [sym_raw_string] = ACTIONS(2045), - [anon_sym_DOLLAR] = ACTIONS(2047), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2045), - [anon_sym_BQUOTE] = ACTIONS(2045), - [anon_sym_LT_LPAREN] = ACTIONS(2045), - [anon_sym_GT_LPAREN] = ACTIONS(2045), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2049), - }, - [711] = { - [aux_sym_case_item_repeat1] = STATE(1001), - [anon_sym_PIPE] = ACTIONS(2037), - [anon_sym_RPAREN] = ACTIONS(2039), - [sym_comment] = ACTIONS(46), - }, - [712] = { - [sym_case_item] = STATE(710), - [sym_concatenation] = STATE(711), - [sym_string] = STATE(707), - [sym_simple_expansion] = STATE(707), - [sym_expansion] = STATE(707), - [sym_command_substitution] = STATE(707), - [sym_process_substitution] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(1007), - [sym_word] = ACTIONS(1354), - [anon_sym_esac] = ACTIONS(2051), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1358), - }, - [713] = { - [sym_case_item] = STATE(710), - [sym_concatenation] = STATE(711), - [sym_string] = STATE(707), - [sym_simple_expansion] = STATE(707), - [sym_expansion] = STATE(707), - [sym_command_substitution] = STATE(707), - [sym_process_substitution] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(1008), - [sym_word] = ACTIONS(1354), - [anon_sym_esac] = ACTIONS(2051), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1358), - }, - [714] = { - [sym__concat] = ACTIONS(1532), - [anon_sym_in] = ACTIONS(1534), - [anon_sym_SEMI_SEMI] = ACTIONS(1534), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_LF] = ACTIONS(1534), - [anon_sym_AMP] = ACTIONS(1534), - }, - [715] = { - [anon_sym_AT] = ACTIONS(2053), - [sym_comment] = ACTIONS(46), - }, - [716] = { - [sym__concat] = ACTIONS(1538), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_SEMI_SEMI] = ACTIONS(1540), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_LF] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1540), - }, - [717] = { - [anon_sym_AT] = ACTIONS(2055), - [sym_comment] = ACTIONS(46), - }, - [718] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2059), - [sym_comment] = ACTIONS(46), - }, - [719] = { - [sym__concat] = ACTIONS(1548), - [anon_sym_in] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1550), - }, - [720] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2063), - [sym_comment] = ACTIONS(46), - }, - [721] = { - [sym__concat] = ACTIONS(2065), - [anon_sym_RBRACE] = ACTIONS(2059), - [sym_comment] = ACTIONS(46), - }, - [722] = { - [anon_sym_RBRACK] = ACTIONS(2065), - [sym_comment] = ACTIONS(46), - }, - [723] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2069), - [sym_comment] = ACTIONS(46), - }, - [724] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(2071), - [anon_sym_RBRACE] = ACTIONS(2073), - [sym_comment] = ACTIONS(46), - }, - [725] = { - [sym__concat] = ACTIONS(2075), - [anon_sym_RBRACE] = ACTIONS(2069), - [sym_comment] = ACTIONS(46), - }, - [726] = { - [anon_sym_RBRACK] = ACTIONS(2075), - [sym_comment] = ACTIONS(46), - }, - [727] = { - [anon_sym_PIPE] = ACTIONS(2077), - [anon_sym_RPAREN] = ACTIONS(2077), - [anon_sym_SEMI_SEMI] = ACTIONS(2077), - [anon_sym_PIPE_AMP] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_LF] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(2077), - }, - [728] = { - [sym_case_item] = STATE(710), - [sym_concatenation] = STATE(711), - [sym_string] = STATE(707), - [sym_simple_expansion] = STATE(707), - [sym_expansion] = STATE(707), - [sym_command_substitution] = STATE(707), - [sym_process_substitution] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(1007), - [sym_word] = ACTIONS(1354), - [anon_sym_esac] = ACTIONS(2079), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1358), - }, - [729] = { - [sym_case_item] = STATE(710), - [sym_concatenation] = STATE(711), - [sym_string] = STATE(707), - [sym_simple_expansion] = STATE(707), - [sym_expansion] = STATE(707), - [sym_command_substitution] = STATE(707), - [sym_process_substitution] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(1022), - [sym_word] = ACTIONS(1354), - [anon_sym_esac] = ACTIONS(2079), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1358), - }, - [730] = { - [sym_file_redirect] = STATE(1023), - [sym_file_descriptor] = ACTIONS(810), - [anon_sym_PIPE] = ACTIONS(2081), - [anon_sym_SEMI_SEMI] = ACTIONS(2081), - [anon_sym_PIPE_AMP] = ACTIONS(2081), - [anon_sym_AMP_AMP] = ACTIONS(2081), - [anon_sym_PIPE_PIPE] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(814), - [anon_sym_GT] = ACTIONS(814), - [anon_sym_GT_GT] = ACTIONS(814), - [anon_sym_AMP_GT] = ACTIONS(814), - [anon_sym_AMP_GT_GT] = ACTIONS(814), - [anon_sym_LT_AMP] = ACTIONS(814), - [anon_sym_GT_AMP] = ACTIONS(814), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_LF] = ACTIONS(2081), - [anon_sym_AMP] = ACTIONS(2081), - }, - [731] = { - [sym_file_descriptor] = ACTIONS(2083), - [anon_sym_PIPE] = ACTIONS(2085), - [anon_sym_RPAREN] = ACTIONS(2085), - [anon_sym_SEMI_SEMI] = ACTIONS(2085), - [anon_sym_PIPE_AMP] = ACTIONS(2085), - [anon_sym_AMP_AMP] = ACTIONS(2085), - [anon_sym_PIPE_PIPE] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_GT] = ACTIONS(2085), - [anon_sym_GT_GT] = ACTIONS(2085), - [anon_sym_AMP_GT] = ACTIONS(2085), - [anon_sym_AMP_GT_GT] = ACTIONS(2085), - [anon_sym_LT_AMP] = ACTIONS(2085), - [anon_sym_GT_AMP] = ACTIONS(2085), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_LF] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - }, - [732] = { - [sym__terminated_statement] = STATE(21), - [sym_for_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_function_definition] = STATE(22), - [sym_subshell] = STATE(22), - [sym_pipeline] = STATE(22), - [sym_list] = STATE(22), - [sym_command] = STATE(22), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(24), - [sym_declaration_command] = STATE(22), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(732), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(590), - [sym_word] = ACTIONS(593), - [sym_variable_name] = ACTIONS(596), - [anon_sym_for] = ACTIONS(601), - [anon_sym_while] = ACTIONS(604), - [anon_sym_if] = ACTIONS(607), - [anon_sym_case] = ACTIONS(610), - [anon_sym_function] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RBRACE] = ACTIONS(599), - [anon_sym_declare] = ACTIONS(619), - [anon_sym_typeset] = ACTIONS(619), - [anon_sym_export] = ACTIONS(619), - [anon_sym_readonly] = ACTIONS(619), - [anon_sym_local] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(622), - [anon_sym_GT_GT] = ACTIONS(625), - [anon_sym_AMP_GT] = ACTIONS(622), - [anon_sym_AMP_GT_GT] = ACTIONS(625), - [anon_sym_LT_AMP] = ACTIONS(625), - [anon_sym_GT_AMP] = ACTIONS(625), - [anon_sym_DQUOTE] = ACTIONS(628), - [sym_raw_string] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(634), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(637), - [anon_sym_BQUOTE] = ACTIONS(640), - [anon_sym_LT_LPAREN] = ACTIONS(643), - [anon_sym_GT_LPAREN] = ACTIONS(643), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(646), - }, - [733] = { - [sym_concatenation] = STATE(1026), - [sym_string] = STATE(1024), - [sym_simple_expansion] = STATE(1024), - [sym_expansion] = STATE(1024), - [sym_command_substitution] = STATE(1024), - [sym_process_substitution] = STATE(1024), - [sym_word] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym_raw_string] = ACTIONS(2087), - [anon_sym_DOLLAR] = ACTIONS(1405), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1407), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1409), - [anon_sym_BQUOTE] = ACTIONS(1411), - [anon_sym_LT_LPAREN] = ACTIONS(1413), - [anon_sym_GT_LPAREN] = ACTIONS(1413), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2089), - }, - [734] = { - [aux_sym_concatenation_repeat1] = STATE(1028), - [sym__concat] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(1136), - [anon_sym_SEMI_SEMI] = ACTIONS(1136), - [anon_sym_PIPE_AMP] = ACTIONS(1136), - [anon_sym_AMP_AMP] = ACTIONS(1136), - [anon_sym_PIPE_PIPE] = ACTIONS(1136), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym_LF] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1136), - }, - [735] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(1030), - [anon_sym_DQUOTE] = ACTIONS(2093), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), - }, - [736] = { - [sym_special_variable_name] = STATE(1033), - [anon_sym_DOLLAR] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(2095), - [anon_sym_AT] = ACTIONS(2095), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2095), - [anon_sym_QMARK] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_0] = ACTIONS(2099), - [anon_sym__] = ACTIONS(2099), - }, - [737] = { - [sym_special_variable_name] = STATE(1036), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(2101), - [anon_sym_AT] = ACTIONS(138), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [738] = { - [sym_for_statement] = STATE(1037), - [sym_while_statement] = STATE(1037), - [sym_if_statement] = STATE(1037), - [sym_case_statement] = STATE(1037), - [sym_function_definition] = STATE(1037), - [sym_subshell] = STATE(1037), - [sym_pipeline] = STATE(1037), - [sym_list] = STATE(1037), - [sym_command] = STATE(1037), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(1038), - [sym_declaration_command] = STATE(1037), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), - }, - [739] = { - [sym_for_statement] = STATE(1039), - [sym_while_statement] = STATE(1039), - [sym_if_statement] = STATE(1039), - [sym_case_statement] = STATE(1039), - [sym_function_definition] = STATE(1039), - [sym_subshell] = STATE(1039), - [sym_pipeline] = STATE(1039), - [sym_list] = STATE(1039), - [sym_command] = STATE(1039), - [sym_command_name] = STATE(118), - [sym_variable_assignment] = STATE(1040), - [sym_declaration_command] = STATE(1039), - [sym_subscript] = STATE(120), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_command_repeat1] = STATE(121), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(178), - [sym_variable_name] = ACTIONS(180), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(184), - [anon_sym_typeset] = ACTIONS(184), - [anon_sym_export] = ACTIONS(184), - [anon_sym_readonly] = ACTIONS(184), - [anon_sym_local] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(178), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(186), - }, - [740] = { - [sym_for_statement] = STATE(1041), - [sym_while_statement] = STATE(1041), - [sym_if_statement] = STATE(1041), - [sym_case_statement] = STATE(1041), - [sym_function_definition] = STATE(1041), - [sym_subshell] = STATE(1041), - [sym_pipeline] = STATE(1041), - [sym_list] = STATE(1041), - [sym_command] = STATE(1041), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(1042), - [sym_declaration_command] = STATE(1041), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), - }, - [741] = { - [aux_sym_concatenation_repeat1] = STATE(1043), - [sym__concat] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_SEMI_SEMI] = ACTIONS(1150), - [anon_sym_PIPE_AMP] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), - }, - [742] = { - [anon_sym_PIPE] = ACTIONS(1136), - [anon_sym_RPAREN] = ACTIONS(1136), - [anon_sym_SEMI_SEMI] = ACTIONS(1136), - [anon_sym_PIPE_AMP] = ACTIONS(1136), - [anon_sym_AMP_AMP] = ACTIONS(1136), - [anon_sym_PIPE_PIPE] = ACTIONS(1136), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym_LF] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1136), - }, - [743] = { - [aux_sym_concatenation_repeat1] = STATE(1044), - [sym_file_descriptor] = ACTIONS(254), - [sym_word] = ACTIONS(254), - [sym__concat] = ACTIONS(688), - [sym_variable_name] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(256), - [anon_sym_RPAREN] = ACTIONS(256), - [anon_sym_SEMI_SEMI] = ACTIONS(256), - [anon_sym_PIPE_AMP] = ACTIONS(256), - [anon_sym_AMP_AMP] = ACTIONS(256), - [anon_sym_PIPE_PIPE] = ACTIONS(256), - [anon_sym_LT] = ACTIONS(256), - [anon_sym_GT] = ACTIONS(256), - [anon_sym_GT_GT] = ACTIONS(256), - [anon_sym_AMP_GT] = ACTIONS(256), - [anon_sym_AMP_GT_GT] = ACTIONS(256), - [anon_sym_LT_AMP] = ACTIONS(256), - [anon_sym_GT_AMP] = ACTIONS(256), - [anon_sym_DQUOTE] = ACTIONS(256), - [sym_raw_string] = ACTIONS(256), - [anon_sym_DOLLAR] = ACTIONS(256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(256), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(256), - [anon_sym_BQUOTE] = ACTIONS(256), - [anon_sym_LT_LPAREN] = ACTIONS(256), - [anon_sym_GT_LPAREN] = ACTIONS(256), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(256), - [anon_sym_SEMI] = ACTIONS(256), - [anon_sym_LF] = ACTIONS(256), - [anon_sym_AMP] = ACTIONS(256), - }, - [744] = { - [aux_sym_concatenation_repeat1] = STATE(1044), - [sym_file_descriptor] = ACTIONS(542), - [sym_word] = ACTIONS(542), - [sym__concat] = ACTIONS(688), - [sym_variable_name] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(544), - [anon_sym_SEMI_SEMI] = ACTIONS(544), - [anon_sym_PIPE_AMP] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_AMP_GT] = ACTIONS(544), - [anon_sym_AMP_GT_GT] = ACTIONS(544), - [anon_sym_LT_AMP] = ACTIONS(544), - [anon_sym_GT_AMP] = ACTIONS(544), - [anon_sym_DQUOTE] = ACTIONS(544), - [sym_raw_string] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(544), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(544), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(544), - [anon_sym_BQUOTE] = ACTIONS(544), - [anon_sym_LT_LPAREN] = ACTIONS(544), - [anon_sym_GT_LPAREN] = ACTIONS(544), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_LF] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(544), - }, - [745] = { - [sym_compound_statement] = STATE(1045), - [anon_sym_LBRACE] = ACTIONS(330), - [sym_comment] = ACTIONS(46), - }, - [746] = { - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(2105), - [anon_sym_GT_GT] = ACTIONS(2107), - [anon_sym_AMP_GT] = ACTIONS(2105), - [anon_sym_AMP_GT_GT] = ACTIONS(2107), - [anon_sym_LT_AMP] = ACTIONS(2107), - [anon_sym_GT_AMP] = ACTIONS(2107), - [sym_comment] = ACTIONS(46), - }, - [747] = { - [sym_concatenation] = STATE(742), - [sym_string] = STATE(1047), - [sym_simple_expansion] = STATE(1047), - [sym_expansion] = STATE(1047), - [sym_command_substitution] = STATE(1047), - [sym_process_substitution] = STATE(1047), - [sym_word] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym_raw_string] = ACTIONS(2109), - [anon_sym_DOLLAR] = ACTIONS(1405), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1407), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1409), - [anon_sym_BQUOTE] = ACTIONS(1411), - [anon_sym_LT_LPAREN] = ACTIONS(1413), - [anon_sym_GT_LPAREN] = ACTIONS(1413), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2111), - }, - [748] = { - [aux_sym_concatenation_repeat1] = STATE(1049), - [sym_word] = ACTIONS(686), - [sym__concat] = ACTIONS(1455), - [sym_variable_name] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(690), - [anon_sym_RPAREN] = ACTIONS(690), - [anon_sym_SEMI_SEMI] = ACTIONS(690), - [anon_sym_PIPE_AMP] = ACTIONS(690), - [anon_sym_AMP_AMP] = ACTIONS(690), - [anon_sym_PIPE_PIPE] = ACTIONS(690), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(690), - [anon_sym_SEMI] = ACTIONS(690), - [anon_sym_LF] = ACTIONS(690), - [anon_sym_AMP] = ACTIONS(690), - }, - [749] = { - [aux_sym_concatenation_repeat1] = STATE(1050), - [sym_word] = ACTIONS(722), - [sym__concat] = ACTIONS(1455), - [sym_variable_name] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(724), - [anon_sym_RPAREN] = ACTIONS(724), - [anon_sym_SEMI_SEMI] = ACTIONS(724), - [anon_sym_PIPE_AMP] = ACTIONS(724), - [anon_sym_AMP_AMP] = ACTIONS(724), - [anon_sym_PIPE_PIPE] = ACTIONS(724), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(724), - [anon_sym_SEMI] = ACTIONS(724), - [anon_sym_LF] = ACTIONS(724), - [anon_sym_AMP] = ACTIONS(724), - }, - [750] = { - [sym_file_redirect] = STATE(914), - [sym_file_descriptor] = ACTIONS(1421), - [anon_sym_PIPE] = ACTIONS(1799), - [anon_sym_RPAREN] = ACTIONS(1799), - [anon_sym_SEMI_SEMI] = ACTIONS(1799), - [anon_sym_PIPE_AMP] = ACTIONS(1799), - [anon_sym_AMP_AMP] = ACTIONS(1799), - [anon_sym_PIPE_PIPE] = ACTIONS(1799), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_GT] = ACTIONS(1423), - [anon_sym_GT_GT] = ACTIONS(1423), - [anon_sym_AMP_GT] = ACTIONS(1423), - [anon_sym_AMP_GT_GT] = ACTIONS(1423), - [anon_sym_LT_AMP] = ACTIONS(1423), - [anon_sym_GT_AMP] = ACTIONS(1423), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1799), - [anon_sym_LF] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - }, - [751] = { - [aux_sym_concatenation_repeat1] = STATE(753), - [sym_file_descriptor] = ACTIONS(667), - [sym__concat] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_RPAREN] = ACTIONS(1801), - [anon_sym_SEMI_SEMI] = ACTIONS(1801), - [anon_sym_PIPE_AMP] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1801), - [anon_sym_PIPE_PIPE] = ACTIONS(1801), - [anon_sym_LT] = ACTIONS(1801), - [anon_sym_GT] = ACTIONS(1801), - [anon_sym_GT_GT] = ACTIONS(1801), - [anon_sym_AMP_GT] = ACTIONS(1801), - [anon_sym_AMP_GT_GT] = ACTIONS(1801), - [anon_sym_LT_AMP] = ACTIONS(1801), - [anon_sym_GT_AMP] = ACTIONS(1801), - [anon_sym_LT_LT] = ACTIONS(1801), - [anon_sym_LT_LT_DASH] = ACTIONS(1801), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_LF] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1801), - }, - [752] = { - [aux_sym_concatenation_repeat1] = STATE(754), - [sym_file_descriptor] = ACTIONS(671), - [sym__concat] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_RPAREN] = ACTIONS(1803), - [anon_sym_SEMI_SEMI] = ACTIONS(1803), - [anon_sym_PIPE_AMP] = ACTIONS(1803), - [anon_sym_AMP_AMP] = ACTIONS(1803), - [anon_sym_PIPE_PIPE] = ACTIONS(1803), - [anon_sym_LT] = ACTIONS(1803), - [anon_sym_GT] = ACTIONS(1803), - [anon_sym_GT_GT] = ACTIONS(1803), - [anon_sym_AMP_GT] = ACTIONS(1803), - [anon_sym_AMP_GT_GT] = ACTIONS(1803), - [anon_sym_LT_AMP] = ACTIONS(1803), - [anon_sym_GT_AMP] = ACTIONS(1803), - [anon_sym_LT_LT] = ACTIONS(1803), - [anon_sym_LT_LT_DASH] = ACTIONS(1803), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_LF] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1803), - }, - [753] = { - [aux_sym_concatenation_repeat1] = STATE(1051), - [sym_file_descriptor] = ACTIONS(254), - [sym__concat] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(256), - [anon_sym_RPAREN] = ACTIONS(256), - [anon_sym_SEMI_SEMI] = ACTIONS(256), - [anon_sym_PIPE_AMP] = ACTIONS(256), - [anon_sym_AMP_AMP] = ACTIONS(256), - [anon_sym_PIPE_PIPE] = ACTIONS(256), - [anon_sym_LT] = ACTIONS(256), - [anon_sym_GT] = ACTIONS(256), - [anon_sym_GT_GT] = ACTIONS(256), - [anon_sym_AMP_GT] = ACTIONS(256), - [anon_sym_AMP_GT_GT] = ACTIONS(256), - [anon_sym_LT_AMP] = ACTIONS(256), - [anon_sym_GT_AMP] = ACTIONS(256), - [anon_sym_LT_LT] = ACTIONS(256), - [anon_sym_LT_LT_DASH] = ACTIONS(256), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(256), - [anon_sym_LF] = ACTIONS(256), - [anon_sym_AMP] = ACTIONS(256), - }, - [754] = { - [aux_sym_concatenation_repeat1] = STATE(1051), - [sym_file_descriptor] = ACTIONS(542), - [sym__concat] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(544), - [anon_sym_SEMI_SEMI] = ACTIONS(544), - [anon_sym_PIPE_AMP] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_AMP_GT] = ACTIONS(544), - [anon_sym_AMP_GT_GT] = ACTIONS(544), - [anon_sym_LT_AMP] = ACTIONS(544), - [anon_sym_GT_AMP] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_LT_LT_DASH] = ACTIONS(544), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_LF] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(544), - }, - [755] = { - [anon_sym_PIPE] = ACTIONS(2113), - [anon_sym_RPAREN] = ACTIONS(2113), - [anon_sym_SEMI_SEMI] = ACTIONS(2113), - [anon_sym_PIPE_AMP] = ACTIONS(2113), - [anon_sym_AMP_AMP] = ACTIONS(2113), - [anon_sym_PIPE_PIPE] = ACTIONS(2113), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2113), - [anon_sym_LF] = ACTIONS(2113), - [anon_sym_AMP] = ACTIONS(2113), - }, - [756] = { - [sym_file_redirect] = STATE(134), - [sym_heredoc_redirect] = STATE(134), - [aux_sym_command_repeat2] = STATE(465), - [sym_file_descriptor] = ACTIONS(348), - [anon_sym_PIPE] = ACTIONS(1855), - [anon_sym_RPAREN] = ACTIONS(1855), - [anon_sym_SEMI_SEMI] = ACTIONS(1855), - [anon_sym_PIPE_AMP] = ACTIONS(1855), - [anon_sym_AMP_AMP] = ACTIONS(1855), - [anon_sym_PIPE_PIPE] = ACTIONS(1855), - [anon_sym_LT] = ACTIONS(352), - [anon_sym_GT] = ACTIONS(352), - [anon_sym_GT_GT] = ACTIONS(352), - [anon_sym_AMP_GT] = ACTIONS(352), - [anon_sym_AMP_GT_GT] = ACTIONS(352), - [anon_sym_LT_AMP] = ACTIONS(352), - [anon_sym_GT_AMP] = ACTIONS(352), - [anon_sym_LT_LT] = ACTIONS(216), - [anon_sym_LT_LT_DASH] = ACTIONS(216), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1855), - [anon_sym_LF] = ACTIONS(1855), - [anon_sym_AMP] = ACTIONS(1855), - }, - [757] = { - [sym_string] = STATE(1052), - [sym_simple_expansion] = STATE(1052), - [sym_expansion] = STATE(1052), - [sym_command_substitution] = STATE(1052), - [sym_process_substitution] = STATE(1052), - [sym_word] = ACTIONS(2115), - [anon_sym_DQUOTE] = ACTIONS(848), - [sym_raw_string] = ACTIONS(2115), - [anon_sym_DOLLAR] = ACTIONS(850), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(852), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(854), - [anon_sym_BQUOTE] = ACTIONS(856), - [anon_sym_LT_LPAREN] = ACTIONS(858), - [anon_sym_GT_LPAREN] = ACTIONS(858), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2117), - }, - [758] = { - [aux_sym_concatenation_repeat1] = STATE(1054), - [sym_word] = ACTIONS(254), - [sym__concat] = ACTIONS(1455), - [sym_variable_name] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(256), - [anon_sym_SEMI_SEMI] = ACTIONS(256), - [anon_sym_PIPE_AMP] = ACTIONS(256), - [anon_sym_AMP_AMP] = ACTIONS(256), - [anon_sym_PIPE_PIPE] = ACTIONS(256), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(256), - [anon_sym_SEMI] = ACTIONS(256), - [anon_sym_LF] = ACTIONS(256), - [anon_sym_AMP] = ACTIONS(256), - }, - [759] = { - [sym_word] = ACTIONS(1226), - [sym_variable_name] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_RPAREN] = ACTIONS(1228), - [anon_sym_SEMI_SEMI] = ACTIONS(1228), - [anon_sym_PIPE_AMP] = ACTIONS(1228), - [anon_sym_AMP_AMP] = ACTIONS(1228), - [anon_sym_PIPE_PIPE] = ACTIONS(1228), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1228), - [anon_sym_SEMI] = ACTIONS(1228), - [anon_sym_LF] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1228), - }, - [760] = { - [sym_concatenation] = STATE(364), - [sym_string] = STATE(355), - [sym_simple_expansion] = STATE(355), - [sym_expansion] = STATE(355), - [sym_command_substitution] = STATE(355), - [sym_process_substitution] = STATE(355), - [aux_sym_for_statement_repeat1] = STATE(648), - [sym_word] = ACTIONS(692), - [anon_sym_RPAREN] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(696), - [sym_raw_string] = ACTIONS(692), - [anon_sym_DOLLAR] = ACTIONS(698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(702), - [anon_sym_BQUOTE] = ACTIONS(704), - [anon_sym_LT_LPAREN] = ACTIONS(706), - [anon_sym_GT_LPAREN] = ACTIONS(706), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(708), - }, - [761] = { - [sym_word] = ACTIONS(394), - [sym__concat] = ACTIONS(394), - [sym_variable_name] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(396), - [anon_sym_RPAREN] = ACTIONS(396), - [anon_sym_SEMI_SEMI] = ACTIONS(396), - [anon_sym_PIPE_AMP] = ACTIONS(396), - [anon_sym_AMP_AMP] = ACTIONS(396), - [anon_sym_PIPE_PIPE] = ACTIONS(396), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(396), - [anon_sym_SEMI] = ACTIONS(396), - [anon_sym_LF] = ACTIONS(396), - [anon_sym_AMP] = ACTIONS(396), - }, - [762] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(252), - [anon_sym_DQUOTE] = ACTIONS(2121), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), - }, - [763] = { - [sym_word] = ACTIONS(412), - [sym__concat] = ACTIONS(412), - [sym_variable_name] = ACTIONS(412), - [anon_sym_PIPE] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(414), - [anon_sym_SEMI_SEMI] = ACTIONS(414), - [anon_sym_PIPE_AMP] = ACTIONS(414), - [anon_sym_AMP_AMP] = ACTIONS(414), - [anon_sym_PIPE_PIPE] = ACTIONS(414), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(414), - [anon_sym_SEMI] = ACTIONS(414), - [anon_sym_LF] = ACTIONS(414), - [anon_sym_AMP] = ACTIONS(414), - }, - [764] = { - [sym_word] = ACTIONS(416), - [sym__concat] = ACTIONS(416), - [sym_variable_name] = ACTIONS(416), - [anon_sym_PIPE] = ACTIONS(418), - [anon_sym_RPAREN] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(418), - [anon_sym_PIPE_AMP] = ACTIONS(418), - [anon_sym_AMP_AMP] = ACTIONS(418), - [anon_sym_PIPE_PIPE] = ACTIONS(418), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(418), - [anon_sym_SEMI] = ACTIONS(418), - [anon_sym_LF] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - }, - [765] = { - [sym_word] = ACTIONS(420), - [sym__concat] = ACTIONS(420), - [sym_variable_name] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(422), - [anon_sym_SEMI_SEMI] = ACTIONS(422), - [anon_sym_PIPE_AMP] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(422), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(422), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LF] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(422), - }, - [766] = { - [sym_special_variable_name] = STATE(1058), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(138), - [anon_sym_AT] = ACTIONS(138), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_COLON_QMARK] = ACTIONS(412), - [anon_sym_COLON_DASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(412), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2123), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [767] = { - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_EQ] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2129), - [anon_sym_COLON] = ACTIONS(2131), - [anon_sym_COLON_QMARK] = ACTIONS(2127), - [anon_sym_COLON_DASH] = ACTIONS(2127), - [anon_sym_PERCENT] = ACTIONS(2127), - [anon_sym_SLASH] = ACTIONS(2127), - [sym_comment] = ACTIONS(46), - }, - [768] = { - [anon_sym_RBRACE] = ACTIONS(2133), - [anon_sym_EQ] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_COLON] = ACTIONS(2139), - [anon_sym_COLON_QMARK] = ACTIONS(2135), - [anon_sym_COLON_DASH] = ACTIONS(2135), - [anon_sym_PERCENT] = ACTIONS(2135), - [anon_sym_SLASH] = ACTIONS(2135), - [sym_comment] = ACTIONS(46), - }, - [769] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(2141), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [770] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(2141), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [771] = { - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_BQUOTE] = ACTIONS(2141), - [sym_comment] = ACTIONS(46), - }, - [772] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(2141), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [773] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(2143), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [774] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(2143), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [775] = { - [aux_sym_concatenation_repeat1] = STATE(1054), - [sym_word] = ACTIONS(542), - [sym__concat] = ACTIONS(1455), - [sym_variable_name] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_SEMI_SEMI] = ACTIONS(544), - [anon_sym_PIPE_AMP] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_LF] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(544), - }, - [776] = { - [sym_file_descriptor] = ACTIONS(1532), - [sym_word] = ACTIONS(1532), - [sym__concat] = ACTIONS(1532), - [sym_variable_name] = ACTIONS(1532), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_GT] = ACTIONS(2145), - [anon_sym_GT_GT] = ACTIONS(1532), - [anon_sym_AMP_GT] = ACTIONS(2145), - [anon_sym_AMP_GT_GT] = ACTIONS(1532), - [anon_sym_LT_AMP] = ACTIONS(1532), - [anon_sym_GT_AMP] = ACTIONS(1532), - [anon_sym_DQUOTE] = ACTIONS(1532), - [sym_raw_string] = ACTIONS(1532), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1532), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1532), - [anon_sym_BQUOTE] = ACTIONS(1532), - [anon_sym_LT_LPAREN] = ACTIONS(1532), - [anon_sym_GT_LPAREN] = ACTIONS(1532), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2145), - }, - [777] = { - [anon_sym_AT] = ACTIONS(2147), - [sym_comment] = ACTIONS(46), - }, - [778] = { - [sym_file_descriptor] = ACTIONS(1538), - [sym_word] = ACTIONS(1538), - [sym__concat] = ACTIONS(1538), - [sym_variable_name] = ACTIONS(1538), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_GT] = ACTIONS(2149), - [anon_sym_GT_GT] = ACTIONS(1538), - [anon_sym_AMP_GT] = ACTIONS(2149), - [anon_sym_AMP_GT_GT] = ACTIONS(1538), - [anon_sym_LT_AMP] = ACTIONS(1538), - [anon_sym_GT_AMP] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym_raw_string] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(2149), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1538), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1538), - [anon_sym_BQUOTE] = ACTIONS(1538), - [anon_sym_LT_LPAREN] = ACTIONS(1538), - [anon_sym_GT_LPAREN] = ACTIONS(1538), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2149), - }, - [779] = { - [anon_sym_AT] = ACTIONS(2151), - [sym_comment] = ACTIONS(46), - }, - [780] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2155), - [sym_comment] = ACTIONS(46), - }, - [781] = { - [sym_file_descriptor] = ACTIONS(1548), - [sym_word] = ACTIONS(1548), - [sym__concat] = ACTIONS(1548), - [sym_variable_name] = ACTIONS(1548), - [anon_sym_LT] = ACTIONS(2157), - [anon_sym_GT] = ACTIONS(2157), - [anon_sym_GT_GT] = ACTIONS(1548), - [anon_sym_AMP_GT] = ACTIONS(2157), - [anon_sym_AMP_GT_GT] = ACTIONS(1548), - [anon_sym_LT_AMP] = ACTIONS(1548), - [anon_sym_GT_AMP] = ACTIONS(1548), - [anon_sym_DQUOTE] = ACTIONS(1548), - [sym_raw_string] = ACTIONS(1548), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1548), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1548), - [anon_sym_BQUOTE] = ACTIONS(1548), - [anon_sym_LT_LPAREN] = ACTIONS(1548), - [anon_sym_GT_LPAREN] = ACTIONS(1548), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2157), - }, - [782] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2161), - [sym_comment] = ACTIONS(46), - }, - [783] = { - [sym__concat] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2155), - [sym_comment] = ACTIONS(46), - }, - [784] = { - [anon_sym_RBRACK] = ACTIONS(2163), - [sym_comment] = ACTIONS(46), - }, - [785] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2167), - [sym_comment] = ACTIONS(46), - }, - [786] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(2169), - [anon_sym_RBRACE] = ACTIONS(2171), - [sym_comment] = ACTIONS(46), - }, - [787] = { - [sym__concat] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2167), - [sym_comment] = ACTIONS(46), - }, - [788] = { - [anon_sym_RBRACK] = ACTIONS(2173), - [sym_comment] = ACTIONS(46), - }, - [789] = { - [anon_sym_DQUOTE] = ACTIONS(1534), - [sym__string_content] = ACTIONS(1534), - [anon_sym_DOLLAR] = ACTIONS(1534), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1534), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1534), - [anon_sym_BQUOTE] = ACTIONS(1534), - [sym_comment] = ACTIONS(60), - }, - [790] = { - [anon_sym_AT] = ACTIONS(2175), - [sym_comment] = ACTIONS(46), - }, - [791] = { - [anon_sym_DQUOTE] = ACTIONS(1540), - [sym__string_content] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1540), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1540), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1540), - [anon_sym_BQUOTE] = ACTIONS(1540), - [sym_comment] = ACTIONS(60), - }, - [792] = { - [anon_sym_AT] = ACTIONS(2177), - [sym_comment] = ACTIONS(46), - }, - [793] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2181), - [sym_comment] = ACTIONS(46), - }, - [794] = { - [anon_sym_DQUOTE] = ACTIONS(1550), - [sym__string_content] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1550), - [anon_sym_BQUOTE] = ACTIONS(1550), - [sym_comment] = ACTIONS(60), - }, - [795] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2185), - [sym_comment] = ACTIONS(46), - }, - [796] = { - [sym__concat] = ACTIONS(2187), - [anon_sym_RBRACE] = ACTIONS(2181), - [sym_comment] = ACTIONS(46), - }, - [797] = { - [anon_sym_RBRACK] = ACTIONS(2187), - [sym_comment] = ACTIONS(46), - }, - [798] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(2189), - [anon_sym_RBRACE] = ACTIONS(2191), - [sym_comment] = ACTIONS(46), - }, - [799] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(2193), - [anon_sym_RBRACE] = ACTIONS(2195), - [sym_comment] = ACTIONS(46), - }, - [800] = { - [sym__concat] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2191), - [sym_comment] = ACTIONS(46), - }, - [801] = { - [anon_sym_RBRACK] = ACTIONS(2197), - [sym_comment] = ACTIONS(46), - }, - [802] = { - [anon_sym_RBRACK] = ACTIONS(2199), - [sym_comment] = ACTIONS(46), - }, - [803] = { - [anon_sym_RBRACK] = ACTIONS(2201), - [sym_comment] = ACTIONS(46), - }, - [804] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [805] = { - [sym_file_descriptor] = ACTIONS(2205), - [sym_word] = ACTIONS(2205), - [sym__concat] = ACTIONS(2205), - [anon_sym_PIPE] = ACTIONS(2207), - [anon_sym_RPAREN] = ACTIONS(2207), - [anon_sym_SEMI_SEMI] = ACTIONS(2207), - [anon_sym_PIPE_AMP] = ACTIONS(2207), - [anon_sym_AMP_AMP] = ACTIONS(2207), - [anon_sym_PIPE_PIPE] = ACTIONS(2207), - [anon_sym_LT] = ACTIONS(2207), - [anon_sym_GT] = ACTIONS(2207), - [anon_sym_GT_GT] = ACTIONS(2207), - [anon_sym_AMP_GT] = ACTIONS(2207), - [anon_sym_AMP_GT_GT] = ACTIONS(2207), - [anon_sym_LT_AMP] = ACTIONS(2207), - [anon_sym_GT_AMP] = ACTIONS(2207), - [anon_sym_LT_LT] = ACTIONS(2207), - [anon_sym_LT_LT_DASH] = ACTIONS(2207), - [anon_sym_DQUOTE] = ACTIONS(2207), - [sym_raw_string] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2207), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2207), - [anon_sym_BQUOTE] = ACTIONS(2207), - [anon_sym_LT_LPAREN] = ACTIONS(2207), - [anon_sym_GT_LPAREN] = ACTIONS(2207), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2207), - [anon_sym_SEMI] = ACTIONS(2207), - [anon_sym_LF] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2207), - }, - [806] = { - [aux_sym_concatenation_repeat1] = STATE(1094), - [sym__concat] = ACTIONS(726), - [anon_sym_RBRACE] = ACTIONS(254), - [sym_comment] = ACTIONS(46), - }, - [807] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2209), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [808] = { - [sym_file_descriptor] = ACTIONS(2211), - [sym_word] = ACTIONS(2211), - [sym__concat] = ACTIONS(2211), - [anon_sym_PIPE] = ACTIONS(2213), - [anon_sym_RPAREN] = ACTIONS(2213), - [anon_sym_SEMI_SEMI] = ACTIONS(2213), - [anon_sym_PIPE_AMP] = ACTIONS(2213), - [anon_sym_AMP_AMP] = ACTIONS(2213), - [anon_sym_PIPE_PIPE] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_GT] = ACTIONS(2213), - [anon_sym_GT_GT] = ACTIONS(2213), - [anon_sym_AMP_GT] = ACTIONS(2213), - [anon_sym_AMP_GT_GT] = ACTIONS(2213), - [anon_sym_LT_AMP] = ACTIONS(2213), - [anon_sym_GT_AMP] = ACTIONS(2213), - [anon_sym_LT_LT] = ACTIONS(2213), - [anon_sym_LT_LT_DASH] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2213), - [sym_raw_string] = ACTIONS(2213), - [anon_sym_DOLLAR] = ACTIONS(2213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2213), - [anon_sym_BQUOTE] = ACTIONS(2213), - [anon_sym_LT_LPAREN] = ACTIONS(2213), - [anon_sym_GT_LPAREN] = ACTIONS(2213), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_LF] = ACTIONS(2213), - [anon_sym_AMP] = ACTIONS(2213), - }, - [809] = { - [aux_sym_concatenation_repeat1] = STATE(1094), - [sym__concat] = ACTIONS(726), - [anon_sym_RBRACE] = ACTIONS(542), - [sym_comment] = ACTIONS(46), - }, - [810] = { - [anon_sym_RBRACE] = ACTIONS(2203), - [sym_comment] = ACTIONS(46), - }, - [811] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [812] = { - [sym_file_descriptor] = ACTIONS(2217), - [sym_word] = ACTIONS(2217), - [sym__concat] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_RPAREN] = ACTIONS(2219), - [anon_sym_SEMI_SEMI] = ACTIONS(2219), - [anon_sym_PIPE_AMP] = ACTIONS(2219), - [anon_sym_AMP_AMP] = ACTIONS(2219), - [anon_sym_PIPE_PIPE] = ACTIONS(2219), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_GT] = ACTIONS(2219), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_AMP_GT] = ACTIONS(2219), - [anon_sym_AMP_GT_GT] = ACTIONS(2219), - [anon_sym_LT_AMP] = ACTIONS(2219), - [anon_sym_GT_AMP] = ACTIONS(2219), - [anon_sym_LT_LT] = ACTIONS(2219), - [anon_sym_LT_LT_DASH] = ACTIONS(2219), - [anon_sym_DQUOTE] = ACTIONS(2219), - [sym_raw_string] = ACTIONS(2219), - [anon_sym_DOLLAR] = ACTIONS(2219), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2219), - [anon_sym_BQUOTE] = ACTIONS(2219), - [anon_sym_LT_LPAREN] = ACTIONS(2219), - [anon_sym_GT_LPAREN] = ACTIONS(2219), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2219), - [anon_sym_SEMI] = ACTIONS(2219), - [anon_sym_LF] = ACTIONS(2219), - [anon_sym_AMP] = ACTIONS(2219), - }, - [813] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [814] = { - [sym_file_descriptor] = ACTIONS(2223), - [sym_word] = ACTIONS(2223), - [sym__concat] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2225), - [anon_sym_RPAREN] = ACTIONS(2225), - [anon_sym_SEMI_SEMI] = ACTIONS(2225), - [anon_sym_PIPE_AMP] = ACTIONS(2225), - [anon_sym_AMP_AMP] = ACTIONS(2225), - [anon_sym_PIPE_PIPE] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_GT] = ACTIONS(2225), - [anon_sym_GT_GT] = ACTIONS(2225), - [anon_sym_AMP_GT] = ACTIONS(2225), - [anon_sym_AMP_GT_GT] = ACTIONS(2225), - [anon_sym_LT_AMP] = ACTIONS(2225), - [anon_sym_GT_AMP] = ACTIONS(2225), - [anon_sym_LT_LT] = ACTIONS(2225), - [anon_sym_LT_LT_DASH] = ACTIONS(2225), - [anon_sym_DQUOTE] = ACTIONS(2225), - [sym_raw_string] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2225), - [anon_sym_BQUOTE] = ACTIONS(2225), - [anon_sym_LT_LPAREN] = ACTIONS(2225), - [anon_sym_GT_LPAREN] = ACTIONS(2225), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2225), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_LF] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2225), - }, - [815] = { - [anon_sym_RBRACE] = ACTIONS(2215), - [sym_comment] = ACTIONS(46), - }, - [816] = { - [sym_string] = STATE(1098), - [sym_simple_expansion] = STATE(1098), - [sym_expansion] = STATE(1098), - [sym_command_substitution] = STATE(1098), - [sym_process_substitution] = STATE(1098), - [sym_word] = ACTIONS(2227), - [anon_sym_DQUOTE] = ACTIONS(992), - [sym_raw_string] = ACTIONS(2227), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(996), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(998), - [anon_sym_BQUOTE] = ACTIONS(1000), - [anon_sym_LT_LPAREN] = ACTIONS(1002), - [anon_sym_GT_LPAREN] = ACTIONS(1002), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2229), - }, - [817] = { - [aux_sym_concatenation_repeat1] = STATE(1100), - [sym_file_descriptor] = ACTIONS(254), - [sym_word] = ACTIONS(254), - [sym__concat] = ACTIONS(1571), - [sym_variable_name] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_RPAREN] = ACTIONS(254), - [anon_sym_PIPE_AMP] = ACTIONS(254), - [anon_sym_AMP_AMP] = ACTIONS(254), - [anon_sym_PIPE_PIPE] = ACTIONS(254), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_GT_GT] = ACTIONS(254), - [anon_sym_AMP_GT] = ACTIONS(877), - [anon_sym_AMP_GT_GT] = ACTIONS(254), - [anon_sym_LT_AMP] = ACTIONS(254), - [anon_sym_GT_AMP] = ACTIONS(254), - [anon_sym_DQUOTE] = ACTIONS(254), - [sym_raw_string] = ACTIONS(254), - [anon_sym_DOLLAR] = ACTIONS(877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(254), - [anon_sym_LT_LPAREN] = ACTIONS(254), - [anon_sym_GT_LPAREN] = ACTIONS(254), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(877), - }, - [818] = { - [sym_file_descriptor] = ACTIONS(1226), - [sym_word] = ACTIONS(1226), - [sym_variable_name] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(2231), - [anon_sym_RPAREN] = ACTIONS(1226), - [anon_sym_PIPE_AMP] = ACTIONS(1226), - [anon_sym_AMP_AMP] = ACTIONS(1226), - [anon_sym_PIPE_PIPE] = ACTIONS(1226), - [anon_sym_LT] = ACTIONS(2231), - [anon_sym_GT] = ACTIONS(2231), - [anon_sym_GT_GT] = ACTIONS(1226), - [anon_sym_AMP_GT] = ACTIONS(2231), - [anon_sym_AMP_GT_GT] = ACTIONS(1226), - [anon_sym_LT_AMP] = ACTIONS(1226), - [anon_sym_GT_AMP] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1226), - [sym_raw_string] = ACTIONS(1226), - [anon_sym_DOLLAR] = ACTIONS(2231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1226), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1226), - [anon_sym_BQUOTE] = ACTIONS(1226), - [anon_sym_LT_LPAREN] = ACTIONS(1226), - [anon_sym_GT_LPAREN] = ACTIONS(1226), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2231), - }, - [819] = { - [sym_concatenation] = STATE(364), - [sym_string] = STATE(355), - [sym_simple_expansion] = STATE(355), - [sym_expansion] = STATE(355), - [sym_command_substitution] = STATE(355), - [sym_process_substitution] = STATE(355), - [aux_sym_for_statement_repeat1] = STATE(648), - [sym_word] = ACTIONS(692), - [anon_sym_RPAREN] = ACTIONS(2233), - [anon_sym_DQUOTE] = ACTIONS(696), - [sym_raw_string] = ACTIONS(692), - [anon_sym_DOLLAR] = ACTIONS(698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(702), - [anon_sym_BQUOTE] = ACTIONS(704), - [anon_sym_LT_LPAREN] = ACTIONS(706), - [anon_sym_GT_LPAREN] = ACTIONS(706), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(708), - }, - [820] = { - [sym_file_descriptor] = ACTIONS(394), - [sym_word] = ACTIONS(394), - [sym__concat] = ACTIONS(394), - [sym_variable_name] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(394), - [anon_sym_PIPE_AMP] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(879), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_AMP_GT] = ACTIONS(879), - [anon_sym_AMP_GT_GT] = ACTIONS(394), - [anon_sym_LT_AMP] = ACTIONS(394), - [anon_sym_GT_AMP] = ACTIONS(394), - [anon_sym_DQUOTE] = ACTIONS(394), - [sym_raw_string] = ACTIONS(394), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(394), - [anon_sym_BQUOTE] = ACTIONS(394), - [anon_sym_LT_LPAREN] = ACTIONS(394), - [anon_sym_GT_LPAREN] = ACTIONS(394), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(879), - }, - [821] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(252), - [anon_sym_DQUOTE] = ACTIONS(2235), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), - }, - [822] = { - [sym_file_descriptor] = ACTIONS(412), - [sym_word] = ACTIONS(412), - [sym__concat] = ACTIONS(412), - [sym_variable_name] = ACTIONS(412), - [anon_sym_PIPE] = ACTIONS(424), - [anon_sym_RPAREN] = ACTIONS(412), - [anon_sym_PIPE_AMP] = ACTIONS(412), - [anon_sym_AMP_AMP] = ACTIONS(412), - [anon_sym_PIPE_PIPE] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(424), - [anon_sym_GT] = ACTIONS(424), - [anon_sym_GT_GT] = ACTIONS(412), - [anon_sym_AMP_GT] = ACTIONS(424), - [anon_sym_AMP_GT_GT] = ACTIONS(412), - [anon_sym_LT_AMP] = ACTIONS(412), - [anon_sym_GT_AMP] = ACTIONS(412), - [anon_sym_DQUOTE] = ACTIONS(412), - [sym_raw_string] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(412), - [anon_sym_BQUOTE] = ACTIONS(412), - [anon_sym_LT_LPAREN] = ACTIONS(412), - [anon_sym_GT_LPAREN] = ACTIONS(412), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(424), - }, - [823] = { - [sym_file_descriptor] = ACTIONS(416), - [sym_word] = ACTIONS(416), - [sym__concat] = ACTIONS(416), - [sym_variable_name] = ACTIONS(416), - [anon_sym_PIPE] = ACTIONS(883), - [anon_sym_RPAREN] = ACTIONS(416), - [anon_sym_PIPE_AMP] = ACTIONS(416), - [anon_sym_AMP_AMP] = ACTIONS(416), - [anon_sym_PIPE_PIPE] = ACTIONS(416), - [anon_sym_LT] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_GT_GT] = ACTIONS(416), - [anon_sym_AMP_GT] = ACTIONS(883), - [anon_sym_AMP_GT_GT] = ACTIONS(416), - [anon_sym_LT_AMP] = ACTIONS(416), - [anon_sym_GT_AMP] = ACTIONS(416), - [anon_sym_DQUOTE] = ACTIONS(416), - [sym_raw_string] = ACTIONS(416), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(416), - [anon_sym_BQUOTE] = ACTIONS(416), - [anon_sym_LT_LPAREN] = ACTIONS(416), - [anon_sym_GT_LPAREN] = ACTIONS(416), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(883), - }, - [824] = { - [sym_file_descriptor] = ACTIONS(420), - [sym_word] = ACTIONS(420), - [sym__concat] = ACTIONS(420), - [sym_variable_name] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(420), - [anon_sym_PIPE_AMP] = ACTIONS(420), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(420), - [anon_sym_AMP_GT] = ACTIONS(885), - [anon_sym_AMP_GT_GT] = ACTIONS(420), - [anon_sym_LT_AMP] = ACTIONS(420), - [anon_sym_GT_AMP] = ACTIONS(420), - [anon_sym_DQUOTE] = ACTIONS(420), - [sym_raw_string] = ACTIONS(420), - [anon_sym_DOLLAR] = ACTIONS(885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(420), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), - [anon_sym_BQUOTE] = ACTIONS(420), - [anon_sym_LT_LPAREN] = ACTIONS(420), - [anon_sym_GT_LPAREN] = ACTIONS(420), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(885), - }, - [825] = { - [sym_special_variable_name] = STATE(1104), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(138), - [anon_sym_AT] = ACTIONS(138), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_COLON_QMARK] = ACTIONS(412), - [anon_sym_COLON_DASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(412), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [826] = { - [anon_sym_RBRACE] = ACTIONS(2239), - [anon_sym_EQ] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2243), - [anon_sym_COLON] = ACTIONS(2245), - [anon_sym_COLON_QMARK] = ACTIONS(2241), - [anon_sym_COLON_DASH] = ACTIONS(2241), - [anon_sym_PERCENT] = ACTIONS(2241), - [anon_sym_SLASH] = ACTIONS(2241), - [sym_comment] = ACTIONS(46), - }, - [827] = { - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_EQ] = ACTIONS(2249), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_COLON] = ACTIONS(2253), - [anon_sym_COLON_QMARK] = ACTIONS(2249), - [anon_sym_COLON_DASH] = ACTIONS(2249), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_SLASH] = ACTIONS(2249), - [sym_comment] = ACTIONS(46), - }, - [828] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(2255), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [829] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(2255), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [830] = { - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_BQUOTE] = ACTIONS(2255), - [sym_comment] = ACTIONS(46), - }, - [831] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(2255), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [832] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(2257), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [833] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(2257), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [834] = { - [aux_sym_concatenation_repeat1] = STATE(1100), - [sym_file_descriptor] = ACTIONS(542), - [sym_word] = ACTIONS(542), - [sym__concat] = ACTIONS(1571), - [sym_variable_name] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(542), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_AMP_GT] = ACTIONS(909), - [anon_sym_AMP_GT_GT] = ACTIONS(542), - [anon_sym_LT_AMP] = ACTIONS(542), - [anon_sym_GT_AMP] = ACTIONS(542), - [anon_sym_DQUOTE] = ACTIONS(542), - [sym_raw_string] = ACTIONS(542), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(542), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(542), - [anon_sym_BQUOTE] = ACTIONS(542), - [anon_sym_LT_LPAREN] = ACTIONS(542), - [anon_sym_GT_LPAREN] = ACTIONS(542), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(909), - }, - [835] = { - [sym_concatenation] = STATE(408), - [sym_string] = STATE(400), - [sym_simple_expansion] = STATE(400), - [sym_expansion] = STATE(400), - [sym_command_substitution] = STATE(400), - [sym_process_substitution] = STATE(400), - [aux_sym_for_statement_repeat1] = STATE(692), - [sym_word] = ACTIONS(744), - [anon_sym_SEMI_SEMI] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_raw_string] = ACTIONS(1318), - [anon_sym_DOLLAR] = ACTIONS(1320), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1322), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1324), - [anon_sym_BQUOTE] = ACTIONS(1326), - [anon_sym_LT_LPAREN] = ACTIONS(1328), - [anon_sym_GT_LPAREN] = ACTIONS(1328), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_LF] = ACTIONS(2259), - [anon_sym_AMP] = ACTIONS(2259), - }, - [836] = { - [anon_sym_PIPE] = ACTIONS(2261), - [anon_sym_RPAREN] = ACTIONS(2263), - [anon_sym_PIPE_AMP] = ACTIONS(2263), - [anon_sym_AMP_AMP] = ACTIONS(2263), - [anon_sym_PIPE_PIPE] = ACTIONS(2263), - [anon_sym_BQUOTE] = ACTIONS(2263), - [sym_comment] = ACTIONS(46), - }, - [837] = { - [sym__terminated_statement] = STATE(411), - [sym_for_statement] = STATE(412), - [sym_while_statement] = STATE(412), - [sym_if_statement] = STATE(412), - [sym_case_statement] = STATE(412), - [sym_function_definition] = STATE(412), - [sym_subshell] = STATE(412), - [sym_pipeline] = STATE(412), - [sym_list] = STATE(412), - [sym_command] = STATE(412), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(413), - [sym_declaration_command] = STATE(412), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(695), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(2265), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), - }, - [838] = { - [anon_sym_PIPE] = ACTIONS(2267), - [anon_sym_RPAREN] = ACTIONS(2269), - [anon_sym_PIPE_AMP] = ACTIONS(2269), - [anon_sym_AMP_AMP] = ACTIONS(2269), - [anon_sym_PIPE_PIPE] = ACTIONS(2269), - [anon_sym_BQUOTE] = ACTIONS(2269), - [sym_comment] = ACTIONS(46), - }, - [839] = { - [anon_sym_fi] = ACTIONS(2271), - [sym_comment] = ACTIONS(46), - }, - [840] = { - [sym__terminated_statement] = STATE(418), - [sym_for_statement] = STATE(419), - [sym_while_statement] = STATE(419), - [sym_if_statement] = STATE(419), - [sym_elif_clause] = STATE(420), - [sym_else_clause] = STATE(1116), - [sym_case_statement] = STATE(419), - [sym_function_definition] = STATE(419), - [sym_subshell] = STATE(419), - [sym_pipeline] = STATE(419), - [sym_list] = STATE(419), - [sym_command] = STATE(419), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(422), - [sym_declaration_command] = STATE(419), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(704), - [aux_sym_if_statement_repeat1] = STATE(1117), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(2273), - [anon_sym_elif] = ACTIONS(766), - [anon_sym_else] = ACTIONS(768), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), - }, - [841] = { - [sym_elif_clause] = STATE(420), - [sym_else_clause] = STATE(1116), - [aux_sym_if_statement_repeat1] = STATE(706), - [anon_sym_fi] = ACTIONS(2271), - [anon_sym_elif] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1352), - [sym_comment] = ACTIONS(46), - }, - [842] = { - [sym_case_item] = STATE(710), - [sym_concatenation] = STATE(711), - [sym_string] = STATE(707), - [sym_simple_expansion] = STATE(707), - [sym_expansion] = STATE(707), - [sym_command_substitution] = STATE(707), - [sym_process_substitution] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(1119), - [sym_word] = ACTIONS(1354), - [anon_sym_esac] = ACTIONS(2275), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1358), - }, - [843] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2277), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2277), - [anon_sym_LF] = ACTIONS(2277), - [anon_sym_AMP] = ACTIONS(2277), - }, - [844] = { - [sym_case_item] = STATE(710), - [sym_concatenation] = STATE(711), - [sym_string] = STATE(707), - [sym_simple_expansion] = STATE(707), - [sym_expansion] = STATE(707), - [sym_command_substitution] = STATE(707), - [sym_process_substitution] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(1122), - [sym_word] = ACTIONS(1354), - [anon_sym_esac] = ACTIONS(2279), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1358), - }, - [845] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2281), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2281), - [anon_sym_LF] = ACTIONS(2281), - [anon_sym_AMP] = ACTIONS(2281), - }, - [846] = { - [sym_compound_statement] = STATE(1124), - [anon_sym_LBRACE] = ACTIONS(1024), - [sym_comment] = ACTIONS(46), - }, - [847] = { - [sym_file_descriptor] = ACTIONS(1391), - [anon_sym_PIPE] = ACTIONS(2283), - [anon_sym_RPAREN] = ACTIONS(1391), - [anon_sym_PIPE_AMP] = ACTIONS(1391), - [anon_sym_AMP_AMP] = ACTIONS(1391), - [anon_sym_PIPE_PIPE] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(2283), - [anon_sym_GT] = ACTIONS(2283), - [anon_sym_GT_GT] = ACTIONS(1391), - [anon_sym_AMP_GT] = ACTIONS(2283), - [anon_sym_AMP_GT_GT] = ACTIONS(1391), - [anon_sym_LT_AMP] = ACTIONS(1391), - [anon_sym_GT_AMP] = ACTIONS(1391), - [anon_sym_BQUOTE] = ACTIONS(1391), - [sym_comment] = ACTIONS(46), - }, - [848] = { - [sym__terminated_statement] = STATE(21), - [sym_for_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_function_definition] = STATE(22), - [sym_subshell] = STATE(22), - [sym_pipeline] = STATE(22), - [sym_list] = STATE(22), - [sym_command] = STATE(22), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(24), - [sym_declaration_command] = STATE(22), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(732), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), - }, - [849] = { - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_GT] = ACTIONS(2287), - [anon_sym_GT_GT] = ACTIONS(2289), - [anon_sym_AMP_GT] = ACTIONS(2287), - [anon_sym_AMP_GT_GT] = ACTIONS(2289), - [anon_sym_LT_AMP] = ACTIONS(2289), - [anon_sym_GT_AMP] = ACTIONS(2289), - [sym_comment] = ACTIONS(46), - }, - [850] = { - [sym_concatenation] = STATE(1135), - [sym_string] = STATE(1127), - [sym_simple_expansion] = STATE(1127), - [sym_expansion] = STATE(1127), - [sym_command_substitution] = STATE(1127), - [sym_process_substitution] = STATE(1127), - [sym_word] = ACTIONS(2291), - [anon_sym_DQUOTE] = ACTIONS(2293), - [sym_raw_string] = ACTIONS(2291), - [anon_sym_DOLLAR] = ACTIONS(2295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2297), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), - [anon_sym_BQUOTE] = ACTIONS(2301), - [anon_sym_LT_LPAREN] = ACTIONS(2303), - [anon_sym_GT_LPAREN] = ACTIONS(2303), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2305), - }, - [851] = { - [anon_sym_PIPE] = ACTIONS(2307), - [anon_sym_RPAREN] = ACTIONS(2309), - [anon_sym_PIPE_AMP] = ACTIONS(2309), - [anon_sym_AMP_AMP] = ACTIONS(2309), - [anon_sym_PIPE_PIPE] = ACTIONS(2309), - [anon_sym_BQUOTE] = ACTIONS(2309), - [sym_comment] = ACTIONS(46), - }, - [852] = { - [anon_sym_PIPE] = ACTIONS(2311), - [anon_sym_RPAREN] = ACTIONS(2313), - [anon_sym_PIPE_AMP] = ACTIONS(2313), - [anon_sym_AMP_AMP] = ACTIONS(2313), - [anon_sym_PIPE_PIPE] = ACTIONS(2313), - [anon_sym_BQUOTE] = ACTIONS(2313), - [sym_comment] = ACTIONS(46), - }, - [853] = { - [sym_file_descriptor] = ACTIONS(546), - [sym_word] = ACTIONS(546), - [sym_variable_name] = ACTIONS(546), - [anon_sym_for] = ACTIONS(548), - [anon_sym_while] = ACTIONS(548), - [anon_sym_if] = ACTIONS(548), - [anon_sym_case] = ACTIONS(548), - [anon_sym_RPAREN] = ACTIONS(2315), - [anon_sym_function] = ACTIONS(548), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_typeset] = ACTIONS(548), - [anon_sym_export] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(548), - [anon_sym_local] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_GT] = ACTIONS(548), - [anon_sym_GT_GT] = ACTIONS(546), - [anon_sym_AMP_GT] = ACTIONS(548), - [anon_sym_AMP_GT_GT] = ACTIONS(546), - [anon_sym_LT_AMP] = ACTIONS(546), - [anon_sym_GT_AMP] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(546), - [sym_raw_string] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(546), - [anon_sym_BQUOTE] = ACTIONS(546), - [anon_sym_LT_LPAREN] = ACTIONS(546), - [anon_sym_GT_LPAREN] = ACTIONS(546), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(550), - }, - [854] = { - [aux_sym_concatenation_repeat1] = STATE(1138), - [sym_word] = ACTIONS(686), - [sym__concat] = ACTIONS(2317), - [sym_variable_name] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(686), - [anon_sym_PIPE_AMP] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(686), - [anon_sym_PIPE_PIPE] = ACTIONS(686), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1573), - }, - [855] = { - [sym_word] = ACTIONS(686), - [sym_variable_name] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(686), - [anon_sym_PIPE_AMP] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(686), - [anon_sym_PIPE_PIPE] = ACTIONS(686), - [anon_sym_BQUOTE] = ACTIONS(686), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1573), - }, - [856] = { - [sym_concatenation] = STATE(364), - [sym_string] = STATE(355), - [sym_simple_expansion] = STATE(355), - [sym_expansion] = STATE(355), - [sym_command_substitution] = STATE(355), - [sym_process_substitution] = STATE(355), - [aux_sym_for_statement_repeat1] = STATE(1140), - [sym_word] = ACTIONS(692), - [anon_sym_RPAREN] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(696), - [sym_raw_string] = ACTIONS(692), - [anon_sym_DOLLAR] = ACTIONS(698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(702), - [anon_sym_BQUOTE] = ACTIONS(704), - [anon_sym_LT_LPAREN] = ACTIONS(706), - [anon_sym_GT_LPAREN] = ACTIONS(706), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(708), - }, - [857] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(1142), - [anon_sym_DQUOTE] = ACTIONS(2321), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), - }, - [858] = { - [sym_special_variable_name] = STATE(1145), - [anon_sym_DOLLAR] = ACTIONS(2323), - [anon_sym_POUND] = ACTIONS(2323), - [anon_sym_AT] = ACTIONS(2323), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2325), - [anon_sym_STAR] = ACTIONS(2323), - [anon_sym_QMARK] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2323), - [anon_sym_BANG] = ACTIONS(2323), - [anon_sym_0] = ACTIONS(2327), - [anon_sym__] = ACTIONS(2327), - }, - [859] = { - [sym_special_variable_name] = STATE(1148), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(2329), - [anon_sym_AT] = ACTIONS(138), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2331), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [860] = { - [sym_for_statement] = STATE(1149), - [sym_while_statement] = STATE(1149), - [sym_if_statement] = STATE(1149), - [sym_case_statement] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_subshell] = STATE(1149), - [sym_pipeline] = STATE(1149), - [sym_list] = STATE(1149), - [sym_command] = STATE(1149), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(1150), - [sym_declaration_command] = STATE(1149), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), - }, - [861] = { - [sym_for_statement] = STATE(1151), - [sym_while_statement] = STATE(1151), - [sym_if_statement] = STATE(1151), - [sym_case_statement] = STATE(1151), - [sym_function_definition] = STATE(1151), - [sym_subshell] = STATE(1151), - [sym_pipeline] = STATE(1151), - [sym_list] = STATE(1151), - [sym_command] = STATE(1151), - [sym_command_name] = STATE(118), - [sym_variable_assignment] = STATE(1152), - [sym_declaration_command] = STATE(1151), - [sym_subscript] = STATE(120), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_command_repeat1] = STATE(121), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(178), - [sym_variable_name] = ACTIONS(180), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(184), - [anon_sym_typeset] = ACTIONS(184), - [anon_sym_export] = ACTIONS(184), - [anon_sym_readonly] = ACTIONS(184), - [anon_sym_local] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(178), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(186), - }, - [862] = { - [sym_for_statement] = STATE(1153), - [sym_while_statement] = STATE(1153), - [sym_if_statement] = STATE(1153), - [sym_case_statement] = STATE(1153), - [sym_function_definition] = STATE(1153), - [sym_subshell] = STATE(1153), - [sym_pipeline] = STATE(1153), - [sym_list] = STATE(1153), - [sym_command] = STATE(1153), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(1154), - [sym_declaration_command] = STATE(1153), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), - }, - [863] = { - [aux_sym_concatenation_repeat1] = STATE(1155), - [sym_word] = ACTIONS(722), - [sym__concat] = ACTIONS(2317), - [sym_variable_name] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(722), - [anon_sym_PIPE_AMP] = ACTIONS(722), - [anon_sym_AMP_AMP] = ACTIONS(722), - [anon_sym_PIPE_PIPE] = ACTIONS(722), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1589), - }, - [864] = { - [sym_file_descriptor] = ACTIONS(1532), - [sym_word] = ACTIONS(1532), - [sym__concat] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(2145), - [anon_sym_RPAREN] = ACTIONS(1532), - [anon_sym_PIPE_AMP] = ACTIONS(1532), - [anon_sym_AMP_AMP] = ACTIONS(1532), - [anon_sym_PIPE_PIPE] = ACTIONS(1532), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_GT] = ACTIONS(2145), - [anon_sym_GT_GT] = ACTIONS(1532), - [anon_sym_AMP_GT] = ACTIONS(2145), - [anon_sym_AMP_GT_GT] = ACTIONS(1532), - [anon_sym_LT_AMP] = ACTIONS(1532), - [anon_sym_GT_AMP] = ACTIONS(1532), - [anon_sym_LT_LT] = ACTIONS(2145), - [anon_sym_LT_LT_DASH] = ACTIONS(1532), - [anon_sym_DQUOTE] = ACTIONS(1532), - [sym_raw_string] = ACTIONS(1532), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1532), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1532), - [anon_sym_BQUOTE] = ACTIONS(1532), - [anon_sym_LT_LPAREN] = ACTIONS(1532), - [anon_sym_GT_LPAREN] = ACTIONS(1532), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2145), - }, - [865] = { - [anon_sym_AT] = ACTIONS(2333), - [sym_comment] = ACTIONS(46), - }, - [866] = { - [sym_file_descriptor] = ACTIONS(1538), - [sym_word] = ACTIONS(1538), - [sym__concat] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_PIPE_AMP] = ACTIONS(1538), - [anon_sym_AMP_AMP] = ACTIONS(1538), - [anon_sym_PIPE_PIPE] = ACTIONS(1538), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_GT] = ACTIONS(2149), - [anon_sym_GT_GT] = ACTIONS(1538), - [anon_sym_AMP_GT] = ACTIONS(2149), - [anon_sym_AMP_GT_GT] = ACTIONS(1538), - [anon_sym_LT_AMP] = ACTIONS(1538), - [anon_sym_GT_AMP] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(2149), - [anon_sym_LT_LT_DASH] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym_raw_string] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(2149), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1538), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1538), - [anon_sym_BQUOTE] = ACTIONS(1538), - [anon_sym_LT_LPAREN] = ACTIONS(1538), - [anon_sym_GT_LPAREN] = ACTIONS(1538), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2149), - }, - [867] = { - [anon_sym_AT] = ACTIONS(2335), - [sym_comment] = ACTIONS(46), - }, - [868] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2339), - [sym_comment] = ACTIONS(46), - }, - [869] = { - [sym_file_descriptor] = ACTIONS(1548), - [sym_word] = ACTIONS(1548), - [sym__concat] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(2157), - [anon_sym_RPAREN] = ACTIONS(1548), - [anon_sym_PIPE_AMP] = ACTIONS(1548), - [anon_sym_AMP_AMP] = ACTIONS(1548), - [anon_sym_PIPE_PIPE] = ACTIONS(1548), - [anon_sym_LT] = ACTIONS(2157), - [anon_sym_GT] = ACTIONS(2157), - [anon_sym_GT_GT] = ACTIONS(1548), - [anon_sym_AMP_GT] = ACTIONS(2157), - [anon_sym_AMP_GT_GT] = ACTIONS(1548), - [anon_sym_LT_AMP] = ACTIONS(1548), - [anon_sym_GT_AMP] = ACTIONS(1548), - [anon_sym_LT_LT] = ACTIONS(2157), - [anon_sym_LT_LT_DASH] = ACTIONS(1548), - [anon_sym_DQUOTE] = ACTIONS(1548), - [sym_raw_string] = ACTIONS(1548), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1548), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1548), - [anon_sym_BQUOTE] = ACTIONS(1548), - [anon_sym_LT_LPAREN] = ACTIONS(1548), - [anon_sym_GT_LPAREN] = ACTIONS(1548), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2157), - }, - [870] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(2341), - [anon_sym_RBRACE] = ACTIONS(2343), - [sym_comment] = ACTIONS(46), - }, - [871] = { - [sym__concat] = ACTIONS(2345), - [anon_sym_RBRACE] = ACTIONS(2339), - [sym_comment] = ACTIONS(46), - }, - [872] = { - [anon_sym_RBRACK] = ACTIONS(2345), - [sym_comment] = ACTIONS(46), - }, - [873] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2349), - [sym_comment] = ACTIONS(46), - }, - [874] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(2351), - [anon_sym_RBRACE] = ACTIONS(2353), - [sym_comment] = ACTIONS(46), - }, - [875] = { - [sym__concat] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2349), - [sym_comment] = ACTIONS(46), - }, - [876] = { - [anon_sym_RBRACK] = ACTIONS(2355), - [sym_comment] = ACTIONS(46), - }, - [877] = { - [sym_file_redirect] = STATE(1168), - [sym_file_descriptor] = ACTIONS(1611), - [anon_sym_PIPE] = ACTIONS(2357), - [anon_sym_RPAREN] = ACTIONS(2359), - [anon_sym_PIPE_AMP] = ACTIONS(2359), - [anon_sym_AMP_AMP] = ACTIONS(2359), - [anon_sym_PIPE_PIPE] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(1617), - [anon_sym_GT] = ACTIONS(1617), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_AMP_GT] = ACTIONS(1617), - [anon_sym_AMP_GT_GT] = ACTIONS(1619), - [anon_sym_LT_AMP] = ACTIONS(1619), - [anon_sym_GT_AMP] = ACTIONS(1619), - [sym_comment] = ACTIONS(46), - }, - [878] = { - [aux_sym_concatenation_repeat1] = STATE(882), - [sym_file_descriptor] = ACTIONS(667), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(669), - [anon_sym_RPAREN] = ACTIONS(667), - [anon_sym_PIPE_AMP] = ACTIONS(667), - [anon_sym_AMP_AMP] = ACTIONS(667), - [anon_sym_PIPE_PIPE] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(667), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(667), - [anon_sym_LT_AMP] = ACTIONS(667), - [anon_sym_GT_AMP] = ACTIONS(667), - [anon_sym_LT_LT] = ACTIONS(669), - [anon_sym_LT_LT_DASH] = ACTIONS(667), - [sym_comment] = ACTIONS(46), - }, - [879] = { - [aux_sym_concatenation_repeat1] = STATE(897), - [sym_file_descriptor] = ACTIONS(671), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_RPAREN] = ACTIONS(671), - [anon_sym_PIPE_AMP] = ACTIONS(671), - [anon_sym_AMP_AMP] = ACTIONS(671), - [anon_sym_PIPE_PIPE] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(671), - [anon_sym_GT_AMP] = ACTIONS(671), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_LT_LT_DASH] = ACTIONS(671), - [sym_comment] = ACTIONS(46), - }, - [880] = { - [sym_file_descriptor] = ACTIONS(667), - [anon_sym_PIPE] = ACTIONS(669), - [anon_sym_RPAREN] = ACTIONS(667), - [anon_sym_PIPE_AMP] = ACTIONS(667), - [anon_sym_AMP_AMP] = ACTIONS(667), - [anon_sym_PIPE_PIPE] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(667), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(667), - [anon_sym_LT_AMP] = ACTIONS(667), - [anon_sym_GT_AMP] = ACTIONS(667), - [anon_sym_LT_LT] = ACTIONS(669), - [anon_sym_LT_LT_DASH] = ACTIONS(667), - [anon_sym_BQUOTE] = ACTIONS(667), - [sym_comment] = ACTIONS(46), - }, - [881] = { - [sym_string] = STATE(1169), - [sym_simple_expansion] = STATE(1169), - [sym_expansion] = STATE(1169), - [sym_command_substitution] = STATE(1169), - [sym_process_substitution] = STATE(1169), - [sym_word] = ACTIONS(2361), - [anon_sym_DQUOTE] = ACTIONS(1078), - [sym_raw_string] = ACTIONS(2361), - [anon_sym_DOLLAR] = ACTIONS(1080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1082), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1084), - [anon_sym_BQUOTE] = ACTIONS(1086), - [anon_sym_LT_LPAREN] = ACTIONS(1088), - [anon_sym_GT_LPAREN] = ACTIONS(1088), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2363), - }, - [882] = { - [aux_sym_concatenation_repeat1] = STATE(1171), - [sym_file_descriptor] = ACTIONS(254), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_RPAREN] = ACTIONS(254), - [anon_sym_PIPE_AMP] = ACTIONS(254), - [anon_sym_AMP_AMP] = ACTIONS(254), - [anon_sym_PIPE_PIPE] = ACTIONS(254), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_GT_GT] = ACTIONS(254), - [anon_sym_AMP_GT] = ACTIONS(877), - [anon_sym_AMP_GT_GT] = ACTIONS(254), - [anon_sym_LT_AMP] = ACTIONS(254), - [anon_sym_GT_AMP] = ACTIONS(254), - [anon_sym_LT_LT] = ACTIONS(877), - [anon_sym_LT_LT_DASH] = ACTIONS(254), - [sym_comment] = ACTIONS(46), - }, - [883] = { - [sym_file_descriptor] = ACTIONS(394), - [sym__concat] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(394), - [anon_sym_PIPE_AMP] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(879), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_AMP_GT] = ACTIONS(879), - [anon_sym_AMP_GT_GT] = ACTIONS(394), - [anon_sym_LT_AMP] = ACTIONS(394), - [anon_sym_GT_AMP] = ACTIONS(394), - [anon_sym_LT_LT] = ACTIONS(879), - [anon_sym_LT_LT_DASH] = ACTIONS(394), - [anon_sym_BQUOTE] = ACTIONS(394), - [sym_comment] = ACTIONS(46), - }, - [884] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(252), - [anon_sym_DQUOTE] = ACTIONS(2365), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), - }, - [885] = { - [sym_file_descriptor] = ACTIONS(412), - [sym__concat] = ACTIONS(412), - [anon_sym_PIPE] = ACTIONS(424), - [anon_sym_RPAREN] = ACTIONS(412), - [anon_sym_PIPE_AMP] = ACTIONS(412), - [anon_sym_AMP_AMP] = ACTIONS(412), - [anon_sym_PIPE_PIPE] = ACTIONS(412), - [anon_sym_LT] = ACTIONS(424), - [anon_sym_GT] = ACTIONS(424), - [anon_sym_GT_GT] = ACTIONS(412), - [anon_sym_AMP_GT] = ACTIONS(424), - [anon_sym_AMP_GT_GT] = ACTIONS(412), - [anon_sym_LT_AMP] = ACTIONS(412), - [anon_sym_GT_AMP] = ACTIONS(412), - [anon_sym_LT_LT] = ACTIONS(424), - [anon_sym_LT_LT_DASH] = ACTIONS(412), - [anon_sym_BQUOTE] = ACTIONS(412), - [sym_comment] = ACTIONS(46), - }, - [886] = { - [sym_file_descriptor] = ACTIONS(416), - [sym__concat] = ACTIONS(416), - [anon_sym_PIPE] = ACTIONS(883), - [anon_sym_RPAREN] = ACTIONS(416), - [anon_sym_PIPE_AMP] = ACTIONS(416), - [anon_sym_AMP_AMP] = ACTIONS(416), - [anon_sym_PIPE_PIPE] = ACTIONS(416), - [anon_sym_LT] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_GT_GT] = ACTIONS(416), - [anon_sym_AMP_GT] = ACTIONS(883), - [anon_sym_AMP_GT_GT] = ACTIONS(416), - [anon_sym_LT_AMP] = ACTIONS(416), - [anon_sym_GT_AMP] = ACTIONS(416), - [anon_sym_LT_LT] = ACTIONS(883), - [anon_sym_LT_LT_DASH] = ACTIONS(416), - [anon_sym_BQUOTE] = ACTIONS(416), - [sym_comment] = ACTIONS(46), - }, - [887] = { - [sym_file_descriptor] = ACTIONS(420), - [sym__concat] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(420), - [anon_sym_PIPE_AMP] = ACTIONS(420), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(885), - [anon_sym_GT] = ACTIONS(885), - [anon_sym_GT_GT] = ACTIONS(420), - [anon_sym_AMP_GT] = ACTIONS(885), - [anon_sym_AMP_GT_GT] = ACTIONS(420), - [anon_sym_LT_AMP] = ACTIONS(420), - [anon_sym_GT_AMP] = ACTIONS(420), - [anon_sym_LT_LT] = ACTIONS(885), - [anon_sym_LT_LT_DASH] = ACTIONS(420), - [anon_sym_BQUOTE] = ACTIONS(420), - [sym_comment] = ACTIONS(46), - }, - [888] = { - [sym_special_variable_name] = STATE(1174), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(138), - [anon_sym_AT] = ACTIONS(138), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_COLON_QMARK] = ACTIONS(412), - [anon_sym_COLON_DASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(412), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2367), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [889] = { - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym_EQ] = ACTIONS(2371), - [anon_sym_LBRACK] = ACTIONS(2373), - [anon_sym_COLON] = ACTIONS(2375), - [anon_sym_COLON_QMARK] = ACTIONS(2371), - [anon_sym_COLON_DASH] = ACTIONS(2371), - [anon_sym_PERCENT] = ACTIONS(2371), - [anon_sym_SLASH] = ACTIONS(2371), - [sym_comment] = ACTIONS(46), - }, - [890] = { - [anon_sym_RBRACE] = ACTIONS(2377), - [anon_sym_EQ] = ACTIONS(2379), - [anon_sym_LBRACK] = ACTIONS(2381), - [anon_sym_COLON] = ACTIONS(2383), - [anon_sym_COLON_QMARK] = ACTIONS(2379), - [anon_sym_COLON_DASH] = ACTIONS(2379), - [anon_sym_PERCENT] = ACTIONS(2379), - [anon_sym_SLASH] = ACTIONS(2379), - [sym_comment] = ACTIONS(46), - }, - [891] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(2385), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [892] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(2385), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [893] = { - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_BQUOTE] = ACTIONS(2385), - [sym_comment] = ACTIONS(46), - }, - [894] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(2385), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [895] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(2387), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [896] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(2387), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [897] = { - [aux_sym_concatenation_repeat1] = STATE(1171), - [sym_file_descriptor] = ACTIONS(542), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(542), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_AMP_GT] = ACTIONS(909), - [anon_sym_AMP_GT_GT] = ACTIONS(542), - [anon_sym_LT_AMP] = ACTIONS(542), - [anon_sym_GT_AMP] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(909), - [anon_sym_LT_LT_DASH] = ACTIONS(542), - [sym_comment] = ACTIONS(46), - }, - [898] = { - [sym_file_descriptor] = ACTIONS(1837), - [anon_sym_PIPE] = ACTIONS(2389), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_PIPE_AMP] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1837), - [anon_sym_PIPE_PIPE] = ACTIONS(1837), - [anon_sym_LT] = ACTIONS(2389), - [anon_sym_GT] = ACTIONS(2389), - [anon_sym_GT_GT] = ACTIONS(1837), - [anon_sym_AMP_GT] = ACTIONS(2389), - [anon_sym_AMP_GT_GT] = ACTIONS(1837), - [anon_sym_LT_AMP] = ACTIONS(1837), - [anon_sym_GT_AMP] = ACTIONS(1837), - [anon_sym_LT_LT] = ACTIONS(2389), - [anon_sym_LT_LT_DASH] = ACTIONS(1837), - [anon_sym_BQUOTE] = ACTIONS(1837), - [sym_comment] = ACTIONS(46), - }, - [899] = { - [sym_simple_expansion] = STATE(617), - [sym_expansion] = STATE(617), - [aux_sym_heredoc_repeat1] = STATE(936), - [sym__heredoc_middle] = ACTIONS(1156), - [sym__heredoc_end] = ACTIONS(2391), - [anon_sym_DOLLAR] = ACTIONS(1160), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1162), - [sym_comment] = ACTIONS(46), - }, - [900] = { - [sym_file_redirect] = STATE(304), - [sym_heredoc_redirect] = STATE(304), - [aux_sym_command_repeat2] = STATE(576), - [sym_file_descriptor] = ACTIONS(492), - [anon_sym_PIPE] = ACTIONS(2393), - [anon_sym_RPAREN] = ACTIONS(2395), - [anon_sym_PIPE_AMP] = ACTIONS(2395), - [anon_sym_AMP_AMP] = ACTIONS(2395), - [anon_sym_PIPE_PIPE] = ACTIONS(2395), - [anon_sym_LT] = ACTIONS(500), - [anon_sym_GT] = ACTIONS(500), - [anon_sym_GT_GT] = ACTIONS(502), - [anon_sym_AMP_GT] = ACTIONS(500), - [anon_sym_AMP_GT_GT] = ACTIONS(502), - [anon_sym_LT_AMP] = ACTIONS(502), - [anon_sym_GT_AMP] = ACTIONS(502), - [anon_sym_LT_LT] = ACTIONS(504), - [anon_sym_LT_LT_DASH] = ACTIONS(506), - [sym_comment] = ACTIONS(46), - }, - [901] = { - [aux_sym_concatenation_repeat1] = STATE(1184), - [sym_file_descriptor] = ACTIONS(254), - [sym_word] = ACTIONS(254), - [sym__concat] = ACTIONS(1571), - [sym_variable_name] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_PIPE_AMP] = ACTIONS(254), - [anon_sym_AMP_AMP] = ACTIONS(254), - [anon_sym_PIPE_PIPE] = ACTIONS(254), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_GT_GT] = ACTIONS(254), - [anon_sym_AMP_GT] = ACTIONS(877), - [anon_sym_AMP_GT_GT] = ACTIONS(254), - [anon_sym_LT_AMP] = ACTIONS(254), - [anon_sym_GT_AMP] = ACTIONS(254), - [anon_sym_DQUOTE] = ACTIONS(254), - [sym_raw_string] = ACTIONS(254), - [anon_sym_DOLLAR] = ACTIONS(877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(254), - [anon_sym_LT_LPAREN] = ACTIONS(254), - [anon_sym_GT_LPAREN] = ACTIONS(254), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(877), - }, - [902] = { - [aux_sym_concatenation_repeat1] = STATE(1184), - [sym_file_descriptor] = ACTIONS(542), - [sym_word] = ACTIONS(542), - [sym__concat] = ACTIONS(1571), - [sym_variable_name] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_AMP_GT] = ACTIONS(909), - [anon_sym_AMP_GT_GT] = ACTIONS(542), - [anon_sym_LT_AMP] = ACTIONS(542), - [anon_sym_GT_AMP] = ACTIONS(542), - [anon_sym_DQUOTE] = ACTIONS(542), - [sym_raw_string] = ACTIONS(542), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(542), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(542), - [anon_sym_BQUOTE] = ACTIONS(542), - [anon_sym_LT_LPAREN] = ACTIONS(542), - [anon_sym_GT_LPAREN] = ACTIONS(542), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(909), - }, - [903] = { - [sym_compound_statement] = STATE(1185), - [anon_sym_LBRACE] = ACTIONS(1024), - [sym_comment] = ACTIONS(46), - }, - [904] = { - [anon_sym_LT] = ACTIONS(2397), - [anon_sym_GT] = ACTIONS(2397), - [anon_sym_GT_GT] = ACTIONS(2399), - [anon_sym_AMP_GT] = ACTIONS(2397), - [anon_sym_AMP_GT_GT] = ACTIONS(2399), - [anon_sym_LT_AMP] = ACTIONS(2399), - [anon_sym_GT_AMP] = ACTIONS(2399), - [sym_comment] = ACTIONS(46), - }, - [905] = { - [sym_concatenation] = STATE(1135), - [sym_string] = STATE(1187), - [sym_simple_expansion] = STATE(1187), - [sym_expansion] = STATE(1187), - [sym_command_substitution] = STATE(1187), - [sym_process_substitution] = STATE(1187), - [sym_word] = ACTIONS(2401), - [anon_sym_DQUOTE] = ACTIONS(2293), - [sym_raw_string] = ACTIONS(2401), - [anon_sym_DOLLAR] = ACTIONS(2295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2297), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), - [anon_sym_BQUOTE] = ACTIONS(2301), - [anon_sym_LT_LPAREN] = ACTIONS(2303), - [anon_sym_GT_LPAREN] = ACTIONS(2303), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2403), - }, - [906] = { - [aux_sym_concatenation_repeat1] = STATE(1189), - [sym_word] = ACTIONS(686), - [sym__concat] = ACTIONS(2317), - [sym_variable_name] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_PIPE_AMP] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(686), - [anon_sym_PIPE_PIPE] = ACTIONS(686), - [anon_sym_BQUOTE] = ACTIONS(686), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1573), - }, - [907] = { - [aux_sym_concatenation_repeat1] = STATE(1190), - [sym_word] = ACTIONS(722), - [sym__concat] = ACTIONS(2317), - [sym_variable_name] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_PIPE_AMP] = ACTIONS(722), - [anon_sym_AMP_AMP] = ACTIONS(722), - [anon_sym_PIPE_PIPE] = ACTIONS(722), - [anon_sym_BQUOTE] = ACTIONS(722), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1589), - }, - [908] = { - [sym_file_redirect] = STATE(1168), - [sym_file_descriptor] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(2357), - [anon_sym_PIPE_AMP] = ACTIONS(2359), - [anon_sym_AMP_AMP] = ACTIONS(2359), - [anon_sym_PIPE_PIPE] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1769), - [anon_sym_GT_GT] = ACTIONS(1771), - [anon_sym_AMP_GT] = ACTIONS(1769), - [anon_sym_AMP_GT_GT] = ACTIONS(1771), - [anon_sym_LT_AMP] = ACTIONS(1771), - [anon_sym_GT_AMP] = ACTIONS(1771), - [anon_sym_BQUOTE] = ACTIONS(2359), - [sym_comment] = ACTIONS(46), - }, - [909] = { - [aux_sym_concatenation_repeat1] = STATE(911), - [sym_file_descriptor] = ACTIONS(667), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(669), - [anon_sym_PIPE_AMP] = ACTIONS(667), - [anon_sym_AMP_AMP] = ACTIONS(667), - [anon_sym_PIPE_PIPE] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(669), - [anon_sym_GT_GT] = ACTIONS(667), - [anon_sym_AMP_GT] = ACTIONS(669), - [anon_sym_AMP_GT_GT] = ACTIONS(667), - [anon_sym_LT_AMP] = ACTIONS(667), - [anon_sym_GT_AMP] = ACTIONS(667), - [anon_sym_LT_LT] = ACTIONS(669), - [anon_sym_LT_LT_DASH] = ACTIONS(667), - [anon_sym_BQUOTE] = ACTIONS(667), - [sym_comment] = ACTIONS(46), - }, - [910] = { - [aux_sym_concatenation_repeat1] = STATE(912), - [sym_file_descriptor] = ACTIONS(671), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_PIPE_AMP] = ACTIONS(671), - [anon_sym_AMP_AMP] = ACTIONS(671), - [anon_sym_PIPE_PIPE] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(671), - [anon_sym_LT_AMP] = ACTIONS(671), - [anon_sym_GT_AMP] = ACTIONS(671), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_LT_LT_DASH] = ACTIONS(671), - [anon_sym_BQUOTE] = ACTIONS(671), - [sym_comment] = ACTIONS(46), - }, - [911] = { - [aux_sym_concatenation_repeat1] = STATE(1191), - [sym_file_descriptor] = ACTIONS(254), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_PIPE_AMP] = ACTIONS(254), - [anon_sym_AMP_AMP] = ACTIONS(254), - [anon_sym_PIPE_PIPE] = ACTIONS(254), - [anon_sym_LT] = ACTIONS(877), - [anon_sym_GT] = ACTIONS(877), - [anon_sym_GT_GT] = ACTIONS(254), - [anon_sym_AMP_GT] = ACTIONS(877), - [anon_sym_AMP_GT_GT] = ACTIONS(254), - [anon_sym_LT_AMP] = ACTIONS(254), - [anon_sym_GT_AMP] = ACTIONS(254), - [anon_sym_LT_LT] = ACTIONS(877), - [anon_sym_LT_LT_DASH] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(254), - [sym_comment] = ACTIONS(46), - }, - [912] = { - [aux_sym_concatenation_repeat1] = STATE(1191), - [sym_file_descriptor] = ACTIONS(542), - [sym__concat] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_AMP_GT] = ACTIONS(909), - [anon_sym_AMP_GT_GT] = ACTIONS(542), - [anon_sym_LT_AMP] = ACTIONS(542), - [anon_sym_GT_AMP] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(909), - [anon_sym_LT_LT_DASH] = ACTIONS(542), - [anon_sym_BQUOTE] = ACTIONS(542), - [sym_comment] = ACTIONS(46), - }, - [913] = { - [sym_file_redirect] = STATE(304), - [sym_heredoc_redirect] = STATE(304), - [aux_sym_command_repeat2] = STATE(594), - [sym_file_descriptor] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(2393), - [anon_sym_PIPE_AMP] = ACTIONS(2395), - [anon_sym_AMP_AMP] = ACTIONS(2395), - [anon_sym_PIPE_PIPE] = ACTIONS(2395), - [anon_sym_LT] = ACTIONS(530), - [anon_sym_GT] = ACTIONS(530), - [anon_sym_GT_GT] = ACTIONS(532), - [anon_sym_AMP_GT] = ACTIONS(530), - [anon_sym_AMP_GT_GT] = ACTIONS(532), - [anon_sym_LT_AMP] = ACTIONS(532), - [anon_sym_GT_AMP] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(504), - [anon_sym_LT_LT_DASH] = ACTIONS(506), - [anon_sym_BQUOTE] = ACTIONS(2395), - [sym_comment] = ACTIONS(46), - }, - [914] = { - [anon_sym_PIPE] = ACTIONS(2405), - [anon_sym_RPAREN] = ACTIONS(2405), - [anon_sym_SEMI_SEMI] = ACTIONS(2405), - [anon_sym_PIPE_AMP] = ACTIONS(2405), - [anon_sym_AMP_AMP] = ACTIONS(2405), - [anon_sym_PIPE_PIPE] = ACTIONS(2405), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2405), - [anon_sym_LF] = ACTIONS(2405), - [anon_sym_AMP] = ACTIONS(2405), - }, - [915] = { - [sym_file_descriptor] = ACTIONS(675), - [sym__concat] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(677), - [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_SEMI_SEMI] = ACTIONS(677), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(677), - [anon_sym_GT_GT] = ACTIONS(677), - [anon_sym_AMP_GT] = ACTIONS(677), - [anon_sym_AMP_GT_GT] = ACTIONS(677), - [anon_sym_LT_AMP] = ACTIONS(677), - [anon_sym_GT_AMP] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(677), - [anon_sym_LT_LT_DASH] = ACTIONS(677), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(677), - }, - [916] = { - [sym_file_descriptor] = ACTIONS(679), - [sym__concat] = ACTIONS(679), - [anon_sym_PIPE] = ACTIONS(681), - [anon_sym_RPAREN] = ACTIONS(681), - [anon_sym_SEMI_SEMI] = ACTIONS(681), - [anon_sym_PIPE_AMP] = ACTIONS(681), - [anon_sym_AMP_AMP] = ACTIONS(681), - [anon_sym_PIPE_PIPE] = ACTIONS(681), - [anon_sym_LT] = ACTIONS(681), - [anon_sym_GT] = ACTIONS(681), - [anon_sym_GT_GT] = ACTIONS(681), - [anon_sym_AMP_GT] = ACTIONS(681), - [anon_sym_AMP_GT_GT] = ACTIONS(681), - [anon_sym_LT_AMP] = ACTIONS(681), - [anon_sym_GT_AMP] = ACTIONS(681), - [anon_sym_LT_LT] = ACTIONS(681), - [anon_sym_LT_LT_DASH] = ACTIONS(681), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(681), - [anon_sym_LF] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - }, - [917] = { - [aux_sym_concatenation_repeat1] = STATE(917), - [sym_file_descriptor] = ACTIONS(675), - [sym__concat] = ACTIONS(2407), - [anon_sym_PIPE] = ACTIONS(677), - [anon_sym_SEMI_SEMI] = ACTIONS(677), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(677), - [anon_sym_GT_GT] = ACTIONS(677), - [anon_sym_AMP_GT] = ACTIONS(677), - [anon_sym_AMP_GT_GT] = ACTIONS(677), - [anon_sym_LT_AMP] = ACTIONS(677), - [anon_sym_GT_AMP] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(677), - [anon_sym_LT_LT_DASH] = ACTIONS(677), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(677), - }, - [918] = { - [sym_file_descriptor] = ACTIONS(931), - [sym__concat] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_RPAREN] = ACTIONS(933), - [anon_sym_SEMI_SEMI] = ACTIONS(933), - [anon_sym_PIPE_AMP] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [anon_sym_LT] = ACTIONS(933), - [anon_sym_GT] = ACTIONS(933), - [anon_sym_GT_GT] = ACTIONS(933), - [anon_sym_AMP_GT] = ACTIONS(933), - [anon_sym_AMP_GT_GT] = ACTIONS(933), - [anon_sym_LT_AMP] = ACTIONS(933), - [anon_sym_GT_AMP] = ACTIONS(933), - [anon_sym_LT_LT] = ACTIONS(933), - [anon_sym_LT_LT_DASH] = ACTIONS(933), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - }, - [919] = { - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2412), - [sym_comment] = ACTIONS(46), - }, - [920] = { - [anon_sym_RBRACE] = ACTIONS(2414), - [anon_sym_LBRACK] = ACTIONS(2416), - [sym_comment] = ACTIONS(46), - }, - [921] = { - [sym_file_descriptor] = ACTIONS(960), - [sym__concat] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_RPAREN] = ACTIONS(962), - [anon_sym_SEMI_SEMI] = ACTIONS(962), - [anon_sym_PIPE_AMP] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(962), - [anon_sym_PIPE_PIPE] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(962), - [anon_sym_GT] = ACTIONS(962), - [anon_sym_GT_GT] = ACTIONS(962), - [anon_sym_AMP_GT] = ACTIONS(962), - [anon_sym_AMP_GT_GT] = ACTIONS(962), - [anon_sym_LT_AMP] = ACTIONS(962), - [anon_sym_GT_AMP] = ACTIONS(962), - [anon_sym_LT_LT] = ACTIONS(962), - [anon_sym_LT_LT_DASH] = ACTIONS(962), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_LF] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - }, - [922] = { - [sym_concatenation] = STATE(1199), - [sym_string] = STATE(1196), - [sym_simple_expansion] = STATE(1196), - [sym_expansion] = STATE(1196), - [sym_command_substitution] = STATE(1196), - [sym_process_substitution] = STATE(1196), - [sym_word] = ACTIONS(2418), - [anon_sym_RBRACE] = ACTIONS(2420), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(2418), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2422), - }, - [923] = { - [anon_sym_AT] = ACTIONS(2424), - [sym_comment] = ACTIONS(46), - }, - [924] = { - [sym_file_descriptor] = ACTIONS(972), - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(974), - [anon_sym_SEMI_SEMI] = ACTIONS(974), - [anon_sym_PIPE_AMP] = ACTIONS(974), - [anon_sym_AMP_AMP] = ACTIONS(974), - [anon_sym_PIPE_PIPE] = ACTIONS(974), - [anon_sym_LT] = ACTIONS(974), - [anon_sym_GT] = ACTIONS(974), - [anon_sym_GT_GT] = ACTIONS(974), - [anon_sym_AMP_GT] = ACTIONS(974), - [anon_sym_AMP_GT_GT] = ACTIONS(974), - [anon_sym_LT_AMP] = ACTIONS(974), - [anon_sym_GT_AMP] = ACTIONS(974), - [anon_sym_LT_LT] = ACTIONS(974), - [anon_sym_LT_LT_DASH] = ACTIONS(974), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_LF] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - }, - [925] = { - [sym_concatenation] = STATE(1203), - [sym_string] = STATE(1201), - [sym_simple_expansion] = STATE(1201), - [sym_expansion] = STATE(1201), - [sym_command_substitution] = STATE(1201), - [sym_process_substitution] = STATE(1201), - [sym_word] = ACTIONS(2426), - [anon_sym_RBRACE] = ACTIONS(2414), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(2426), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2428), - }, - [926] = { - [anon_sym_AT] = ACTIONS(2430), - [sym_comment] = ACTIONS(46), - }, - [927] = { - [sym_file_descriptor] = ACTIONS(1066), - [sym__concat] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_SEMI_SEMI] = ACTIONS(1068), - [anon_sym_PIPE_AMP] = ACTIONS(1068), - [anon_sym_AMP_AMP] = ACTIONS(1068), - [anon_sym_PIPE_PIPE] = ACTIONS(1068), - [anon_sym_LT] = ACTIONS(1068), - [anon_sym_GT] = ACTIONS(1068), - [anon_sym_GT_GT] = ACTIONS(1068), - [anon_sym_AMP_GT] = ACTIONS(1068), - [anon_sym_AMP_GT_GT] = ACTIONS(1068), - [anon_sym_LT_AMP] = ACTIONS(1068), - [anon_sym_GT_AMP] = ACTIONS(1068), - [anon_sym_LT_LT] = ACTIONS(1068), - [anon_sym_LT_LT_DASH] = ACTIONS(1068), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_LF] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1068), - }, - [928] = { - [sym_file_descriptor] = ACTIONS(1122), - [sym__concat] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1124), - [anon_sym_RPAREN] = ACTIONS(1124), - [anon_sym_SEMI_SEMI] = ACTIONS(1124), - [anon_sym_PIPE_AMP] = ACTIONS(1124), - [anon_sym_AMP_AMP] = ACTIONS(1124), - [anon_sym_PIPE_PIPE] = ACTIONS(1124), - [anon_sym_LT] = ACTIONS(1124), - [anon_sym_GT] = ACTIONS(1124), - [anon_sym_GT_GT] = ACTIONS(1124), - [anon_sym_AMP_GT] = ACTIONS(1124), - [anon_sym_AMP_GT_GT] = ACTIONS(1124), - [anon_sym_LT_AMP] = ACTIONS(1124), - [anon_sym_GT_AMP] = ACTIONS(1124), - [anon_sym_LT_LT] = ACTIONS(1124), - [anon_sym_LT_LT_DASH] = ACTIONS(1124), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1124), - }, - [929] = { - [sym__heredoc_middle] = ACTIONS(412), - [sym__heredoc_end] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(412), - [sym_comment] = ACTIONS(46), - }, - [930] = { - [sym__heredoc_middle] = ACTIONS(416), - [sym__heredoc_end] = ACTIONS(416), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(416), - [sym_comment] = ACTIONS(46), - }, - [931] = { - [sym__heredoc_middle] = ACTIONS(420), - [sym__heredoc_end] = ACTIONS(420), - [anon_sym_DOLLAR] = ACTIONS(885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(420), - [sym_comment] = ACTIONS(46), - }, - [932] = { - [sym_special_variable_name] = STATE(1206), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(138), - [anon_sym_AT] = ACTIONS(138), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_COLON_QMARK] = ACTIONS(412), - [anon_sym_COLON_DASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(412), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2432), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [933] = { - [anon_sym_RBRACE] = ACTIONS(2434), - [anon_sym_EQ] = ACTIONS(2436), - [anon_sym_LBRACK] = ACTIONS(2438), - [anon_sym_COLON] = ACTIONS(2440), - [anon_sym_COLON_QMARK] = ACTIONS(2436), - [anon_sym_COLON_DASH] = ACTIONS(2436), - [anon_sym_PERCENT] = ACTIONS(2436), - [anon_sym_SLASH] = ACTIONS(2436), - [sym_comment] = ACTIONS(46), - }, - [934] = { - [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_EQ] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2446), - [anon_sym_COLON] = ACTIONS(2448), - [anon_sym_COLON_QMARK] = ACTIONS(2444), - [anon_sym_COLON_DASH] = ACTIONS(2444), - [anon_sym_PERCENT] = ACTIONS(2444), - [anon_sym_SLASH] = ACTIONS(2444), - [sym_comment] = ACTIONS(46), - }, - [935] = { - [sym_file_descriptor] = ACTIONS(2450), - [anon_sym_PIPE] = ACTIONS(2452), - [anon_sym_RPAREN] = ACTIONS(2452), - [anon_sym_SEMI_SEMI] = ACTIONS(2452), - [anon_sym_PIPE_AMP] = ACTIONS(2452), - [anon_sym_AMP_AMP] = ACTIONS(2452), - [anon_sym_PIPE_PIPE] = ACTIONS(2452), - [anon_sym_LT] = ACTIONS(2452), - [anon_sym_GT] = ACTIONS(2452), - [anon_sym_GT_GT] = ACTIONS(2452), - [anon_sym_AMP_GT] = ACTIONS(2452), - [anon_sym_AMP_GT_GT] = ACTIONS(2452), - [anon_sym_LT_AMP] = ACTIONS(2452), - [anon_sym_GT_AMP] = ACTIONS(2452), - [anon_sym_LT_LT] = ACTIONS(2452), - [anon_sym_LT_LT_DASH] = ACTIONS(2452), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2452), - [anon_sym_LF] = ACTIONS(2452), - [anon_sym_AMP] = ACTIONS(2452), - }, - [936] = { - [sym_simple_expansion] = STATE(617), - [sym_expansion] = STATE(617), - [aux_sym_heredoc_repeat1] = STATE(936), - [sym__heredoc_middle] = ACTIONS(2454), - [sym__heredoc_end] = ACTIONS(2457), + [sym_concatenation] = STATE(340), + [sym_string] = STATE(338), + [sym_simple_expansion] = STATE(338), + [sym_expansion] = STATE(338), + [sym_command_substitution] = STATE(338), + [sym_process_substitution] = STATE(338), + [aux_sym_for_statement_repeat1] = STATE(680), + [sym_file_descriptor] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(2448), + [anon_sym_RPAREN] = ACTIONS(1575), + [anon_sym_PIPE_AMP] = ACTIONS(1575), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [anon_sym_PIPE_PIPE] = ACTIONS(2448), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_GT_GT] = ACTIONS(1575), + [anon_sym_AMP_GT] = ACTIONS(2448), + [anon_sym_AMP_GT_GT] = ACTIONS(1575), + [anon_sym_LT_AMP] = ACTIONS(1575), + [anon_sym_GT_AMP] = ACTIONS(1575), + [anon_sym_LT_LT] = ACTIONS(2448), + [anon_sym_LT_LT_DASH] = ACTIONS(1575), + [anon_sym_LT_LT_LT] = ACTIONS(1575), + [sym__special_characters] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2453), + [sym_raw_string] = ACTIONS(2456), [anon_sym_DOLLAR] = ACTIONS(2459), [anon_sym_DOLLAR_LBRACE] = ACTIONS(2462), - [sym_comment] = ACTIONS(46), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2465), + [anon_sym_BQUOTE] = ACTIONS(2468), + [anon_sym_LT_LPAREN] = ACTIONS(2471), + [anon_sym_GT_LPAREN] = ACTIONS(2471), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2474), }, - [937] = { - [sym_file_descriptor] = ACTIONS(1226), - [sym_word] = ACTIONS(1226), - [sym_variable_name] = ACTIONS(1226), - [anon_sym_LT] = ACTIONS(2231), - [anon_sym_GT] = ACTIONS(2231), - [anon_sym_GT_GT] = ACTIONS(1226), - [anon_sym_AMP_GT] = ACTIONS(2231), - [anon_sym_AMP_GT_GT] = ACTIONS(1226), - [anon_sym_LT_AMP] = ACTIONS(1226), - [anon_sym_GT_AMP] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1226), - [sym_raw_string] = ACTIONS(1226), - [anon_sym_DOLLAR] = ACTIONS(2231), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1226), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1226), - [anon_sym_BQUOTE] = ACTIONS(1226), - [anon_sym_LT_LPAREN] = ACTIONS(1226), - [anon_sym_GT_LPAREN] = ACTIONS(1226), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2231), + [681] = { + [sym_file_redirect] = STATE(339), + [sym_heredoc_redirect] = STATE(339), + [sym_herestring_redirect] = STATE(339), + [aux_sym_command_repeat2] = STATE(682), + [sym_file_descriptor] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(2477), + [anon_sym_RPAREN] = ACTIONS(2479), + [anon_sym_PIPE_AMP] = ACTIONS(2479), + [anon_sym_AMP_AMP] = ACTIONS(2479), + [anon_sym_PIPE_PIPE] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(608), + [anon_sym_GT] = ACTIONS(608), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_AMP_GT] = ACTIONS(608), + [anon_sym_AMP_GT_GT] = ACTIONS(610), + [anon_sym_LT_AMP] = ACTIONS(610), + [anon_sym_GT_AMP] = ACTIONS(610), + [anon_sym_LT_LT] = ACTIONS(612), + [anon_sym_LT_LT_DASH] = ACTIONS(614), + [anon_sym_LT_LT_LT] = ACTIONS(616), + [sym_comment] = ACTIONS(48), }, - [938] = { - [sym_concatenation] = STATE(364), - [sym_string] = STATE(355), - [sym_simple_expansion] = STATE(355), - [sym_expansion] = STATE(355), - [sym_command_substitution] = STATE(355), - [sym_process_substitution] = STATE(355), - [aux_sym_for_statement_repeat1] = STATE(648), - [sym_word] = ACTIONS(692), - [anon_sym_RPAREN] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(696), - [sym_raw_string] = ACTIONS(692), - [anon_sym_DOLLAR] = ACTIONS(698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(702), - [anon_sym_BQUOTE] = ACTIONS(704), - [anon_sym_LT_LPAREN] = ACTIONS(706), - [anon_sym_GT_LPAREN] = ACTIONS(706), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(708), + [682] = { + [sym_file_redirect] = STATE(339), + [sym_heredoc_redirect] = STATE(339), + [sym_herestring_redirect] = STATE(339), + [aux_sym_command_repeat2] = STATE(682), + [sym_file_descriptor] = ACTIONS(2481), + [anon_sym_PIPE] = ACTIONS(2484), + [anon_sym_RPAREN] = ACTIONS(2486), + [anon_sym_PIPE_AMP] = ACTIONS(2486), + [anon_sym_AMP_AMP] = ACTIONS(2486), + [anon_sym_PIPE_PIPE] = ACTIONS(2486), + [anon_sym_LT] = ACTIONS(2488), + [anon_sym_GT] = ACTIONS(2488), + [anon_sym_GT_GT] = ACTIONS(2491), + [anon_sym_AMP_GT] = ACTIONS(2488), + [anon_sym_AMP_GT_GT] = ACTIONS(2491), + [anon_sym_LT_AMP] = ACTIONS(2491), + [anon_sym_GT_AMP] = ACTIONS(2491), + [anon_sym_LT_LT] = ACTIONS(2494), + [anon_sym_LT_LT_DASH] = ACTIONS(2497), + [anon_sym_LT_LT_LT] = ACTIONS(2500), + [sym_comment] = ACTIONS(48), }, - [939] = { - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(675), - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(675), - [sym_raw_string] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(1471), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(675), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), - [anon_sym_BQUOTE] = ACTIONS(675), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1471), + [683] = { + [sym_file_redirect] = STATE(339), + [sym_heredoc_redirect] = STATE(339), + [sym_herestring_redirect] = STATE(339), + [sym_concatenation] = STATE(340), + [sym_string] = STATE(338), + [sym_simple_expansion] = STATE(338), + [sym_expansion] = STATE(338), + [sym_command_substitution] = STATE(338), + [sym_process_substitution] = STATE(338), + [aux_sym_for_statement_repeat1] = STATE(680), + [aux_sym_command_repeat2] = STATE(1142), + [sym_file_descriptor] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(2477), + [anon_sym_RPAREN] = ACTIONS(2479), + [anon_sym_PIPE_AMP] = ACTIONS(2479), + [anon_sym_AMP_AMP] = ACTIONS(2479), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(608), + [anon_sym_GT] = ACTIONS(608), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_AMP_GT] = ACTIONS(608), + [anon_sym_AMP_GT_GT] = ACTIONS(610), + [anon_sym_LT_AMP] = ACTIONS(610), + [anon_sym_GT_AMP] = ACTIONS(610), + [anon_sym_LT_LT] = ACTIONS(612), + [anon_sym_LT_LT_DASH] = ACTIONS(614), + [anon_sym_LT_LT_LT] = ACTIONS(616), + [sym__special_characters] = ACTIONS(618), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(620), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(622), }, - [940] = { - [sym_word] = ACTIONS(679), - [sym__concat] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(679), - [sym_raw_string] = ACTIONS(679), - [anon_sym_DOLLAR] = ACTIONS(1473), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(679), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(679), - [anon_sym_BQUOTE] = ACTIONS(679), - [anon_sym_LT_LPAREN] = ACTIONS(679), - [anon_sym_GT_LPAREN] = ACTIONS(679), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1473), + [684] = { + [aux_sym_concatenation_repeat1] = STATE(1144), + [sym_file_descriptor] = ACTIONS(848), + [sym__concat] = ACTIONS(2503), + [sym_variable_name] = ACTIONS(848), + [anon_sym_PIPE] = ACTIONS(2266), + [anon_sym_PIPE_AMP] = ACTIONS(848), + [anon_sym_AMP_AMP] = ACTIONS(848), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_LT] = ACTIONS(2266), + [anon_sym_GT] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(848), + [anon_sym_AMP_GT] = ACTIONS(2266), + [anon_sym_AMP_GT_GT] = ACTIONS(848), + [anon_sym_LT_AMP] = ACTIONS(848), + [anon_sym_GT_AMP] = ACTIONS(848), + [sym__special_characters] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(848), + [sym_raw_string] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(2266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(848), + [anon_sym_BQUOTE] = ACTIONS(848), + [anon_sym_LT_LPAREN] = ACTIONS(848), + [anon_sym_GT_LPAREN] = ACTIONS(848), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(852), }, - [941] = { - [aux_sym_concatenation_repeat1] = STATE(941), - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(2467), - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(675), - [sym_raw_string] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(1471), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(675), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), - [anon_sym_BQUOTE] = ACTIONS(675), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1471), + [685] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(1146), + [anon_sym_DQUOTE] = ACTIONS(2505), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), }, - [942] = { - [sym_word] = ACTIONS(931), - [sym__concat] = ACTIONS(931), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(1478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1478), + [686] = { + [aux_sym_concatenation_repeat1] = STATE(1144), + [sym_file_descriptor] = ACTIONS(824), + [sym__concat] = ACTIONS(2503), + [sym_variable_name] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(2260), + [anon_sym_PIPE_AMP] = ACTIONS(824), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(824), + [anon_sym_AMP_GT] = ACTIONS(2260), + [anon_sym_AMP_GT_GT] = ACTIONS(824), + [anon_sym_LT_AMP] = ACTIONS(824), + [anon_sym_GT_AMP] = ACTIONS(824), + [sym__special_characters] = ACTIONS(2260), + [anon_sym_DQUOTE] = ACTIONS(824), + [sym_raw_string] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(2260), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(824), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(826), }, - [943] = { - [anon_sym_RBRACE] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2472), - [sym_comment] = ACTIONS(46), + [687] = { + [anon_sym_DOLLAR] = ACTIONS(2507), + [anon_sym_DASH] = ACTIONS(2507), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2509), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_AT] = ACTIONS(2507), + [anon_sym_QMARK] = ACTIONS(2507), + [anon_sym_0] = ACTIONS(2511), + [anon_sym__] = ACTIONS(2511), }, - [944] = { - [anon_sym_RBRACE] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(2476), - [sym_comment] = ACTIONS(46), + [688] = { + [sym_subscript] = STATE(1153), + [sym_variable_name] = ACTIONS(2513), + [anon_sym_DOLLAR] = ACTIONS(2515), + [anon_sym_POUND] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2515), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2519), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_AT] = ACTIONS(2515), + [anon_sym_QMARK] = ACTIONS(2515), + [anon_sym_0] = ACTIONS(2521), + [anon_sym__] = ACTIONS(2521), }, - [945] = { - [sym_word] = ACTIONS(960), - [sym__concat] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(1488), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(960), - [anon_sym_BQUOTE] = ACTIONS(960), - [anon_sym_LT_LPAREN] = ACTIONS(960), - [anon_sym_GT_LPAREN] = ACTIONS(960), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1488), - }, - [946] = { - [sym_concatenation] = STATE(1221), - [sym_string] = STATE(1218), - [sym_simple_expansion] = STATE(1218), - [sym_expansion] = STATE(1218), - [sym_command_substitution] = STATE(1218), - [sym_process_substitution] = STATE(1218), - [sym_word] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(2478), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2482), - }, - [947] = { - [anon_sym_AT] = ACTIONS(2484), - [sym_comment] = ACTIONS(46), - }, - [948] = { - [sym_word] = ACTIONS(972), - [sym__concat] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym_raw_string] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(1498), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), - [anon_sym_BQUOTE] = ACTIONS(972), - [anon_sym_LT_LPAREN] = ACTIONS(972), - [anon_sym_GT_LPAREN] = ACTIONS(972), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1498), - }, - [949] = { - [sym_concatenation] = STATE(1225), - [sym_string] = STATE(1223), - [sym_simple_expansion] = STATE(1223), - [sym_expansion] = STATE(1223), - [sym_command_substitution] = STATE(1223), - [sym_process_substitution] = STATE(1223), - [sym_word] = ACTIONS(2486), - [anon_sym_RBRACE] = ACTIONS(2474), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(2486), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2488), - }, - [950] = { - [anon_sym_AT] = ACTIONS(2490), - [sym_comment] = ACTIONS(46), - }, - [951] = { - [sym_word] = ACTIONS(1066), - [sym__concat] = ACTIONS(1066), - [anon_sym_RPAREN] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_raw_string] = ACTIONS(1066), - [anon_sym_DOLLAR] = ACTIONS(1506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1066), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1066), - [anon_sym_BQUOTE] = ACTIONS(1066), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1506), - }, - [952] = { - [sym_word] = ACTIONS(1122), - [sym__concat] = ACTIONS(1122), - [anon_sym_RPAREN] = ACTIONS(1122), - [anon_sym_DQUOTE] = ACTIONS(1122), - [sym_raw_string] = ACTIONS(1122), - [anon_sym_DOLLAR] = ACTIONS(1508), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1122), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1122), - [anon_sym_LT_LPAREN] = ACTIONS(1122), - [anon_sym_GT_LPAREN] = ACTIONS(1122), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1508), - }, - [953] = { - [sym_file_descriptor] = ACTIONS(1532), - [sym_word] = ACTIONS(1532), - [sym__concat] = ACTIONS(1532), - [sym_variable_name] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(1534), - [anon_sym_RPAREN] = ACTIONS(1534), - [anon_sym_SEMI_SEMI] = ACTIONS(1534), - [anon_sym_PIPE_AMP] = ACTIONS(1534), - [anon_sym_AMP_AMP] = ACTIONS(1534), - [anon_sym_PIPE_PIPE] = ACTIONS(1534), - [anon_sym_LT] = ACTIONS(1534), - [anon_sym_GT] = ACTIONS(1534), - [anon_sym_GT_GT] = ACTIONS(1534), - [anon_sym_AMP_GT] = ACTIONS(1534), - [anon_sym_AMP_GT_GT] = ACTIONS(1534), - [anon_sym_LT_AMP] = ACTIONS(1534), - [anon_sym_GT_AMP] = ACTIONS(1534), - [anon_sym_DQUOTE] = ACTIONS(1534), - [sym_raw_string] = ACTIONS(1534), - [anon_sym_DOLLAR] = ACTIONS(1534), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1534), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1534), - [anon_sym_BQUOTE] = ACTIONS(1534), - [anon_sym_LT_LPAREN] = ACTIONS(1534), - [anon_sym_GT_LPAREN] = ACTIONS(1534), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1534), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_LF] = ACTIONS(1534), - [anon_sym_AMP] = ACTIONS(1534), - }, - [954] = { - [anon_sym_AT] = ACTIONS(2492), - [sym_comment] = ACTIONS(46), - }, - [955] = { - [sym_file_descriptor] = ACTIONS(1538), - [sym_word] = ACTIONS(1538), - [sym__concat] = ACTIONS(1538), - [sym_variable_name] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_RPAREN] = ACTIONS(1540), - [anon_sym_SEMI_SEMI] = ACTIONS(1540), - [anon_sym_PIPE_AMP] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1540), - [anon_sym_PIPE_PIPE] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1540), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_AMP_GT] = ACTIONS(1540), - [anon_sym_AMP_GT_GT] = ACTIONS(1540), - [anon_sym_LT_AMP] = ACTIONS(1540), - [anon_sym_GT_AMP] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1540), - [sym_raw_string] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1540), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1540), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1540), - [anon_sym_BQUOTE] = ACTIONS(1540), - [anon_sym_LT_LPAREN] = ACTIONS(1540), - [anon_sym_GT_LPAREN] = ACTIONS(1540), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_LF] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1540), - }, - [956] = { - [anon_sym_AT] = ACTIONS(2494), - [sym_comment] = ACTIONS(46), - }, - [957] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(2496), - [anon_sym_RBRACE] = ACTIONS(2498), - [sym_comment] = ACTIONS(46), - }, - [958] = { - [sym_file_descriptor] = ACTIONS(1548), - [sym_word] = ACTIONS(1548), - [sym__concat] = ACTIONS(1548), - [sym_variable_name] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [anon_sym_PIPE_AMP] = ACTIONS(1550), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_GT] = ACTIONS(1550), - [anon_sym_AMP_GT] = ACTIONS(1550), - [anon_sym_AMP_GT_GT] = ACTIONS(1550), - [anon_sym_LT_AMP] = ACTIONS(1550), - [anon_sym_GT_AMP] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [sym_raw_string] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1550), - [anon_sym_BQUOTE] = ACTIONS(1550), - [anon_sym_LT_LPAREN] = ACTIONS(1550), - [anon_sym_GT_LPAREN] = ACTIONS(1550), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1550), - }, - [959] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(2500), - [anon_sym_RBRACE] = ACTIONS(2502), - [sym_comment] = ACTIONS(46), - }, - [960] = { - [sym__concat] = ACTIONS(2504), - [anon_sym_RBRACE] = ACTIONS(2498), - [sym_comment] = ACTIONS(46), - }, - [961] = { - [anon_sym_RBRACK] = ACTIONS(2504), - [sym_comment] = ACTIONS(46), - }, - [962] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(2506), - [anon_sym_RBRACE] = ACTIONS(2508), - [sym_comment] = ACTIONS(46), - }, - [963] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(2510), - [anon_sym_RBRACE] = ACTIONS(2512), - [sym_comment] = ACTIONS(46), - }, - [964] = { - [sym__concat] = ACTIONS(2514), - [anon_sym_RBRACE] = ACTIONS(2508), - [sym_comment] = ACTIONS(46), - }, - [965] = { - [anon_sym_RBRACK] = ACTIONS(2514), - [sym_comment] = ACTIONS(46), - }, - [966] = { - [sym__concat] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(1532), - [anon_sym_RPAREN] = ACTIONS(1532), - [anon_sym_RBRACE] = ACTIONS(1532), - [anon_sym_RBRACK] = ACTIONS(1532), - [sym_comment] = ACTIONS(46), - }, - [967] = { - [anon_sym_AT] = ACTIONS(2516), - [sym_comment] = ACTIONS(46), - }, - [968] = { - [sym__concat] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_RBRACK] = ACTIONS(1538), - [sym_comment] = ACTIONS(46), - }, - [969] = { - [anon_sym_AT] = ACTIONS(2518), - [sym_comment] = ACTIONS(46), - }, - [970] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(2520), - [anon_sym_RBRACE] = ACTIONS(2522), - [sym_comment] = ACTIONS(46), - }, - [971] = { - [sym__concat] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(1548), - [anon_sym_RPAREN] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1548), - [anon_sym_RBRACK] = ACTIONS(1548), - [sym_comment] = ACTIONS(46), - }, - [972] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(2524), - [anon_sym_RBRACE] = ACTIONS(2526), - [sym_comment] = ACTIONS(46), - }, - [973] = { - [sym__concat] = ACTIONS(2528), - [anon_sym_RBRACE] = ACTIONS(2522), - [sym_comment] = ACTIONS(46), - }, - [974] = { - [anon_sym_RBRACK] = ACTIONS(2528), - [sym_comment] = ACTIONS(46), - }, - [975] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(2530), - [anon_sym_RBRACE] = ACTIONS(2532), - [sym_comment] = ACTIONS(46), - }, - [976] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(2534), - [anon_sym_RBRACE] = ACTIONS(2536), - [sym_comment] = ACTIONS(46), - }, - [977] = { - [sym__concat] = ACTIONS(2538), - [anon_sym_RBRACE] = ACTIONS(2532), - [sym_comment] = ACTIONS(46), - }, - [978] = { - [anon_sym_RBRACK] = ACTIONS(2538), - [sym_comment] = ACTIONS(46), - }, - [979] = { - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(675), - [anon_sym_SEMI_SEMI] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(677), - [sym_raw_string] = ACTIONS(677), - [anon_sym_DOLLAR] = ACTIONS(677), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(677), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(677), - [anon_sym_BQUOTE] = ACTIONS(677), - [anon_sym_LT_LPAREN] = ACTIONS(677), - [anon_sym_GT_LPAREN] = ACTIONS(677), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(677), - }, - [980] = { - [sym_word] = ACTIONS(679), - [sym__concat] = ACTIONS(679), - [anon_sym_SEMI_SEMI] = ACTIONS(681), - [anon_sym_DQUOTE] = ACTIONS(681), - [sym_raw_string] = ACTIONS(681), - [anon_sym_DOLLAR] = ACTIONS(681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(681), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(681), - [anon_sym_LT_LPAREN] = ACTIONS(681), - [anon_sym_GT_LPAREN] = ACTIONS(681), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(681), - [anon_sym_SEMI] = ACTIONS(681), - [anon_sym_LF] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - }, - [981] = { - [aux_sym_concatenation_repeat1] = STATE(981), - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(2540), - [anon_sym_SEMI_SEMI] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(677), - [sym_raw_string] = ACTIONS(677), - [anon_sym_DOLLAR] = ACTIONS(677), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(677), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(677), - [anon_sym_BQUOTE] = ACTIONS(677), - [anon_sym_LT_LPAREN] = ACTIONS(677), - [anon_sym_GT_LPAREN] = ACTIONS(677), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(677), - }, - [982] = { - [sym_word] = ACTIONS(931), - [sym__concat] = ACTIONS(931), - [anon_sym_SEMI_SEMI] = ACTIONS(933), - [anon_sym_DQUOTE] = ACTIONS(933), - [sym_raw_string] = ACTIONS(933), - [anon_sym_DOLLAR] = ACTIONS(933), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(933), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(933), - [anon_sym_BQUOTE] = ACTIONS(933), - [anon_sym_LT_LPAREN] = ACTIONS(933), - [anon_sym_GT_LPAREN] = ACTIONS(933), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - }, - [983] = { - [anon_sym_RBRACE] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2545), - [sym_comment] = ACTIONS(46), - }, - [984] = { - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2549), - [sym_comment] = ACTIONS(46), - }, - [985] = { - [sym_word] = ACTIONS(960), - [sym__concat] = ACTIONS(960), - [anon_sym_SEMI_SEMI] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(962), - [sym_raw_string] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(962), - [anon_sym_BQUOTE] = ACTIONS(962), - [anon_sym_LT_LPAREN] = ACTIONS(962), - [anon_sym_GT_LPAREN] = ACTIONS(962), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_LF] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - }, - [986] = { - [sym_concatenation] = STATE(1258), - [sym_string] = STATE(1255), - [sym_simple_expansion] = STATE(1255), - [sym_expansion] = STATE(1255), - [sym_command_substitution] = STATE(1255), - [sym_process_substitution] = STATE(1255), - [sym_word] = ACTIONS(2551), - [anon_sym_RBRACE] = ACTIONS(2553), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2555), - }, - [987] = { - [anon_sym_AT] = ACTIONS(2557), - [sym_comment] = ACTIONS(46), - }, - [988] = { - [sym_word] = ACTIONS(972), - [sym__concat] = ACTIONS(972), - [anon_sym_SEMI_SEMI] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym_raw_string] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(974), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(974), - [anon_sym_BQUOTE] = ACTIONS(974), - [anon_sym_LT_LPAREN] = ACTIONS(974), - [anon_sym_GT_LPAREN] = ACTIONS(974), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_LF] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - }, - [989] = { - [sym_concatenation] = STATE(1262), - [sym_string] = STATE(1260), - [sym_simple_expansion] = STATE(1260), - [sym_expansion] = STATE(1260), - [sym_command_substitution] = STATE(1260), - [sym_process_substitution] = STATE(1260), - [sym_word] = ACTIONS(2559), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(2559), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2561), - }, - [990] = { - [anon_sym_AT] = ACTIONS(2563), - [sym_comment] = ACTIONS(46), - }, - [991] = { - [sym_word] = ACTIONS(1066), - [sym__concat] = ACTIONS(1066), - [anon_sym_SEMI_SEMI] = ACTIONS(1068), - [anon_sym_DQUOTE] = ACTIONS(1068), - [sym_raw_string] = ACTIONS(1068), - [anon_sym_DOLLAR] = ACTIONS(1068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1068), - [anon_sym_BQUOTE] = ACTIONS(1068), - [anon_sym_LT_LPAREN] = ACTIONS(1068), - [anon_sym_GT_LPAREN] = ACTIONS(1068), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_LF] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1068), - }, - [992] = { - [sym_word] = ACTIONS(1122), - [sym__concat] = ACTIONS(1122), - [anon_sym_SEMI_SEMI] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1124), - [sym_raw_string] = ACTIONS(1124), - [anon_sym_DOLLAR] = ACTIONS(1124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1124), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1124), - [anon_sym_BQUOTE] = ACTIONS(1124), - [anon_sym_LT_LPAREN] = ACTIONS(1124), - [anon_sym_GT_LPAREN] = ACTIONS(1124), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1124), - }, - [993] = { - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_RPAREN] = ACTIONS(2565), - [anon_sym_SEMI_SEMI] = ACTIONS(2565), - [anon_sym_PIPE_AMP] = ACTIONS(2565), - [anon_sym_AMP_AMP] = ACTIONS(2565), - [anon_sym_PIPE_PIPE] = ACTIONS(2565), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2565), - [anon_sym_LF] = ACTIONS(2565), - [anon_sym_AMP] = ACTIONS(2565), - }, - [994] = { - [sym__terminated_statement] = STATE(418), - [sym_for_statement] = STATE(419), - [sym_while_statement] = STATE(419), - [sym_if_statement] = STATE(419), - [sym_case_statement] = STATE(419), - [sym_function_definition] = STATE(419), - [sym_subshell] = STATE(419), - [sym_pipeline] = STATE(419), - [sym_list] = STATE(419), - [sym_command] = STATE(419), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(422), - [sym_declaration_command] = STATE(419), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(1264), - [aux_sym_command_repeat1] = STATE(29), + [689] = { + [sym_for_statement] = STATE(1154), + [sym_while_statement] = STATE(1154), + [sym_if_statement] = STATE(1154), + [sym_case_statement] = STATE(1154), + [sym_function_definition] = STATE(1154), + [sym_subshell] = STATE(1154), + [sym_pipeline] = STATE(1154), + [sym_list] = STATE(1154), + [sym_command] = STATE(1154), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1155), + [sym_declaration_command] = STATE(1154), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(2567), - [anon_sym_elif] = ACTIONS(2567), - [anon_sym_else] = ACTIONS(2567), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, - [995] = { - [sym_file_descriptor] = ACTIONS(546), - [sym_word] = ACTIONS(546), - [sym_variable_name] = ACTIONS(546), - [anon_sym_for] = ACTIONS(548), - [anon_sym_while] = ACTIONS(548), - [anon_sym_if] = ACTIONS(548), - [anon_sym_fi] = ACTIONS(548), - [anon_sym_case] = ACTIONS(548), - [anon_sym_function] = ACTIONS(548), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_typeset] = ACTIONS(548), - [anon_sym_export] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(548), - [anon_sym_local] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_GT] = ACTIONS(548), - [anon_sym_GT_GT] = ACTIONS(546), - [anon_sym_AMP_GT] = ACTIONS(548), - [anon_sym_AMP_GT_GT] = ACTIONS(546), - [anon_sym_LT_AMP] = ACTIONS(546), - [anon_sym_GT_AMP] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(546), - [sym_raw_string] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(546), - [anon_sym_BQUOTE] = ACTIONS(546), - [anon_sym_LT_LPAREN] = ACTIONS(546), - [anon_sym_GT_LPAREN] = ACTIONS(546), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(550), + [690] = { + [sym_for_statement] = STATE(1156), + [sym_while_statement] = STATE(1156), + [sym_if_statement] = STATE(1156), + [sym_case_statement] = STATE(1156), + [sym_function_definition] = STATE(1156), + [sym_subshell] = STATE(1156), + [sym_pipeline] = STATE(1156), + [sym_list] = STATE(1156), + [sym_command] = STATE(1156), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(1157), + [sym_declaration_command] = STATE(1156), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), }, - [996] = { - [sym__terminated_statement] = STATE(697), - [sym_for_statement] = STATE(698), - [sym_while_statement] = STATE(698), - [sym_if_statement] = STATE(698), - [sym_case_statement] = STATE(698), - [sym_function_definition] = STATE(698), - [sym_subshell] = STATE(698), - [sym_pipeline] = STATE(698), - [sym_list] = STATE(698), - [sym_command] = STATE(698), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(699), - [sym_declaration_command] = STATE(698), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(996), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(590), - [sym_word] = ACTIONS(593), - [sym_variable_name] = ACTIONS(596), - [anon_sym_for] = ACTIONS(601), - [anon_sym_while] = ACTIONS(604), - [anon_sym_if] = ACTIONS(607), - [anon_sym_fi] = ACTIONS(2020), - [anon_sym_case] = ACTIONS(610), - [anon_sym_function] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_declare] = ACTIONS(619), - [anon_sym_typeset] = ACTIONS(619), - [anon_sym_export] = ACTIONS(619), - [anon_sym_readonly] = ACTIONS(619), - [anon_sym_local] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(622), - [anon_sym_GT_GT] = ACTIONS(625), - [anon_sym_AMP_GT] = ACTIONS(622), - [anon_sym_AMP_GT_GT] = ACTIONS(625), - [anon_sym_LT_AMP] = ACTIONS(625), - [anon_sym_GT_AMP] = ACTIONS(625), - [anon_sym_DQUOTE] = ACTIONS(628), - [sym_raw_string] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(634), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(637), - [anon_sym_BQUOTE] = ACTIONS(640), - [anon_sym_LT_LPAREN] = ACTIONS(643), - [anon_sym_GT_LPAREN] = ACTIONS(643), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(646), + [691] = { + [sym_for_statement] = STATE(1158), + [sym_while_statement] = STATE(1158), + [sym_if_statement] = STATE(1158), + [sym_case_statement] = STATE(1158), + [sym_function_definition] = STATE(1158), + [sym_subshell] = STATE(1158), + [sym_pipeline] = STATE(1158), + [sym_list] = STATE(1158), + [sym_command] = STATE(1158), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1159), + [sym_declaration_command] = STATE(1158), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, - [997] = { - [anon_sym_PIPE] = ACTIONS(2569), - [anon_sym_RPAREN] = ACTIONS(2569), - [anon_sym_SEMI_SEMI] = ACTIONS(2569), - [anon_sym_PIPE_AMP] = ACTIONS(2569), - [anon_sym_AMP_AMP] = ACTIONS(2569), - [anon_sym_PIPE_PIPE] = ACTIONS(2569), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2569), - [anon_sym_LF] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2569), + [692] = { + [anon_sym_RPAREN] = ACTIONS(2523), + [sym_comment] = ACTIONS(48), }, - [998] = { - [anon_sym_fi] = ACTIONS(2571), - [sym_comment] = ACTIONS(46), + [693] = { + [sym_file_redirect] = STATE(1089), + [sym_file_descriptor] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2308), + [anon_sym_PIPE_AMP] = ACTIONS(2310), + [anon_sym_AMP_AMP] = ACTIONS(2310), + [anon_sym_PIPE_PIPE] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_GT] = ACTIONS(2527), + [anon_sym_GT_GT] = ACTIONS(2529), + [anon_sym_AMP_GT] = ACTIONS(2527), + [anon_sym_AMP_GT_GT] = ACTIONS(2529), + [anon_sym_LT_AMP] = ACTIONS(2529), + [anon_sym_GT_AMP] = ACTIONS(2529), + [anon_sym_BQUOTE] = ACTIONS(2310), + [sym_comment] = ACTIONS(48), }, - [999] = { - [sym_concatenation] = STATE(1268), + [694] = { + [sym_concatenation] = STATE(1092), + [sym_string] = STATE(1165), + [sym_array] = STATE(1092), + [sym_simple_expansion] = STATE(1165), + [sym_expansion] = STATE(1165), + [sym_command_substitution] = STATE(1165), + [sym_process_substitution] = STATE(1165), + [sym__empty_value] = ACTIONS(2326), + [anon_sym_LPAREN] = ACTIONS(2328), + [sym__special_characters] = ACTIONS(2531), + [anon_sym_DQUOTE] = ACTIONS(2533), + [sym_raw_string] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(2537), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2539), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2541), + [anon_sym_BQUOTE] = ACTIONS(2543), + [anon_sym_LT_LPAREN] = ACTIONS(2545), + [anon_sym_GT_LPAREN] = ACTIONS(2545), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2547), + }, + [695] = { + [sym_variable_assignment] = STATE(309), + [sym_subscript] = STATE(347), + [aux_sym_declaration_command_repeat1] = STATE(695), + [sym_variable_name] = ACTIONS(2549), + [anon_sym_PIPE] = ACTIONS(2351), + [anon_sym_PIPE_AMP] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(2353), + [anon_sym_PIPE_PIPE] = ACTIONS(2351), + [anon_sym_BQUOTE] = ACTIONS(2353), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2355), + [sym_word] = ACTIONS(2358), + }, + [696] = { + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_PIPE_AMP] = ACTIONS(1157), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_GT_GT] = ACTIONS(1157), + [anon_sym_AMP_GT] = ACTIONS(2079), + [anon_sym_AMP_GT_GT] = ACTIONS(1157), + [anon_sym_LT_AMP] = ACTIONS(1157), + [anon_sym_GT_AMP] = ACTIONS(1157), + [anon_sym_LT_LT] = ACTIONS(2079), + [anon_sym_LT_LT_DASH] = ACTIONS(1157), + [anon_sym_LT_LT_LT] = ACTIONS(1157), + [sym__special_characters] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_raw_string] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(2079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1157), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(1157), + [anon_sym_LT_LPAREN] = ACTIONS(1157), + [anon_sym_GT_LPAREN] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1159), + }, + [697] = { + [aux_sym_concatenation_repeat1] = STATE(697), + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(2552), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_PIPE_AMP] = ACTIONS(1157), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_GT_GT] = ACTIONS(1157), + [anon_sym_AMP_GT] = ACTIONS(2079), + [anon_sym_AMP_GT_GT] = ACTIONS(1157), + [anon_sym_LT_AMP] = ACTIONS(1157), + [anon_sym_GT_AMP] = ACTIONS(1157), + [anon_sym_LT_LT] = ACTIONS(2079), + [anon_sym_LT_LT_DASH] = ACTIONS(1157), + [anon_sym_LT_LT_LT] = ACTIONS(1157), + [sym__special_characters] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_raw_string] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(2079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1157), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(1157), + [anon_sym_LT_LPAREN] = ACTIONS(1157), + [anon_sym_GT_LPAREN] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1159), + }, + [698] = { + [sym_file_descriptor] = ACTIONS(1196), + [sym__concat] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_PIPE_AMP] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_PIPE_PIPE] = ACTIONS(2084), + [anon_sym_LT] = ACTIONS(2084), + [anon_sym_GT] = ACTIONS(2084), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_AMP_GT] = ACTIONS(2084), + [anon_sym_AMP_GT_GT] = ACTIONS(1196), + [anon_sym_LT_AMP] = ACTIONS(1196), + [anon_sym_GT_AMP] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(2084), + [anon_sym_LT_LT_DASH] = ACTIONS(1196), + [anon_sym_LT_LT_LT] = ACTIONS(1196), + [sym__special_characters] = ACTIONS(2084), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_raw_string] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [anon_sym_LT_LPAREN] = ACTIONS(1196), + [anon_sym_GT_LPAREN] = ACTIONS(1196), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1198), + }, + [699] = { + [sym_concatenation] = STATE(1174), + [sym_string] = STATE(1173), + [sym_simple_expansion] = STATE(1173), + [sym_expansion] = STATE(1173), + [sym_command_substitution] = STATE(1173), + [sym_process_substitution] = STATE(1173), + [anon_sym_RBRACE] = ACTIONS(2555), + [sym__special_characters] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(2559), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2561), + }, + [700] = { + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_PIPE_AMP] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1241), + [anon_sym_PIPE_PIPE] = ACTIONS(2094), + [anon_sym_LT] = ACTIONS(2094), + [anon_sym_GT] = ACTIONS(2094), + [anon_sym_GT_GT] = ACTIONS(1241), + [anon_sym_AMP_GT] = ACTIONS(2094), + [anon_sym_AMP_GT_GT] = ACTIONS(1241), + [anon_sym_LT_AMP] = ACTIONS(1241), + [anon_sym_GT_AMP] = ACTIONS(1241), + [anon_sym_LT_LT] = ACTIONS(2094), + [anon_sym_LT_LT_DASH] = ACTIONS(1241), + [anon_sym_LT_LT_LT] = ACTIONS(1241), + [sym__special_characters] = ACTIONS(2094), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_raw_string] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(2094), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1241), + [anon_sym_BQUOTE] = ACTIONS(1241), + [anon_sym_LT_LPAREN] = ACTIONS(1241), + [anon_sym_GT_LPAREN] = ACTIONS(1241), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1243), + }, + [701] = { + [sym_concatenation] = STATE(1178), + [sym_string] = STATE(1177), + [sym_simple_expansion] = STATE(1177), + [sym_expansion] = STATE(1177), + [sym_command_substitution] = STATE(1177), + [sym_process_substitution] = STATE(1177), + [anon_sym_RBRACE] = ACTIONS(2563), + [sym__special_characters] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(2567), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2569), + }, + [702] = { + [anon_sym_EQ] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [703] = { + [anon_sym_RBRACE] = ACTIONS(2573), + [anon_sym_EQ] = ACTIONS(2575), + [anon_sym_COLON] = ACTIONS(2577), + [anon_sym_COLON_QMARK] = ACTIONS(2575), + [anon_sym_COLON_DASH] = ACTIONS(2575), + [anon_sym_PERCENT] = ACTIONS(2575), + [anon_sym_SLASH] = ACTIONS(2575), + [anon_sym_DASH] = ACTIONS(2575), + [sym_comment] = ACTIONS(48), + }, + [704] = { + [anon_sym_RBRACE] = ACTIONS(2579), + [anon_sym_EQ] = ACTIONS(2581), + [anon_sym_COLON] = ACTIONS(2583), + [anon_sym_COLON_QMARK] = ACTIONS(2581), + [anon_sym_COLON_DASH] = ACTIONS(2581), + [anon_sym_PERCENT] = ACTIONS(2581), + [anon_sym_SLASH] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2581), + [sym_comment] = ACTIONS(48), + }, + [705] = { + [anon_sym_RBRACE] = ACTIONS(2555), + [anon_sym_EQ] = ACTIONS(2571), + [anon_sym_COLON] = ACTIONS(2585), + [anon_sym_COLON_QMARK] = ACTIONS(2571), + [anon_sym_COLON_DASH] = ACTIONS(2571), + [anon_sym_PERCENT] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [sym_comment] = ACTIONS(48), + }, + [706] = { + [sym_file_descriptor] = ACTIONS(1269), + [sym__concat] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_PIPE_AMP] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_GT] = ACTIONS(2120), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_AMP_GT] = ACTIONS(2120), + [anon_sym_AMP_GT_GT] = ACTIONS(1269), + [anon_sym_LT_AMP] = ACTIONS(1269), + [anon_sym_GT_AMP] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(2120), + [anon_sym_LT_LT_DASH] = ACTIONS(1269), + [anon_sym_LT_LT_LT] = ACTIONS(1269), + [sym__special_characters] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_raw_string] = ACTIONS(1269), + [anon_sym_DOLLAR] = ACTIONS(2120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1269), + [anon_sym_BQUOTE] = ACTIONS(1269), + [anon_sym_LT_LPAREN] = ACTIONS(1269), + [anon_sym_GT_LPAREN] = ACTIONS(1269), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1271), + }, + [707] = { + [sym_concatenation] = STATE(1187), + [sym_string] = STATE(1186), + [sym_simple_expansion] = STATE(1186), + [sym_expansion] = STATE(1186), + [sym_command_substitution] = STATE(1186), + [sym_process_substitution] = STATE(1186), + [anon_sym_RBRACE] = ACTIONS(2587), + [sym__special_characters] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2593), + }, + [708] = { + [sym_file_descriptor] = ACTIONS(1281), + [sym__concat] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(2130), + [anon_sym_LT] = ACTIONS(2130), + [anon_sym_GT] = ACTIONS(2130), + [anon_sym_GT_GT] = ACTIONS(1281), + [anon_sym_AMP_GT] = ACTIONS(2130), + [anon_sym_AMP_GT_GT] = ACTIONS(1281), + [anon_sym_LT_AMP] = ACTIONS(1281), + [anon_sym_GT_AMP] = ACTIONS(1281), + [anon_sym_LT_LT] = ACTIONS(2130), + [anon_sym_LT_LT_DASH] = ACTIONS(1281), + [anon_sym_LT_LT_LT] = ACTIONS(1281), + [sym__special_characters] = ACTIONS(2130), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_raw_string] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(2130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1281), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1283), + }, + [709] = { + [sym_file_descriptor] = ACTIONS(1379), + [sym__concat] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_PIPE_AMP] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(2132), + [anon_sym_LT] = ACTIONS(2132), + [anon_sym_GT] = ACTIONS(2132), + [anon_sym_GT_GT] = ACTIONS(1379), + [anon_sym_AMP_GT] = ACTIONS(2132), + [anon_sym_AMP_GT_GT] = ACTIONS(1379), + [anon_sym_LT_AMP] = ACTIONS(1379), + [anon_sym_GT_AMP] = ACTIONS(1379), + [anon_sym_LT_LT] = ACTIONS(2132), + [anon_sym_LT_LT_DASH] = ACTIONS(1379), + [anon_sym_LT_LT_LT] = ACTIONS(1379), + [sym__special_characters] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(1379), + [sym_raw_string] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(2132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1379), + [anon_sym_BQUOTE] = ACTIONS(1379), + [anon_sym_LT_LPAREN] = ACTIONS(1379), + [anon_sym_GT_LPAREN] = ACTIONS(1379), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1381), + }, + [710] = { + [sym_file_descriptor] = ACTIONS(1513), + [sym__concat] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_PIPE_AMP] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(2134), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_GT] = ACTIONS(2134), + [anon_sym_GT_GT] = ACTIONS(1513), + [anon_sym_AMP_GT] = ACTIONS(2134), + [anon_sym_AMP_GT_GT] = ACTIONS(1513), + [anon_sym_LT_AMP] = ACTIONS(1513), + [anon_sym_GT_AMP] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(2134), + [anon_sym_LT_LT_DASH] = ACTIONS(1513), + [anon_sym_LT_LT_LT] = ACTIONS(1513), + [sym__special_characters] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(1513), + [sym_raw_string] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(2134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1513), + [anon_sym_BQUOTE] = ACTIONS(1513), + [anon_sym_LT_LPAREN] = ACTIONS(1513), + [anon_sym_GT_LPAREN] = ACTIONS(1513), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1515), + }, + [711] = { + [sym_compound_statement] = STATE(1188), + [anon_sym_LBRACE] = ACTIONS(1325), + [sym_comment] = ACTIONS(48), + }, + [712] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_PIPE_AMP] = ACTIONS(2406), + [anon_sym_AMP_AMP] = ACTIONS(2406), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(2406), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [713] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(2408), + [anon_sym_PIPE_PIPE] = ACTIONS(2408), + [anon_sym_BQUOTE] = ACTIONS(2408), + [sym_comment] = ACTIONS(48), + }, + [714] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(2408), + [anon_sym_PIPE_PIPE] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [715] = { + [sym_concatenation] = STATE(1122), + [sym_string] = STATE(1190), + [sym_simple_expansion] = STATE(1190), + [sym_expansion] = STATE(1190), + [sym_command_substitution] = STATE(1190), + [sym_process_substitution] = STATE(1190), + [sym__special_characters] = ACTIONS(2595), + [anon_sym_DQUOTE] = ACTIONS(1491), + [sym_raw_string] = ACTIONS(2597), + [anon_sym_DOLLAR] = ACTIONS(1495), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1497), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1501), + [anon_sym_LT_LPAREN] = ACTIONS(1503), + [anon_sym_GT_LPAREN] = ACTIONS(1503), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2599), + }, + [716] = { + [aux_sym_concatenation_repeat1] = STATE(1192), + [sym_file_descriptor] = ACTIONS(446), + [sym__concat] = ACTIONS(2601), + [anon_sym_PIPE] = ACTIONS(450), + [anon_sym_PIPE_AMP] = ACTIONS(446), + [anon_sym_AMP_AMP] = ACTIONS(446), + [anon_sym_PIPE_PIPE] = ACTIONS(446), + [anon_sym_LT] = ACTIONS(450), + [anon_sym_GT] = ACTIONS(450), + [anon_sym_GT_GT] = ACTIONS(446), + [anon_sym_AMP_GT] = ACTIONS(450), + [anon_sym_AMP_GT_GT] = ACTIONS(446), + [anon_sym_LT_AMP] = ACTIONS(446), + [anon_sym_GT_AMP] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(450), + [anon_sym_LT_LT_DASH] = ACTIONS(446), + [anon_sym_LT_LT_LT] = ACTIONS(446), + [anon_sym_BQUOTE] = ACTIONS(446), + [sym_comment] = ACTIONS(48), + }, + [717] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(1194), + [anon_sym_DQUOTE] = ACTIONS(2603), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [718] = { + [aux_sym_concatenation_repeat1] = STATE(1192), + [sym_file_descriptor] = ACTIONS(454), + [sym__concat] = ACTIONS(2601), + [anon_sym_PIPE] = ACTIONS(456), + [anon_sym_PIPE_AMP] = ACTIONS(454), + [anon_sym_AMP_AMP] = ACTIONS(454), + [anon_sym_PIPE_PIPE] = ACTIONS(454), + [anon_sym_LT] = ACTIONS(456), + [anon_sym_GT] = ACTIONS(456), + [anon_sym_GT_GT] = ACTIONS(454), + [anon_sym_AMP_GT] = ACTIONS(456), + [anon_sym_AMP_GT_GT] = ACTIONS(454), + [anon_sym_LT_AMP] = ACTIONS(454), + [anon_sym_GT_AMP] = ACTIONS(454), + [anon_sym_LT_LT] = ACTIONS(456), + [anon_sym_LT_LT_DASH] = ACTIONS(454), + [anon_sym_LT_LT_LT] = ACTIONS(454), + [anon_sym_BQUOTE] = ACTIONS(454), + [sym_comment] = ACTIONS(48), + }, + [719] = { + [anon_sym_DOLLAR] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2605), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2607), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_AT] = ACTIONS(2605), + [anon_sym_QMARK] = ACTIONS(2605), + [anon_sym_0] = ACTIONS(2609), + [anon_sym__] = ACTIONS(2609), + }, + [720] = { + [sym_subscript] = STATE(1201), + [sym_variable_name] = ACTIONS(2611), + [anon_sym_DOLLAR] = ACTIONS(2613), + [anon_sym_POUND] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2613), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2617), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_AT] = ACTIONS(2613), + [anon_sym_QMARK] = ACTIONS(2613), + [anon_sym_0] = ACTIONS(2619), + [anon_sym__] = ACTIONS(2619), + }, + [721] = { + [sym_for_statement] = STATE(1202), + [sym_while_statement] = STATE(1202), + [sym_if_statement] = STATE(1202), + [sym_case_statement] = STATE(1202), + [sym_function_definition] = STATE(1202), + [sym_subshell] = STATE(1202), + [sym_pipeline] = STATE(1202), + [sym_list] = STATE(1202), + [sym_command] = STATE(1202), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1203), + [sym_declaration_command] = STATE(1202), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [722] = { + [sym_for_statement] = STATE(1204), + [sym_while_statement] = STATE(1204), + [sym_if_statement] = STATE(1204), + [sym_case_statement] = STATE(1204), + [sym_function_definition] = STATE(1204), + [sym_subshell] = STATE(1204), + [sym_pipeline] = STATE(1204), + [sym_list] = STATE(1204), + [sym_command] = STATE(1204), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(1205), + [sym_declaration_command] = STATE(1204), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), + }, + [723] = { + [sym_for_statement] = STATE(1206), + [sym_while_statement] = STATE(1206), + [sym_if_statement] = STATE(1206), + [sym_case_statement] = STATE(1206), + [sym_function_definition] = STATE(1206), + [sym_subshell] = STATE(1206), + [sym_pipeline] = STATE(1206), + [sym_list] = STATE(1206), + [sym_command] = STATE(1206), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1207), + [sym_declaration_command] = STATE(1206), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [724] = { + [aux_sym_concatenation_repeat1] = STATE(1192), + [sym_file_descriptor] = ACTIONS(1567), + [sym__concat] = ACTIONS(2601), + [anon_sym_PIPE] = ACTIONS(2444), + [anon_sym_PIPE_AMP] = ACTIONS(1567), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_PIPE_PIPE] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(2444), + [anon_sym_GT] = ACTIONS(2444), + [anon_sym_GT_GT] = ACTIONS(1567), + [anon_sym_AMP_GT] = ACTIONS(2444), + [anon_sym_AMP_GT_GT] = ACTIONS(1567), + [anon_sym_LT_AMP] = ACTIONS(1567), + [anon_sym_GT_AMP] = ACTIONS(1567), + [anon_sym_LT_LT] = ACTIONS(2444), + [anon_sym_LT_LT_DASH] = ACTIONS(1567), + [anon_sym_LT_LT_LT] = ACTIONS(1567), + [anon_sym_BQUOTE] = ACTIONS(1567), + [sym_comment] = ACTIONS(48), + }, + [725] = { + [aux_sym_concatenation_repeat1] = STATE(1192), + [sym_file_descriptor] = ACTIONS(1571), + [sym__concat] = ACTIONS(2601), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_PIPE_AMP] = ACTIONS(1571), + [anon_sym_AMP_AMP] = ACTIONS(1571), + [anon_sym_PIPE_PIPE] = ACTIONS(1571), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_GT] = ACTIONS(2446), + [anon_sym_GT_GT] = ACTIONS(1571), + [anon_sym_AMP_GT] = ACTIONS(2446), + [anon_sym_AMP_GT_GT] = ACTIONS(1571), + [anon_sym_LT_AMP] = ACTIONS(1571), + [anon_sym_GT_AMP] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(2446), + [anon_sym_LT_LT_DASH] = ACTIONS(1571), + [anon_sym_LT_LT_LT] = ACTIONS(1571), + [anon_sym_BQUOTE] = ACTIONS(1571), + [sym_comment] = ACTIONS(48), + }, + [726] = { + [sym_concatenation] = STATE(340), + [sym_string] = STATE(373), + [sym_simple_expansion] = STATE(373), + [sym_expansion] = STATE(373), + [sym_command_substitution] = STATE(373), + [sym_process_substitution] = STATE(373), + [aux_sym_for_statement_repeat1] = STATE(726), + [sym_file_descriptor] = ACTIONS(1575), + [anon_sym_PIPE] = ACTIONS(2448), + [anon_sym_PIPE_AMP] = ACTIONS(1575), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [anon_sym_PIPE_PIPE] = ACTIONS(2448), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_GT_GT] = ACTIONS(1575), + [anon_sym_AMP_GT] = ACTIONS(2448), + [anon_sym_AMP_GT_GT] = ACTIONS(1575), + [anon_sym_LT_AMP] = ACTIONS(1575), + [anon_sym_GT_AMP] = ACTIONS(1575), + [anon_sym_LT_LT] = ACTIONS(2448), + [anon_sym_LT_LT_DASH] = ACTIONS(1575), + [anon_sym_LT_LT_LT] = ACTIONS(1575), + [sym__special_characters] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2624), + [sym_raw_string] = ACTIONS(2627), + [anon_sym_DOLLAR] = ACTIONS(2630), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2633), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2636), + [anon_sym_BQUOTE] = ACTIONS(2639), + [anon_sym_LT_LPAREN] = ACTIONS(2642), + [anon_sym_GT_LPAREN] = ACTIONS(2642), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2645), + }, + [727] = { + [sym_file_redirect] = STATE(339), + [sym_heredoc_redirect] = STATE(339), + [sym_herestring_redirect] = STATE(339), + [aux_sym_command_repeat2] = STATE(728), + [sym_file_descriptor] = ACTIONS(662), + [anon_sym_PIPE] = ACTIONS(2477), + [anon_sym_PIPE_AMP] = ACTIONS(2479), + [anon_sym_AMP_AMP] = ACTIONS(2479), + [anon_sym_PIPE_PIPE] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_GT] = ACTIONS(664), + [anon_sym_GT_GT] = ACTIONS(666), + [anon_sym_AMP_GT] = ACTIONS(664), + [anon_sym_AMP_GT_GT] = ACTIONS(666), + [anon_sym_LT_AMP] = ACTIONS(666), + [anon_sym_GT_AMP] = ACTIONS(666), + [anon_sym_LT_LT] = ACTIONS(612), + [anon_sym_LT_LT_DASH] = ACTIONS(614), + [anon_sym_LT_LT_LT] = ACTIONS(668), + [anon_sym_BQUOTE] = ACTIONS(2479), + [sym_comment] = ACTIONS(48), + }, + [728] = { + [sym_file_redirect] = STATE(339), + [sym_heredoc_redirect] = STATE(339), + [sym_herestring_redirect] = STATE(339), + [aux_sym_command_repeat2] = STATE(728), + [sym_file_descriptor] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2484), + [anon_sym_PIPE_AMP] = ACTIONS(2486), + [anon_sym_AMP_AMP] = ACTIONS(2486), + [anon_sym_PIPE_PIPE] = ACTIONS(2486), + [anon_sym_LT] = ACTIONS(2651), + [anon_sym_GT] = ACTIONS(2651), + [anon_sym_GT_GT] = ACTIONS(2654), + [anon_sym_AMP_GT] = ACTIONS(2651), + [anon_sym_AMP_GT_GT] = ACTIONS(2654), + [anon_sym_LT_AMP] = ACTIONS(2654), + [anon_sym_GT_AMP] = ACTIONS(2654), + [anon_sym_LT_LT] = ACTIONS(2494), + [anon_sym_LT_LT_DASH] = ACTIONS(2497), + [anon_sym_LT_LT_LT] = ACTIONS(2657), + [anon_sym_BQUOTE] = ACTIONS(2486), + [sym_comment] = ACTIONS(48), + }, + [729] = { + [sym_file_redirect] = STATE(339), + [sym_heredoc_redirect] = STATE(339), + [sym_herestring_redirect] = STATE(339), + [sym_concatenation] = STATE(340), + [sym_string] = STATE(373), + [sym_simple_expansion] = STATE(373), + [sym_expansion] = STATE(373), + [sym_command_substitution] = STATE(373), + [sym_process_substitution] = STATE(373), + [aux_sym_for_statement_repeat1] = STATE(726), + [aux_sym_command_repeat2] = STATE(1208), + [sym_file_descriptor] = ACTIONS(662), + [anon_sym_PIPE] = ACTIONS(2477), + [anon_sym_PIPE_AMP] = ACTIONS(2479), + [anon_sym_AMP_AMP] = ACTIONS(2479), + [anon_sym_PIPE_PIPE] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_GT] = ACTIONS(664), + [anon_sym_GT_GT] = ACTIONS(666), + [anon_sym_AMP_GT] = ACTIONS(664), + [anon_sym_AMP_GT_GT] = ACTIONS(666), + [anon_sym_LT_AMP] = ACTIONS(666), + [anon_sym_GT_AMP] = ACTIONS(666), + [anon_sym_LT_LT] = ACTIONS(612), + [anon_sym_LT_LT_DASH] = ACTIONS(614), + [anon_sym_LT_LT_LT] = ACTIONS(668), + [sym__special_characters] = ACTIONS(670), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(672), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(2479), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(674), + }, + [730] = { + [sym_file_redirect] = STATE(1209), + [sym_file_descriptor] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(1902), + [anon_sym_SEMI_SEMI] = ACTIONS(1902), + [anon_sym_PIPE_AMP] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1902), + [anon_sym_LT] = ACTIONS(982), + [anon_sym_GT] = ACTIONS(982), + [anon_sym_GT_GT] = ACTIONS(982), + [anon_sym_AMP_GT] = ACTIONS(982), + [anon_sym_AMP_GT_GT] = ACTIONS(982), + [anon_sym_LT_AMP] = ACTIONS(982), + [anon_sym_GT_AMP] = ACTIONS(982), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_LF] = ACTIONS(1902), + [anon_sym_AMP] = ACTIONS(1902), + }, + [731] = { + [aux_sym_concatenation_repeat1] = STATE(735), + [sym_file_descriptor] = ACTIONS(816), + [sym__concat] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(2660), + [anon_sym_SEMI_SEMI] = ACTIONS(2660), + [anon_sym_PIPE_AMP] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_PIPE_PIPE] = ACTIONS(2660), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_GT] = ACTIONS(2660), + [anon_sym_GT_GT] = ACTIONS(2660), + [anon_sym_AMP_GT] = ACTIONS(2660), + [anon_sym_AMP_GT_GT] = ACTIONS(2660), + [anon_sym_LT_AMP] = ACTIONS(2660), + [anon_sym_GT_AMP] = ACTIONS(2660), + [anon_sym_LT_LT] = ACTIONS(2660), + [anon_sym_LT_LT_DASH] = ACTIONS(2660), + [anon_sym_LT_LT_LT] = ACTIONS(2660), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2660), + [anon_sym_LF] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2660), + }, + [732] = { + [aux_sym_concatenation_repeat1] = STATE(735), + [sym_file_descriptor] = ACTIONS(820), + [sym__concat] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_SEMI_SEMI] = ACTIONS(2662), + [anon_sym_PIPE_AMP] = ACTIONS(2662), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_PIPE_PIPE] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2662), + [anon_sym_GT] = ACTIONS(2662), + [anon_sym_GT_GT] = ACTIONS(2662), + [anon_sym_AMP_GT] = ACTIONS(2662), + [anon_sym_AMP_GT_GT] = ACTIONS(2662), + [anon_sym_LT_AMP] = ACTIONS(2662), + [anon_sym_GT_AMP] = ACTIONS(2662), + [anon_sym_LT_LT] = ACTIONS(2662), + [anon_sym_LT_LT_DASH] = ACTIONS(2662), + [anon_sym_LT_LT_LT] = ACTIONS(2662), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_LF] = ACTIONS(2662), + [anon_sym_AMP] = ACTIONS(2662), + }, + [733] = { + [sym_file_descriptor] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_SEMI_SEMI] = ACTIONS(2662), + [anon_sym_PIPE_AMP] = ACTIONS(2662), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_PIPE_PIPE] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2662), + [anon_sym_GT] = ACTIONS(2662), + [anon_sym_GT_GT] = ACTIONS(2662), + [anon_sym_AMP_GT] = ACTIONS(2662), + [anon_sym_AMP_GT_GT] = ACTIONS(2662), + [anon_sym_LT_AMP] = ACTIONS(2662), + [anon_sym_GT_AMP] = ACTIONS(2662), + [anon_sym_LT_LT] = ACTIONS(2662), + [anon_sym_LT_LT_DASH] = ACTIONS(2662), + [anon_sym_LT_LT_LT] = ACTIONS(2662), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_LF] = ACTIONS(2662), + [anon_sym_AMP] = ACTIONS(2662), + }, + [734] = { + [sym_string] = STATE(1210), + [sym_simple_expansion] = STATE(1210), + [sym_expansion] = STATE(1210), + [sym_command_substitution] = STATE(1210), + [sym_process_substitution] = STATE(1210), + [sym__special_characters] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(696), + [sym_raw_string] = ACTIONS(2666), + [anon_sym_DOLLAR] = ACTIONS(700), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(702), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(704), + [anon_sym_BQUOTE] = ACTIONS(706), + [anon_sym_LT_LPAREN] = ACTIONS(708), + [anon_sym_GT_LPAREN] = ACTIONS(708), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2664), + }, + [735] = { + [aux_sym_concatenation_repeat1] = STATE(1211), + [sym_file_descriptor] = ACTIONS(478), + [sym__concat] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_SEMI_SEMI] = ACTIONS(480), + [anon_sym_PIPE_AMP] = ACTIONS(480), + [anon_sym_AMP_AMP] = ACTIONS(480), + [anon_sym_PIPE_PIPE] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_GT_GT] = ACTIONS(480), + [anon_sym_AMP_GT] = ACTIONS(480), + [anon_sym_AMP_GT_GT] = ACTIONS(480), + [anon_sym_LT_AMP] = ACTIONS(480), + [anon_sym_GT_AMP] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(480), + [anon_sym_LT_LT_DASH] = ACTIONS(480), + [anon_sym_LT_LT_LT] = ACTIONS(480), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(480), + [anon_sym_LF] = ACTIONS(480), + [anon_sym_AMP] = ACTIONS(480), + }, + [736] = { + [sym_file_descriptor] = ACTIONS(482), + [sym__concat] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(484), + [anon_sym_SEMI_SEMI] = ACTIONS(484), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(484), + [anon_sym_PIPE_PIPE] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_GT_GT] = ACTIONS(484), + [anon_sym_AMP_GT] = ACTIONS(484), + [anon_sym_AMP_GT_GT] = ACTIONS(484), + [anon_sym_LT_AMP] = ACTIONS(484), + [anon_sym_GT_AMP] = ACTIONS(484), + [anon_sym_LT_LT] = ACTIONS(484), + [anon_sym_LT_LT_DASH] = ACTIONS(484), + [anon_sym_LT_LT_LT] = ACTIONS(484), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(484), + [anon_sym_LF] = ACTIONS(484), + [anon_sym_AMP] = ACTIONS(484), + }, + [737] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(2668), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [738] = { + [sym_file_descriptor] = ACTIONS(510), + [sym__concat] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(512), + [anon_sym_SEMI_SEMI] = ACTIONS(512), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(512), + [anon_sym_PIPE_PIPE] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_AMP_GT] = ACTIONS(512), + [anon_sym_AMP_GT_GT] = ACTIONS(512), + [anon_sym_LT_AMP] = ACTIONS(512), + [anon_sym_GT_AMP] = ACTIONS(512), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_LT_LT_DASH] = ACTIONS(512), + [anon_sym_LT_LT_LT] = ACTIONS(512), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_LF] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(512), + }, + [739] = { + [sym_file_descriptor] = ACTIONS(514), + [sym__concat] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_SEMI_SEMI] = ACTIONS(516), + [anon_sym_PIPE_AMP] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(516), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_GT_GT] = ACTIONS(516), + [anon_sym_AMP_GT] = ACTIONS(516), + [anon_sym_AMP_GT_GT] = ACTIONS(516), + [anon_sym_LT_AMP] = ACTIONS(516), + [anon_sym_GT_AMP] = ACTIONS(516), + [anon_sym_LT_LT] = ACTIONS(516), + [anon_sym_LT_LT_DASH] = ACTIONS(516), + [anon_sym_LT_LT_LT] = ACTIONS(516), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_LF] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(516), + }, + [740] = { + [anon_sym_EQ] = ACTIONS(2670), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [741] = { + [anon_sym_RBRACE] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_COLON] = ACTIONS(2676), + [anon_sym_COLON_QMARK] = ACTIONS(2674), + [anon_sym_COLON_DASH] = ACTIONS(2674), + [anon_sym_PERCENT] = ACTIONS(2674), + [anon_sym_SLASH] = ACTIONS(2674), + [anon_sym_DASH] = ACTIONS(2674), + [sym_comment] = ACTIONS(48), + }, + [742] = { + [sym_subscript] = STATE(1219), + [sym_variable_name] = ACTIONS(2678), + [anon_sym_DOLLAR] = ACTIONS(2680), + [anon_sym_DASH] = ACTIONS(2680), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2682), + [anon_sym_STAR] = ACTIONS(2680), + [anon_sym_AT] = ACTIONS(2680), + [anon_sym_QMARK] = ACTIONS(2680), + [anon_sym_0] = ACTIONS(2684), + [anon_sym__] = ACTIONS(2684), + }, + [743] = { + [anon_sym_RBRACE] = ACTIONS(2686), + [anon_sym_EQ] = ACTIONS(2688), + [anon_sym_COLON] = ACTIONS(2690), + [anon_sym_COLON_QMARK] = ACTIONS(2688), + [anon_sym_COLON_DASH] = ACTIONS(2688), + [anon_sym_PERCENT] = ACTIONS(2688), + [anon_sym_SLASH] = ACTIONS(2688), + [anon_sym_DASH] = ACTIONS(2688), + [sym_comment] = ACTIONS(48), + }, + [744] = { + [anon_sym_RBRACE] = ACTIONS(2692), + [anon_sym_EQ] = ACTIONS(2670), + [anon_sym_COLON] = ACTIONS(2694), + [anon_sym_COLON_QMARK] = ACTIONS(2670), + [anon_sym_COLON_DASH] = ACTIONS(2670), + [anon_sym_PERCENT] = ACTIONS(2670), + [anon_sym_SLASH] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2670), + [sym_comment] = ACTIONS(48), + }, + [745] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(2696), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [746] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(2696), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [747] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(2696), + [sym_comment] = ACTIONS(48), + }, + [748] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(2696), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [749] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(2698), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [750] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(2698), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [751] = { + [sym__heredoc_middle] = ACTIONS(2700), + [sym__heredoc_end] = ACTIONS(2700), + [anon_sym_DOLLAR] = ACTIONS(2702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2700), + [sym_comment] = ACTIONS(48), + }, + [752] = { + [sym_file_descriptor] = ACTIONS(2704), + [anon_sym_PIPE] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_SEMI_SEMI] = ACTIONS(2706), + [anon_sym_PIPE_AMP] = ACTIONS(2706), + [anon_sym_AMP_AMP] = ACTIONS(2706), + [anon_sym_PIPE_PIPE] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2706), + [anon_sym_GT] = ACTIONS(2706), + [anon_sym_GT_GT] = ACTIONS(2706), + [anon_sym_AMP_GT] = ACTIONS(2706), + [anon_sym_AMP_GT_GT] = ACTIONS(2706), + [anon_sym_LT_AMP] = ACTIONS(2706), + [anon_sym_GT_AMP] = ACTIONS(2706), + [anon_sym_LT_LT] = ACTIONS(2706), + [anon_sym_LT_LT_DASH] = ACTIONS(2706), + [anon_sym_LT_LT_LT] = ACTIONS(2706), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_LF] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2706), + }, + [753] = { + [anon_sym_DOLLAR] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2710), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_AT] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2708), + [anon_sym_0] = ACTIONS(2712), + [anon_sym__] = ACTIONS(2712), + }, + [754] = { + [sym_subscript] = STATE(1231), + [sym_variable_name] = ACTIONS(2714), + [anon_sym_DOLLAR] = ACTIONS(2716), + [anon_sym_POUND] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2716), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2720), + [anon_sym_STAR] = ACTIONS(2716), + [anon_sym_AT] = ACTIONS(2716), + [anon_sym_QMARK] = ACTIONS(2716), + [anon_sym_0] = ACTIONS(2722), + [anon_sym__] = ACTIONS(2722), + }, + [755] = { + [sym_simple_expansion] = STATE(751), + [sym_expansion] = STATE(751), + [aux_sym_heredoc_repeat1] = STATE(1233), + [sym__heredoc_middle] = ACTIONS(1555), + [sym__heredoc_end] = ACTIONS(2724), + [anon_sym_DOLLAR] = ACTIONS(1559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1561), + [sym_comment] = ACTIONS(48), + }, + [756] = { + [sym_file_descriptor] = ACTIONS(824), + [sym_variable_name] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(824), + [anon_sym_AMP_GT] = ACTIONS(2260), + [anon_sym_AMP_GT_GT] = ACTIONS(824), + [anon_sym_LT_AMP] = ACTIONS(824), + [anon_sym_GT_AMP] = ACTIONS(824), + [sym__special_characters] = ACTIONS(2260), + [anon_sym_DQUOTE] = ACTIONS(824), + [sym_raw_string] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(2260), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(824), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2260), + }, + [757] = { + [sym_concatenation] = STATE(414), + [sym_string] = STATE(408), + [sym_simple_expansion] = STATE(408), + [sym_expansion] = STATE(408), + [sym_command_substitution] = STATE(408), + [sym_process_substitution] = STATE(408), + [aux_sym_for_statement_repeat1] = STATE(1235), + [anon_sym_RPAREN] = ACTIONS(2726), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(846), + }, + [758] = { + [aux_sym_concatenation_repeat1] = STATE(252), + [sym_file_descriptor] = ACTIONS(848), + [sym__concat] = ACTIONS(448), + [sym_variable_name] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(2266), + [anon_sym_GT] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(848), + [anon_sym_AMP_GT] = ACTIONS(2266), + [anon_sym_AMP_GT_GT] = ACTIONS(848), + [anon_sym_LT_AMP] = ACTIONS(848), + [anon_sym_GT_AMP] = ACTIONS(848), + [sym__special_characters] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(848), + [sym_raw_string] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(2266), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(848), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(848), + [anon_sym_BQUOTE] = ACTIONS(848), + [anon_sym_LT_LPAREN] = ACTIONS(848), + [anon_sym_GT_LPAREN] = ACTIONS(848), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2266), + }, + [759] = { + [aux_sym_concatenation_repeat1] = STATE(252), + [sym_file_descriptor] = ACTIONS(824), + [sym__concat] = ACTIONS(448), + [sym_variable_name] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(824), + [anon_sym_AMP_GT] = ACTIONS(2260), + [anon_sym_AMP_GT_GT] = ACTIONS(824), + [anon_sym_LT_AMP] = ACTIONS(824), + [anon_sym_GT_AMP] = ACTIONS(824), + [sym__special_characters] = ACTIONS(2260), + [anon_sym_DQUOTE] = ACTIONS(824), + [sym_raw_string] = ACTIONS(824), + [anon_sym_DOLLAR] = ACTIONS(2260), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_LT_LPAREN] = ACTIONS(824), + [anon_sym_GT_LPAREN] = ACTIONS(824), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2260), + }, + [760] = { + [sym_file_redirect] = STATE(150), + [sym_heredoc_redirect] = STATE(150), + [sym_herestring_redirect] = STATE(150), + [aux_sym_command_repeat2] = STATE(401), + [sym_file_descriptor] = ACTIONS(246), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_SEMI_SEMI] = ACTIONS(2728), + [anon_sym_PIPE_AMP] = ACTIONS(2728), + [anon_sym_AMP_AMP] = ACTIONS(2728), + [anon_sym_PIPE_PIPE] = ACTIONS(2728), + [anon_sym_LT] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(250), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_AMP_GT] = ACTIONS(250), + [anon_sym_AMP_GT_GT] = ACTIONS(250), + [anon_sym_LT_AMP] = ACTIONS(250), + [anon_sym_GT_AMP] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(254), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_LF] = ACTIONS(2728), + [anon_sym_AMP] = ACTIONS(2728), + }, + [761] = { + [sym_string] = STATE(1236), + [sym_simple_expansion] = STATE(1236), + [sym_expansion] = STATE(1236), + [sym_command_substitution] = STATE(1236), + [sym_process_substitution] = STATE(1236), + [sym__special_characters] = ACTIONS(2730), + [anon_sym_DQUOTE] = ACTIONS(832), + [sym_raw_string] = ACTIONS(2732), + [anon_sym_DOLLAR] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2730), + }, + [762] = { + [aux_sym_concatenation_repeat1] = STATE(1237), + [sym__concat] = ACTIONS(1633), + [anon_sym_RPAREN] = ACTIONS(478), + [sym__special_characters] = ACTIONS(1117), + [anon_sym_DQUOTE] = ACTIONS(478), + [sym_raw_string] = ACTIONS(478), + [anon_sym_DOLLAR] = ACTIONS(1117), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(478), + [anon_sym_BQUOTE] = ACTIONS(478), + [anon_sym_LT_LPAREN] = ACTIONS(478), + [anon_sym_GT_LPAREN] = ACTIONS(478), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1117), + }, + [763] = { + [sym__concat] = ACTIONS(482), + [anon_sym_RPAREN] = ACTIONS(482), + [sym__special_characters] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(482), + [sym_raw_string] = ACTIONS(482), + [anon_sym_DOLLAR] = ACTIONS(1119), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_LT_LPAREN] = ACTIONS(482), + [anon_sym_GT_LPAREN] = ACTIONS(482), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1119), + }, + [764] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(2734), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [765] = { + [sym__concat] = ACTIONS(510), + [anon_sym_RPAREN] = ACTIONS(510), + [sym__special_characters] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(510), + [sym_raw_string] = ACTIONS(510), + [anon_sym_DOLLAR] = ACTIONS(1123), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(510), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(510), + [anon_sym_BQUOTE] = ACTIONS(510), + [anon_sym_LT_LPAREN] = ACTIONS(510), + [anon_sym_GT_LPAREN] = ACTIONS(510), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1123), + }, + [766] = { + [sym__concat] = ACTIONS(514), + [anon_sym_RPAREN] = ACTIONS(514), + [sym__special_characters] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(514), + [sym_raw_string] = ACTIONS(514), + [anon_sym_DOLLAR] = ACTIONS(1125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(514), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(514), + [anon_sym_LT_LPAREN] = ACTIONS(514), + [anon_sym_GT_LPAREN] = ACTIONS(514), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1125), + }, + [767] = { + [anon_sym_EQ] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [768] = { + [anon_sym_RBRACE] = ACTIONS(2738), + [anon_sym_EQ] = ACTIONS(2740), + [anon_sym_COLON] = ACTIONS(2742), + [anon_sym_COLON_QMARK] = ACTIONS(2740), + [anon_sym_COLON_DASH] = ACTIONS(2740), + [anon_sym_PERCENT] = ACTIONS(2740), + [anon_sym_SLASH] = ACTIONS(2740), + [anon_sym_DASH] = ACTIONS(2740), + [sym_comment] = ACTIONS(48), + }, + [769] = { + [sym_subscript] = STATE(1245), + [sym_variable_name] = ACTIONS(2744), + [anon_sym_DOLLAR] = ACTIONS(2746), + [anon_sym_DASH] = ACTIONS(2746), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2746), + [anon_sym_AT] = ACTIONS(2746), + [anon_sym_QMARK] = ACTIONS(2746), + [anon_sym_0] = ACTIONS(2750), + [anon_sym__] = ACTIONS(2750), + }, + [770] = { + [anon_sym_RBRACE] = ACTIONS(2752), + [anon_sym_EQ] = ACTIONS(2754), + [anon_sym_COLON] = ACTIONS(2756), + [anon_sym_COLON_QMARK] = ACTIONS(2754), + [anon_sym_COLON_DASH] = ACTIONS(2754), + [anon_sym_PERCENT] = ACTIONS(2754), + [anon_sym_SLASH] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2754), + [sym_comment] = ACTIONS(48), + }, + [771] = { + [anon_sym_RBRACE] = ACTIONS(2758), + [anon_sym_EQ] = ACTIONS(2736), + [anon_sym_COLON] = ACTIONS(2760), + [anon_sym_COLON_QMARK] = ACTIONS(2736), + [anon_sym_COLON_DASH] = ACTIONS(2736), + [anon_sym_PERCENT] = ACTIONS(2736), + [anon_sym_SLASH] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2736), + [sym_comment] = ACTIONS(48), + }, + [772] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [773] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(2762), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [774] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(2762), + [sym_comment] = ACTIONS(48), + }, + [775] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(2762), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [776] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(2764), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [777] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(2764), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [778] = { + [sym_file_descriptor] = ACTIONS(2766), + [sym_variable_name] = ACTIONS(2766), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_RPAREN] = ACTIONS(2768), + [anon_sym_SEMI_SEMI] = ACTIONS(2768), + [anon_sym_PIPE_AMP] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [anon_sym_LT] = ACTIONS(2768), + [anon_sym_GT] = ACTIONS(2768), + [anon_sym_GT_GT] = ACTIONS(2768), + [anon_sym_AMP_GT] = ACTIONS(2768), + [anon_sym_AMP_GT_GT] = ACTIONS(2768), + [anon_sym_LT_AMP] = ACTIONS(2768), + [anon_sym_GT_AMP] = ACTIONS(2768), + [sym__special_characters] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(2768), + [sym_raw_string] = ACTIONS(2768), + [anon_sym_DOLLAR] = ACTIONS(2768), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2768), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2768), + [anon_sym_BQUOTE] = ACTIONS(2768), + [anon_sym_LT_LPAREN] = ACTIONS(2768), + [anon_sym_GT_LPAREN] = ACTIONS(2768), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym_LF] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), + }, + [779] = { + [sym_concatenation] = STATE(414), + [sym_string] = STATE(408), + [sym_simple_expansion] = STATE(408), + [sym_expansion] = STATE(408), + [sym_command_substitution] = STATE(408), + [sym_process_substitution] = STATE(408), + [aux_sym_for_statement_repeat1] = STATE(779), + [anon_sym_RPAREN] = ACTIONS(1575), + [sym__special_characters] = ACTIONS(2770), + [anon_sym_DQUOTE] = ACTIONS(2773), + [sym_raw_string] = ACTIONS(2776), + [anon_sym_DOLLAR] = ACTIONS(2779), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2782), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2785), + [anon_sym_BQUOTE] = ACTIONS(2788), + [anon_sym_LT_LPAREN] = ACTIONS(2791), + [anon_sym_GT_LPAREN] = ACTIONS(2791), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2794), + }, + [780] = { + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(1157), + [sym_variable_name] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1159), + [anon_sym_AMP_GT] = ACTIONS(1159), + [anon_sym_AMP_GT_GT] = ACTIONS(1159), + [anon_sym_LT_AMP] = ACTIONS(1159), + [anon_sym_GT_AMP] = ACTIONS(1159), + [sym__special_characters] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_raw_string] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), + [anon_sym_BQUOTE] = ACTIONS(1159), + [anon_sym_LT_LPAREN] = ACTIONS(1159), + [anon_sym_GT_LPAREN] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [781] = { + [aux_sym_concatenation_repeat1] = STATE(781), + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(2797), + [sym_variable_name] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1159), + [anon_sym_AMP_GT] = ACTIONS(1159), + [anon_sym_AMP_GT_GT] = ACTIONS(1159), + [anon_sym_LT_AMP] = ACTIONS(1159), + [anon_sym_GT_AMP] = ACTIONS(1159), + [sym__special_characters] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_raw_string] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), + [anon_sym_BQUOTE] = ACTIONS(1159), + [anon_sym_LT_LPAREN] = ACTIONS(1159), + [anon_sym_GT_LPAREN] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [782] = { + [sym_file_descriptor] = ACTIONS(1196), + [sym__concat] = ACTIONS(1196), + [sym_variable_name] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1198), + [anon_sym_SEMI_SEMI] = ACTIONS(1198), + [anon_sym_PIPE_AMP] = ACTIONS(1198), + [anon_sym_AMP_AMP] = ACTIONS(1198), + [anon_sym_PIPE_PIPE] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1198), + [anon_sym_GT_GT] = ACTIONS(1198), + [anon_sym_AMP_GT] = ACTIONS(1198), + [anon_sym_AMP_GT_GT] = ACTIONS(1198), + [anon_sym_LT_AMP] = ACTIONS(1198), + [anon_sym_GT_AMP] = ACTIONS(1198), + [sym__special_characters] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_raw_string] = ACTIONS(1198), + [anon_sym_DOLLAR] = ACTIONS(1198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), + [anon_sym_BQUOTE] = ACTIONS(1198), + [anon_sym_LT_LPAREN] = ACTIONS(1198), + [anon_sym_GT_LPAREN] = ACTIONS(1198), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + }, + [783] = { + [sym_concatenation] = STATE(1254), + [sym_string] = STATE(1253), + [sym_simple_expansion] = STATE(1253), + [sym_expansion] = STATE(1253), + [sym_command_substitution] = STATE(1253), + [sym_process_substitution] = STATE(1253), + [anon_sym_RBRACE] = ACTIONS(2800), + [sym__special_characters] = ACTIONS(2802), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(2804), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2806), + }, + [784] = { + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(1241), + [sym_variable_name] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1243), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [sym__special_characters] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1243), + [sym_raw_string] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), + [anon_sym_LT_LPAREN] = ACTIONS(1243), + [anon_sym_GT_LPAREN] = ACTIONS(1243), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1243), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1243), + }, + [785] = { + [sym_concatenation] = STATE(1258), + [sym_string] = STATE(1257), + [sym_simple_expansion] = STATE(1257), + [sym_expansion] = STATE(1257), + [sym_command_substitution] = STATE(1257), + [sym_process_substitution] = STATE(1257), + [anon_sym_RBRACE] = ACTIONS(2808), + [sym__special_characters] = ACTIONS(2810), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(2812), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2814), + }, + [786] = { + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [787] = { + [anon_sym_RBRACE] = ACTIONS(2818), + [anon_sym_EQ] = ACTIONS(2820), + [anon_sym_COLON] = ACTIONS(2822), + [anon_sym_COLON_QMARK] = ACTIONS(2820), + [anon_sym_COLON_DASH] = ACTIONS(2820), + [anon_sym_PERCENT] = ACTIONS(2820), + [anon_sym_SLASH] = ACTIONS(2820), + [anon_sym_DASH] = ACTIONS(2820), + [sym_comment] = ACTIONS(48), + }, + [788] = { + [anon_sym_RBRACE] = ACTIONS(2824), + [anon_sym_EQ] = ACTIONS(2826), + [anon_sym_COLON] = ACTIONS(2828), + [anon_sym_COLON_QMARK] = ACTIONS(2826), + [anon_sym_COLON_DASH] = ACTIONS(2826), + [anon_sym_PERCENT] = ACTIONS(2826), + [anon_sym_SLASH] = ACTIONS(2826), + [anon_sym_DASH] = ACTIONS(2826), + [sym_comment] = ACTIONS(48), + }, + [789] = { + [anon_sym_RBRACE] = ACTIONS(2800), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_COLON] = ACTIONS(2830), + [anon_sym_COLON_QMARK] = ACTIONS(2816), + [anon_sym_COLON_DASH] = ACTIONS(2816), + [anon_sym_PERCENT] = ACTIONS(2816), + [anon_sym_SLASH] = ACTIONS(2816), + [anon_sym_DASH] = ACTIONS(2816), + [sym_comment] = ACTIONS(48), + }, + [790] = { + [sym_file_descriptor] = ACTIONS(1269), + [sym__concat] = ACTIONS(1269), + [sym_variable_name] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_SEMI_SEMI] = ACTIONS(1271), + [anon_sym_PIPE_AMP] = ACTIONS(1271), + [anon_sym_AMP_AMP] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_AMP_GT] = ACTIONS(1271), + [anon_sym_AMP_GT_GT] = ACTIONS(1271), + [anon_sym_LT_AMP] = ACTIONS(1271), + [anon_sym_GT_AMP] = ACTIONS(1271), + [sym__special_characters] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym_raw_string] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1271), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1271), + [anon_sym_LT_LPAREN] = ACTIONS(1271), + [anon_sym_GT_LPAREN] = ACTIONS(1271), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_LF] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + }, + [791] = { + [sym_concatenation] = STATE(1267), [sym_string] = STATE(1266), [sym_simple_expansion] = STATE(1266), [sym_expansion] = STATE(1266), [sym_command_substitution] = STATE(1266), [sym_process_substitution] = STATE(1266), - [sym_word] = ACTIONS(2573), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(2573), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2575), - }, - [1000] = { - [sym__terminated_statement] = STATE(1270), - [sym_for_statement] = STATE(1271), - [sym_while_statement] = STATE(1271), - [sym_if_statement] = STATE(1271), - [sym_case_statement] = STATE(1271), - [sym_function_definition] = STATE(1271), - [sym_subshell] = STATE(1271), - [sym_pipeline] = STATE(1271), - [sym_list] = STATE(1271), - [sym_command] = STATE(1271), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(1272), - [sym_declaration_command] = STATE(1271), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(1273), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(2577), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), - }, - [1001] = { - [aux_sym_case_item_repeat1] = STATE(1275), - [anon_sym_PIPE] = ACTIONS(2037), - [anon_sym_RPAREN] = ACTIONS(2579), - [sym_comment] = ACTIONS(46), - }, - [1002] = { - [aux_sym_concatenation_repeat1] = STATE(1276), - [sym__concat] = ACTIONS(726), - [anon_sym_PIPE] = ACTIONS(254), - [anon_sym_RPAREN] = ACTIONS(254), - [sym_comment] = ACTIONS(46), - }, - [1003] = { - [sym__terminated_statement] = STATE(1270), - [sym_for_statement] = STATE(1271), - [sym_while_statement] = STATE(1271), - [sym_if_statement] = STATE(1271), - [sym_case_statement] = STATE(1271), - [sym_function_definition] = STATE(1271), - [sym_subshell] = STATE(1271), - [sym_pipeline] = STATE(1271), - [sym_list] = STATE(1271), - [sym_command] = STATE(1271), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(1272), - [sym_declaration_command] = STATE(1271), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(1278), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(2581), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), - }, - [1004] = { - [aux_sym_case_item_repeat1] = STATE(1275), - [anon_sym_PIPE] = ACTIONS(2037), - [anon_sym_RPAREN] = ACTIONS(2583), - [sym_comment] = ACTIONS(46), - }, - [1005] = { - [aux_sym_concatenation_repeat1] = STATE(1276), - [sym__concat] = ACTIONS(726), - [anon_sym_PIPE] = ACTIONS(542), - [anon_sym_RPAREN] = ACTIONS(542), - [sym_comment] = ACTIONS(46), - }, - [1006] = { - [anon_sym_PIPE] = ACTIONS(2585), - [anon_sym_RPAREN] = ACTIONS(2585), - [anon_sym_SEMI_SEMI] = ACTIONS(2585), - [anon_sym_PIPE_AMP] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_PIPE_PIPE] = ACTIONS(2585), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_LF] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2585), - }, - [1007] = { - [sym_case_item] = STATE(710), - [sym_concatenation] = STATE(711), - [sym_string] = STATE(707), - [sym_simple_expansion] = STATE(707), - [sym_expansion] = STATE(707), - [sym_command_substitution] = STATE(707), - [sym_process_substitution] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(1007), - [sym_word] = ACTIONS(2587), - [anon_sym_esac] = ACTIONS(2590), - [anon_sym_DQUOTE] = ACTIONS(2592), - [sym_raw_string] = ACTIONS(2587), - [anon_sym_DOLLAR] = ACTIONS(2595), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2598), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2601), - [anon_sym_BQUOTE] = ACTIONS(2604), - [anon_sym_LT_LPAREN] = ACTIONS(2607), - [anon_sym_GT_LPAREN] = ACTIONS(2607), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2610), - }, - [1008] = { - [sym_case_item] = STATE(710), - [sym_concatenation] = STATE(711), - [sym_string] = STATE(707), - [sym_simple_expansion] = STATE(707), - [sym_expansion] = STATE(707), - [sym_command_substitution] = STATE(707), - [sym_process_substitution] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(1007), - [sym_word] = ACTIONS(1354), - [anon_sym_esac] = ACTIONS(2613), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1358), - }, - [1009] = { - [anon_sym_RBRACK] = ACTIONS(2615), - [sym_comment] = ACTIONS(46), - }, - [1010] = { - [anon_sym_RBRACK] = ACTIONS(2617), - [sym_comment] = ACTIONS(46), - }, - [1011] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2619), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1012] = { - [sym__concat] = ACTIONS(2205), - [anon_sym_in] = ACTIONS(2207), - [anon_sym_SEMI_SEMI] = ACTIONS(2207), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2207), - [anon_sym_LF] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2207), - }, - [1013] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2621), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1014] = { - [sym__concat] = ACTIONS(2211), - [anon_sym_in] = ACTIONS(2213), - [anon_sym_SEMI_SEMI] = ACTIONS(2213), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_LF] = ACTIONS(2213), - [anon_sym_AMP] = ACTIONS(2213), - }, - [1015] = { - [anon_sym_RBRACE] = ACTIONS(2619), - [sym_comment] = ACTIONS(46), - }, - [1016] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2623), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1017] = { - [sym__concat] = ACTIONS(2217), - [anon_sym_in] = ACTIONS(2219), - [anon_sym_SEMI_SEMI] = ACTIONS(2219), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2219), - [anon_sym_LF] = ACTIONS(2219), - [anon_sym_AMP] = ACTIONS(2219), - }, - [1018] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2625), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1019] = { - [sym__concat] = ACTIONS(2223), - [anon_sym_in] = ACTIONS(2225), - [anon_sym_SEMI_SEMI] = ACTIONS(2225), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_LF] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2225), - }, - [1020] = { - [anon_sym_RBRACE] = ACTIONS(2623), - [sym_comment] = ACTIONS(46), - }, - [1021] = { - [anon_sym_PIPE] = ACTIONS(2627), - [anon_sym_RPAREN] = ACTIONS(2627), - [anon_sym_SEMI_SEMI] = ACTIONS(2627), - [anon_sym_PIPE_AMP] = ACTIONS(2627), - [anon_sym_AMP_AMP] = ACTIONS(2627), - [anon_sym_PIPE_PIPE] = ACTIONS(2627), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2627), - [anon_sym_LF] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2627), - }, - [1022] = { - [sym_case_item] = STATE(710), - [sym_concatenation] = STATE(711), - [sym_string] = STATE(707), - [sym_simple_expansion] = STATE(707), - [sym_expansion] = STATE(707), - [sym_command_substitution] = STATE(707), - [sym_process_substitution] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(1007), - [sym_word] = ACTIONS(1354), - [anon_sym_esac] = ACTIONS(2629), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1358), - }, - [1023] = { - [anon_sym_PIPE] = ACTIONS(2631), - [anon_sym_RPAREN] = ACTIONS(2631), - [anon_sym_SEMI_SEMI] = ACTIONS(2631), - [anon_sym_PIPE_AMP] = ACTIONS(2631), - [anon_sym_AMP_AMP] = ACTIONS(2631), - [anon_sym_PIPE_PIPE] = ACTIONS(2631), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2631), - [anon_sym_LF] = ACTIONS(2631), - [anon_sym_AMP] = ACTIONS(2631), - }, - [1024] = { - [aux_sym_concatenation_repeat1] = STATE(1028), - [sym__concat] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_SEMI_SEMI] = ACTIONS(1801), - [anon_sym_PIPE_AMP] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1801), - [anon_sym_PIPE_PIPE] = ACTIONS(1801), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_LF] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1801), - }, - [1025] = { - [aux_sym_concatenation_repeat1] = STATE(1043), - [sym__concat] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_SEMI_SEMI] = ACTIONS(1803), - [anon_sym_PIPE_AMP] = ACTIONS(1803), - [anon_sym_AMP_AMP] = ACTIONS(1803), - [anon_sym_PIPE_PIPE] = ACTIONS(1803), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_LF] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1803), - }, - [1026] = { - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_RPAREN] = ACTIONS(1801), - [anon_sym_SEMI_SEMI] = ACTIONS(1801), - [anon_sym_PIPE_AMP] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1801), - [anon_sym_PIPE_PIPE] = ACTIONS(1801), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_LF] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1801), - }, - [1027] = { - [sym_string] = STATE(1288), - [sym_simple_expansion] = STATE(1288), - [sym_expansion] = STATE(1288), - [sym_command_substitution] = STATE(1288), - [sym_process_substitution] = STATE(1288), - [sym_word] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym_raw_string] = ACTIONS(2633), - [anon_sym_DOLLAR] = ACTIONS(1405), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1407), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1409), - [anon_sym_BQUOTE] = ACTIONS(1411), - [anon_sym_LT_LPAREN] = ACTIONS(1413), - [anon_sym_GT_LPAREN] = ACTIONS(1413), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2635), - }, - [1028] = { - [aux_sym_concatenation_repeat1] = STATE(1290), - [sym__concat] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(256), - [anon_sym_SEMI_SEMI] = ACTIONS(256), - [anon_sym_PIPE_AMP] = ACTIONS(256), - [anon_sym_AMP_AMP] = ACTIONS(256), - [anon_sym_PIPE_PIPE] = ACTIONS(256), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(256), - [anon_sym_LF] = ACTIONS(256), - [anon_sym_AMP] = ACTIONS(256), - }, - [1029] = { - [sym__concat] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(396), - [anon_sym_RPAREN] = ACTIONS(396), - [anon_sym_SEMI_SEMI] = ACTIONS(396), - [anon_sym_PIPE_AMP] = ACTIONS(396), - [anon_sym_AMP_AMP] = ACTIONS(396), - [anon_sym_PIPE_PIPE] = ACTIONS(396), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(396), - [anon_sym_LF] = ACTIONS(396), - [anon_sym_AMP] = ACTIONS(396), - }, - [1030] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(252), - [anon_sym_DQUOTE] = ACTIONS(2637), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), - }, - [1031] = { - [sym__concat] = ACTIONS(412), - [anon_sym_PIPE] = ACTIONS(414), - [anon_sym_RPAREN] = ACTIONS(414), - [anon_sym_SEMI_SEMI] = ACTIONS(414), - [anon_sym_PIPE_AMP] = ACTIONS(414), - [anon_sym_AMP_AMP] = ACTIONS(414), - [anon_sym_PIPE_PIPE] = ACTIONS(414), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(414), - [anon_sym_LF] = ACTIONS(414), - [anon_sym_AMP] = ACTIONS(414), - }, - [1032] = { - [sym__concat] = ACTIONS(416), - [anon_sym_PIPE] = ACTIONS(418), - [anon_sym_RPAREN] = ACTIONS(418), - [anon_sym_SEMI_SEMI] = ACTIONS(418), - [anon_sym_PIPE_AMP] = ACTIONS(418), - [anon_sym_AMP_AMP] = ACTIONS(418), - [anon_sym_PIPE_PIPE] = ACTIONS(418), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(418), - [anon_sym_LF] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(418), - }, - [1033] = { - [sym__concat] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(422), - [anon_sym_RPAREN] = ACTIONS(422), - [anon_sym_SEMI_SEMI] = ACTIONS(422), - [anon_sym_PIPE_AMP] = ACTIONS(422), - [anon_sym_AMP_AMP] = ACTIONS(422), - [anon_sym_PIPE_PIPE] = ACTIONS(422), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(422), - [anon_sym_LF] = ACTIONS(422), - [anon_sym_AMP] = ACTIONS(422), - }, - [1034] = { - [sym_special_variable_name] = STATE(1293), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(138), - [anon_sym_AT] = ACTIONS(138), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_COLON_QMARK] = ACTIONS(412), - [anon_sym_COLON_DASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(412), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2639), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [1035] = { - [anon_sym_RBRACE] = ACTIONS(2641), - [anon_sym_EQ] = ACTIONS(2643), - [anon_sym_LBRACK] = ACTIONS(2645), - [anon_sym_COLON] = ACTIONS(2647), - [anon_sym_COLON_QMARK] = ACTIONS(2643), - [anon_sym_COLON_DASH] = ACTIONS(2643), - [anon_sym_PERCENT] = ACTIONS(2643), - [anon_sym_SLASH] = ACTIONS(2643), - [sym_comment] = ACTIONS(46), - }, - [1036] = { - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_EQ] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_COLON] = ACTIONS(2655), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_COLON_DASH] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_SLASH] = ACTIONS(2651), - [sym_comment] = ACTIONS(46), - }, - [1037] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(2657), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [1038] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(2657), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [1039] = { - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_BQUOTE] = ACTIONS(2657), - [sym_comment] = ACTIONS(46), - }, - [1040] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(2657), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [1041] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(2659), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [1042] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(2659), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [1043] = { - [aux_sym_concatenation_repeat1] = STATE(1290), - [sym__concat] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_SEMI_SEMI] = ACTIONS(544), - [anon_sym_PIPE_AMP] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_LF] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(544), - }, - [1044] = { - [aux_sym_concatenation_repeat1] = STATE(1044), - [sym_file_descriptor] = ACTIONS(675), - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(1857), - [sym_variable_name] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(677), - [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_SEMI_SEMI] = ACTIONS(677), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(677), - [anon_sym_GT_GT] = ACTIONS(677), - [anon_sym_AMP_GT] = ACTIONS(677), - [anon_sym_AMP_GT_GT] = ACTIONS(677), - [anon_sym_LT_AMP] = ACTIONS(677), - [anon_sym_GT_AMP] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(677), - [sym_raw_string] = ACTIONS(677), - [anon_sym_DOLLAR] = ACTIONS(677), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(677), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(677), - [anon_sym_BQUOTE] = ACTIONS(677), - [anon_sym_LT_LPAREN] = ACTIONS(677), - [anon_sym_GT_LPAREN] = ACTIONS(677), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(677), - }, - [1045] = { - [sym_file_redirect] = STATE(1023), - [sym_file_descriptor] = ACTIONS(1421), - [anon_sym_PIPE] = ACTIONS(2081), - [anon_sym_RPAREN] = ACTIONS(2081), - [anon_sym_SEMI_SEMI] = ACTIONS(2081), - [anon_sym_PIPE_AMP] = ACTIONS(2081), - [anon_sym_AMP_AMP] = ACTIONS(2081), - [anon_sym_PIPE_PIPE] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_GT] = ACTIONS(1423), - [anon_sym_GT_GT] = ACTIONS(1423), - [anon_sym_AMP_GT] = ACTIONS(1423), - [anon_sym_AMP_GT_GT] = ACTIONS(1423), - [anon_sym_LT_AMP] = ACTIONS(1423), - [anon_sym_GT_AMP] = ACTIONS(1423), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_LF] = ACTIONS(2081), - [anon_sym_AMP] = ACTIONS(2081), - }, - [1046] = { - [sym_concatenation] = STATE(1026), - [sym_string] = STATE(1302), - [sym_simple_expansion] = STATE(1302), - [sym_expansion] = STATE(1302), - [sym_command_substitution] = STATE(1302), - [sym_process_substitution] = STATE(1302), - [sym_word] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(1403), - [sym_raw_string] = ACTIONS(2661), - [anon_sym_DOLLAR] = ACTIONS(1405), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1407), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1409), - [anon_sym_BQUOTE] = ACTIONS(1411), - [anon_sym_LT_LPAREN] = ACTIONS(1413), - [anon_sym_GT_LPAREN] = ACTIONS(1413), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2663), - }, - [1047] = { - [aux_sym_concatenation_repeat1] = STATE(1304), - [sym__concat] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(1136), - [anon_sym_RPAREN] = ACTIONS(1136), - [anon_sym_SEMI_SEMI] = ACTIONS(1136), - [anon_sym_PIPE_AMP] = ACTIONS(1136), - [anon_sym_AMP_AMP] = ACTIONS(1136), - [anon_sym_PIPE_PIPE] = ACTIONS(1136), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym_LF] = ACTIONS(1136), - [anon_sym_AMP] = ACTIONS(1136), - }, - [1048] = { - [aux_sym_concatenation_repeat1] = STATE(1305), - [sym__concat] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(1150), - [anon_sym_RPAREN] = ACTIONS(1150), - [anon_sym_SEMI_SEMI] = ACTIONS(1150), - [anon_sym_PIPE_AMP] = ACTIONS(1150), - [anon_sym_AMP_AMP] = ACTIONS(1150), - [anon_sym_PIPE_PIPE] = ACTIONS(1150), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1150), - [anon_sym_LF] = ACTIONS(1150), - [anon_sym_AMP] = ACTIONS(1150), - }, - [1049] = { - [aux_sym_concatenation_repeat1] = STATE(1306), - [sym_word] = ACTIONS(254), - [sym__concat] = ACTIONS(1455), - [sym_variable_name] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(256), - [anon_sym_RPAREN] = ACTIONS(256), - [anon_sym_SEMI_SEMI] = ACTIONS(256), - [anon_sym_PIPE_AMP] = ACTIONS(256), - [anon_sym_AMP_AMP] = ACTIONS(256), - [anon_sym_PIPE_PIPE] = ACTIONS(256), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(256), - [anon_sym_SEMI] = ACTIONS(256), - [anon_sym_LF] = ACTIONS(256), - [anon_sym_AMP] = ACTIONS(256), - }, - [1050] = { - [aux_sym_concatenation_repeat1] = STATE(1306), - [sym_word] = ACTIONS(542), - [sym__concat] = ACTIONS(1455), - [sym_variable_name] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(544), - [anon_sym_SEMI_SEMI] = ACTIONS(544), - [anon_sym_PIPE_AMP] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_LF] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(544), - }, - [1051] = { - [aux_sym_concatenation_repeat1] = STATE(1051), - [sym_file_descriptor] = ACTIONS(675), - [sym__concat] = ACTIONS(2407), - [anon_sym_PIPE] = ACTIONS(677), - [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_SEMI_SEMI] = ACTIONS(677), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(677), - [anon_sym_GT_GT] = ACTIONS(677), - [anon_sym_AMP_GT] = ACTIONS(677), - [anon_sym_AMP_GT_GT] = ACTIONS(677), - [anon_sym_LT_AMP] = ACTIONS(677), - [anon_sym_GT_AMP] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(677), - [anon_sym_LT_LT_DASH] = ACTIONS(677), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(677), - }, - [1052] = { - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(675), - [sym_variable_name] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(677), - [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_SEMI_SEMI] = ACTIONS(677), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(677), - }, - [1053] = { - [sym_word] = ACTIONS(679), - [sym__concat] = ACTIONS(679), - [sym_variable_name] = ACTIONS(679), - [anon_sym_PIPE] = ACTIONS(681), - [anon_sym_RPAREN] = ACTIONS(681), - [anon_sym_SEMI_SEMI] = ACTIONS(681), - [anon_sym_PIPE_AMP] = ACTIONS(681), - [anon_sym_AMP_AMP] = ACTIONS(681), - [anon_sym_PIPE_PIPE] = ACTIONS(681), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(681), - [anon_sym_SEMI] = ACTIONS(681), - [anon_sym_LF] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - }, - [1054] = { - [aux_sym_concatenation_repeat1] = STATE(1054), - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(2665), - [sym_variable_name] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(677), - [anon_sym_SEMI_SEMI] = ACTIONS(677), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(677), - }, - [1055] = { - [sym_word] = ACTIONS(1888), - [sym_variable_name] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_RPAREN] = ACTIONS(1890), - [anon_sym_SEMI_SEMI] = ACTIONS(1890), - [anon_sym_PIPE_AMP] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1890), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_LF] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1890), - }, - [1056] = { - [sym_word] = ACTIONS(931), - [sym__concat] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_RPAREN] = ACTIONS(933), - [anon_sym_SEMI_SEMI] = ACTIONS(933), - [anon_sym_PIPE_AMP] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(933), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - }, - [1057] = { - [anon_sym_RBRACE] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2670), - [sym_comment] = ACTIONS(46), - }, - [1058] = { - [anon_sym_RBRACE] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(2674), - [sym_comment] = ACTIONS(46), - }, - [1059] = { - [sym_word] = ACTIONS(960), - [sym__concat] = ACTIONS(960), - [sym_variable_name] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_RPAREN] = ACTIONS(962), - [anon_sym_SEMI_SEMI] = ACTIONS(962), - [anon_sym_PIPE_AMP] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(962), - [anon_sym_PIPE_PIPE] = ACTIONS(962), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_LF] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - }, - [1060] = { - [sym_concatenation] = STATE(1314), - [sym_string] = STATE(1311), - [sym_simple_expansion] = STATE(1311), - [sym_expansion] = STATE(1311), - [sym_command_substitution] = STATE(1311), - [sym_process_substitution] = STATE(1311), - [sym_word] = ACTIONS(2676), - [anon_sym_RBRACE] = ACTIONS(2678), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(2676), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2680), - }, - [1061] = { - [anon_sym_AT] = ACTIONS(2682), - [sym_comment] = ACTIONS(46), - }, - [1062] = { - [sym_word] = ACTIONS(972), - [sym__concat] = ACTIONS(972), - [sym_variable_name] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(974), - [anon_sym_SEMI_SEMI] = ACTIONS(974), - [anon_sym_PIPE_AMP] = ACTIONS(974), - [anon_sym_AMP_AMP] = ACTIONS(974), - [anon_sym_PIPE_PIPE] = ACTIONS(974), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_LF] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - }, - [1063] = { - [sym_concatenation] = STATE(1318), - [sym_string] = STATE(1316), - [sym_simple_expansion] = STATE(1316), - [sym_expansion] = STATE(1316), - [sym_command_substitution] = STATE(1316), - [sym_process_substitution] = STATE(1316), - [sym_word] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(2684), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2686), - }, - [1064] = { - [anon_sym_AT] = ACTIONS(2688), - [sym_comment] = ACTIONS(46), - }, - [1065] = { - [sym_word] = ACTIONS(1066), - [sym__concat] = ACTIONS(1066), - [sym_variable_name] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_SEMI_SEMI] = ACTIONS(1068), - [anon_sym_PIPE_AMP] = ACTIONS(1068), - [anon_sym_AMP_AMP] = ACTIONS(1068), - [anon_sym_PIPE_PIPE] = ACTIONS(1068), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1068), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_LF] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1068), - }, - [1066] = { - [sym_word] = ACTIONS(1122), - [sym__concat] = ACTIONS(1122), - [sym_variable_name] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1124), - [anon_sym_RPAREN] = ACTIONS(1124), - [anon_sym_SEMI_SEMI] = ACTIONS(1124), - [anon_sym_PIPE_AMP] = ACTIONS(1124), - [anon_sym_AMP_AMP] = ACTIONS(1124), - [anon_sym_PIPE_PIPE] = ACTIONS(1124), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1124), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1124), - }, - [1067] = { - [anon_sym_RBRACK] = ACTIONS(2690), - [sym_comment] = ACTIONS(46), - }, - [1068] = { - [anon_sym_RBRACK] = ACTIONS(2692), - [sym_comment] = ACTIONS(46), - }, - [1069] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2694), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1070] = { - [sym_file_descriptor] = ACTIONS(2205), - [sym_word] = ACTIONS(2205), - [sym__concat] = ACTIONS(2205), - [sym_variable_name] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2696), - [anon_sym_GT] = ACTIONS(2696), - [anon_sym_GT_GT] = ACTIONS(2205), - [anon_sym_AMP_GT] = ACTIONS(2696), - [anon_sym_AMP_GT_GT] = ACTIONS(2205), - [anon_sym_LT_AMP] = ACTIONS(2205), - [anon_sym_GT_AMP] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [sym_raw_string] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2696), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2205), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2205), - [anon_sym_BQUOTE] = ACTIONS(2205), - [anon_sym_LT_LPAREN] = ACTIONS(2205), - [anon_sym_GT_LPAREN] = ACTIONS(2205), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2696), - }, - [1071] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2698), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1072] = { - [sym_file_descriptor] = ACTIONS(2211), - [sym_word] = ACTIONS(2211), - [sym__concat] = ACTIONS(2211), - [sym_variable_name] = ACTIONS(2211), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2211), - [anon_sym_AMP_GT] = ACTIONS(2700), - [anon_sym_AMP_GT_GT] = ACTIONS(2211), - [anon_sym_LT_AMP] = ACTIONS(2211), - [anon_sym_GT_AMP] = ACTIONS(2211), - [anon_sym_DQUOTE] = ACTIONS(2211), - [sym_raw_string] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2700), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2211), - [anon_sym_BQUOTE] = ACTIONS(2211), - [anon_sym_LT_LPAREN] = ACTIONS(2211), - [anon_sym_GT_LPAREN] = ACTIONS(2211), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2700), - }, - [1073] = { - [anon_sym_RBRACE] = ACTIONS(2694), - [sym_comment] = ACTIONS(46), - }, - [1074] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2702), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1075] = { - [sym_file_descriptor] = ACTIONS(2217), - [sym_word] = ACTIONS(2217), - [sym__concat] = ACTIONS(2217), - [sym_variable_name] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2217), - [anon_sym_AMP_GT] = ACTIONS(2704), - [anon_sym_AMP_GT_GT] = ACTIONS(2217), - [anon_sym_LT_AMP] = ACTIONS(2217), - [anon_sym_GT_AMP] = ACTIONS(2217), - [anon_sym_DQUOTE] = ACTIONS(2217), - [sym_raw_string] = ACTIONS(2217), - [anon_sym_DOLLAR] = ACTIONS(2704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2217), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2217), - [anon_sym_BQUOTE] = ACTIONS(2217), - [anon_sym_LT_LPAREN] = ACTIONS(2217), - [anon_sym_GT_LPAREN] = ACTIONS(2217), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2704), - }, - [1076] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2706), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1077] = { - [sym_file_descriptor] = ACTIONS(2223), - [sym_word] = ACTIONS(2223), - [sym__concat] = ACTIONS(2223), - [sym_variable_name] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_GT] = ACTIONS(2708), - [anon_sym_GT_GT] = ACTIONS(2223), - [anon_sym_AMP_GT] = ACTIONS(2708), - [anon_sym_AMP_GT_GT] = ACTIONS(2223), - [anon_sym_LT_AMP] = ACTIONS(2223), - [anon_sym_GT_AMP] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [sym_raw_string] = ACTIONS(2223), - [anon_sym_DOLLAR] = ACTIONS(2708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2223), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2223), - [anon_sym_BQUOTE] = ACTIONS(2223), - [anon_sym_LT_LPAREN] = ACTIONS(2223), - [anon_sym_GT_LPAREN] = ACTIONS(2223), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2708), - }, - [1078] = { - [anon_sym_RBRACE] = ACTIONS(2702), - [sym_comment] = ACTIONS(46), - }, - [1079] = { - [anon_sym_RBRACK] = ACTIONS(2710), - [sym_comment] = ACTIONS(46), - }, - [1080] = { - [anon_sym_RBRACK] = ACTIONS(2712), - [sym_comment] = ACTIONS(46), - }, - [1081] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2714), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1082] = { - [anon_sym_DQUOTE] = ACTIONS(2207), - [sym__string_content] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2207), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2207), - [anon_sym_BQUOTE] = ACTIONS(2207), - [sym_comment] = ACTIONS(60), - }, - [1083] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2716), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1084] = { - [anon_sym_DQUOTE] = ACTIONS(2213), - [sym__string_content] = ACTIONS(2213), - [anon_sym_DOLLAR] = ACTIONS(2213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2213), - [anon_sym_BQUOTE] = ACTIONS(2213), - [sym_comment] = ACTIONS(60), - }, - [1085] = { - [anon_sym_RBRACE] = ACTIONS(2714), - [sym_comment] = ACTIONS(46), - }, - [1086] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2718), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1087] = { - [anon_sym_DQUOTE] = ACTIONS(2219), - [sym__string_content] = ACTIONS(2219), - [anon_sym_DOLLAR] = ACTIONS(2219), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2219), - [anon_sym_BQUOTE] = ACTIONS(2219), - [sym_comment] = ACTIONS(60), - }, - [1088] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2720), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1089] = { - [anon_sym_DQUOTE] = ACTIONS(2225), - [sym__string_content] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2225), - [anon_sym_BQUOTE] = ACTIONS(2225), - [sym_comment] = ACTIONS(60), - }, - [1090] = { - [anon_sym_RBRACE] = ACTIONS(2718), - [sym_comment] = ACTIONS(46), - }, - [1091] = { - [anon_sym_RBRACE] = ACTIONS(2722), - [sym_comment] = ACTIONS(46), - }, - [1092] = { - [anon_sym_RBRACE] = ACTIONS(2724), - [sym_comment] = ACTIONS(46), - }, - [1093] = { - [sym_file_descriptor] = ACTIONS(2726), - [sym_word] = ACTIONS(2726), - [sym__concat] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_SEMI_SEMI] = ACTIONS(2728), - [anon_sym_PIPE_AMP] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_PIPE_PIPE] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2728), - [anon_sym_GT] = ACTIONS(2728), - [anon_sym_GT_GT] = ACTIONS(2728), - [anon_sym_AMP_GT] = ACTIONS(2728), - [anon_sym_AMP_GT_GT] = ACTIONS(2728), - [anon_sym_LT_AMP] = ACTIONS(2728), - [anon_sym_GT_AMP] = ACTIONS(2728), - [anon_sym_LT_LT] = ACTIONS(2728), - [anon_sym_LT_LT_DASH] = ACTIONS(2728), - [anon_sym_DQUOTE] = ACTIONS(2728), - [sym_raw_string] = ACTIONS(2728), - [anon_sym_DOLLAR] = ACTIONS(2728), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2728), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2728), - [anon_sym_BQUOTE] = ACTIONS(2728), - [anon_sym_LT_LPAREN] = ACTIONS(2728), - [anon_sym_GT_LPAREN] = ACTIONS(2728), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2728), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_LF] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2728), - }, - [1094] = { - [aux_sym_concatenation_repeat1] = STATE(1094), - [sym__concat] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(675), - [sym_comment] = ACTIONS(46), - }, - [1095] = { - [sym_file_descriptor] = ACTIONS(2730), - [sym_word] = ACTIONS(2730), - [sym__concat] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_SEMI_SEMI] = ACTIONS(2732), - [anon_sym_PIPE_AMP] = ACTIONS(2732), - [anon_sym_AMP_AMP] = ACTIONS(2732), - [anon_sym_PIPE_PIPE] = ACTIONS(2732), - [anon_sym_LT] = ACTIONS(2732), - [anon_sym_GT] = ACTIONS(2732), - [anon_sym_GT_GT] = ACTIONS(2732), - [anon_sym_AMP_GT] = ACTIONS(2732), - [anon_sym_AMP_GT_GT] = ACTIONS(2732), - [anon_sym_LT_AMP] = ACTIONS(2732), - [anon_sym_GT_AMP] = ACTIONS(2732), - [anon_sym_LT_LT] = ACTIONS(2732), - [anon_sym_LT_LT_DASH] = ACTIONS(2732), - [anon_sym_DQUOTE] = ACTIONS(2732), - [sym_raw_string] = ACTIONS(2732), - [anon_sym_DOLLAR] = ACTIONS(2732), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2732), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2732), - [anon_sym_BQUOTE] = ACTIONS(2732), - [anon_sym_LT_LPAREN] = ACTIONS(2732), - [anon_sym_GT_LPAREN] = ACTIONS(2732), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_LF] = ACTIONS(2732), - [anon_sym_AMP] = ACTIONS(2732), - }, - [1096] = { - [sym_file_descriptor] = ACTIONS(2734), - [sym_word] = ACTIONS(2734), - [sym__concat] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_SEMI_SEMI] = ACTIONS(2736), - [anon_sym_PIPE_AMP] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_PIPE_PIPE] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_GT] = ACTIONS(2736), - [anon_sym_GT_GT] = ACTIONS(2736), - [anon_sym_AMP_GT] = ACTIONS(2736), - [anon_sym_AMP_GT_GT] = ACTIONS(2736), - [anon_sym_LT_AMP] = ACTIONS(2736), - [anon_sym_GT_AMP] = ACTIONS(2736), - [anon_sym_LT_LT] = ACTIONS(2736), - [anon_sym_LT_LT_DASH] = ACTIONS(2736), - [anon_sym_DQUOTE] = ACTIONS(2736), - [sym_raw_string] = ACTIONS(2736), - [anon_sym_DOLLAR] = ACTIONS(2736), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2736), - [anon_sym_BQUOTE] = ACTIONS(2736), - [anon_sym_LT_LPAREN] = ACTIONS(2736), - [anon_sym_GT_LPAREN] = ACTIONS(2736), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_LF] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), - }, - [1097] = { - [sym_file_descriptor] = ACTIONS(2738), - [sym_word] = ACTIONS(2738), - [sym__concat] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_SEMI_SEMI] = ACTIONS(2740), - [anon_sym_PIPE_AMP] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_AMP_GT] = ACTIONS(2740), - [anon_sym_AMP_GT_GT] = ACTIONS(2740), - [anon_sym_LT_AMP] = ACTIONS(2740), - [anon_sym_GT_AMP] = ACTIONS(2740), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_LT_LT_DASH] = ACTIONS(2740), - [anon_sym_DQUOTE] = ACTIONS(2740), - [sym_raw_string] = ACTIONS(2740), - [anon_sym_DOLLAR] = ACTIONS(2740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2740), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2740), - [anon_sym_BQUOTE] = ACTIONS(2740), - [anon_sym_LT_LPAREN] = ACTIONS(2740), - [anon_sym_GT_LPAREN] = ACTIONS(2740), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - }, - [1098] = { - [sym_file_descriptor] = ACTIONS(675), - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(675), - [sym_variable_name] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_GT] = ACTIONS(1471), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_AMP_GT] = ACTIONS(1471), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(675), - [anon_sym_GT_AMP] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(675), - [sym_raw_string] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(1471), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(675), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), - [anon_sym_BQUOTE] = ACTIONS(675), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1471), - }, - [1099] = { - [sym_file_descriptor] = ACTIONS(679), - [sym_word] = ACTIONS(679), - [sym__concat] = ACTIONS(679), - [sym_variable_name] = ACTIONS(679), - [anon_sym_PIPE] = ACTIONS(1473), - [anon_sym_RPAREN] = ACTIONS(679), - [anon_sym_PIPE_AMP] = ACTIONS(679), - [anon_sym_AMP_AMP] = ACTIONS(679), - [anon_sym_PIPE_PIPE] = ACTIONS(679), - [anon_sym_LT] = ACTIONS(1473), - [anon_sym_GT] = ACTIONS(1473), - [anon_sym_GT_GT] = ACTIONS(679), - [anon_sym_AMP_GT] = ACTIONS(1473), - [anon_sym_AMP_GT_GT] = ACTIONS(679), - [anon_sym_LT_AMP] = ACTIONS(679), - [anon_sym_GT_AMP] = ACTIONS(679), - [anon_sym_DQUOTE] = ACTIONS(679), - [sym_raw_string] = ACTIONS(679), - [anon_sym_DOLLAR] = ACTIONS(1473), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(679), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(679), - [anon_sym_BQUOTE] = ACTIONS(679), - [anon_sym_LT_LPAREN] = ACTIONS(679), - [anon_sym_GT_LPAREN] = ACTIONS(679), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1473), - }, - [1100] = { - [aux_sym_concatenation_repeat1] = STATE(1100), - [sym_file_descriptor] = ACTIONS(675), - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(2742), - [sym_variable_name] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_GT] = ACTIONS(1471), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_AMP_GT] = ACTIONS(1471), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(675), - [anon_sym_GT_AMP] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(675), - [sym_raw_string] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(1471), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(675), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), - [anon_sym_BQUOTE] = ACTIONS(675), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1471), - }, - [1101] = { - [sym_file_descriptor] = ACTIONS(1888), - [sym_word] = ACTIONS(1888), - [sym_variable_name] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(2745), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(2745), - [anon_sym_GT] = ACTIONS(2745), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(2745), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(2745), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2745), - }, - [1102] = { - [sym_file_descriptor] = ACTIONS(931), - [sym_word] = ACTIONS(931), - [sym__concat] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_PIPE_AMP] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(1478), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [sym_raw_string] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(1478), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(931), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [anon_sym_LT_LPAREN] = ACTIONS(931), - [anon_sym_GT_LPAREN] = ACTIONS(931), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1478), - }, - [1103] = { - [anon_sym_RBRACE] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2749), - [sym_comment] = ACTIONS(46), - }, - [1104] = { - [anon_sym_RBRACE] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2753), - [sym_comment] = ACTIONS(46), - }, - [1105] = { - [sym_file_descriptor] = ACTIONS(960), - [sym_word] = ACTIONS(960), - [sym__concat] = ACTIONS(960), - [sym_variable_name] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_PIPE_AMP] = ACTIONS(960), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), - [anon_sym_LT] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1488), - [anon_sym_GT_GT] = ACTIONS(960), - [anon_sym_AMP_GT] = ACTIONS(1488), - [anon_sym_AMP_GT_GT] = ACTIONS(960), - [anon_sym_LT_AMP] = ACTIONS(960), - [anon_sym_GT_AMP] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym_raw_string] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(1488), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(960), - [anon_sym_BQUOTE] = ACTIONS(960), - [anon_sym_LT_LPAREN] = ACTIONS(960), - [anon_sym_GT_LPAREN] = ACTIONS(960), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1488), - }, - [1106] = { - [sym_concatenation] = STATE(1341), - [sym_string] = STATE(1338), - [sym_simple_expansion] = STATE(1338), - [sym_expansion] = STATE(1338), - [sym_command_substitution] = STATE(1338), - [sym_process_substitution] = STATE(1338), - [sym_word] = ACTIONS(2755), - [anon_sym_RBRACE] = ACTIONS(2757), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(2755), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2759), - }, - [1107] = { - [anon_sym_AT] = ACTIONS(2761), - [sym_comment] = ACTIONS(46), - }, - [1108] = { - [sym_file_descriptor] = ACTIONS(972), - [sym_word] = ACTIONS(972), - [sym__concat] = ACTIONS(972), - [sym_variable_name] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_RPAREN] = ACTIONS(972), - [anon_sym_PIPE_AMP] = ACTIONS(972), - [anon_sym_AMP_AMP] = ACTIONS(972), - [anon_sym_PIPE_PIPE] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(1498), - [anon_sym_GT] = ACTIONS(1498), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_AMP_GT] = ACTIONS(1498), - [anon_sym_AMP_GT_GT] = ACTIONS(972), - [anon_sym_LT_AMP] = ACTIONS(972), - [anon_sym_GT_AMP] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym_raw_string] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(1498), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(972), - [anon_sym_BQUOTE] = ACTIONS(972), - [anon_sym_LT_LPAREN] = ACTIONS(972), - [anon_sym_GT_LPAREN] = ACTIONS(972), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1498), - }, - [1109] = { - [sym_concatenation] = STATE(1345), - [sym_string] = STATE(1343), - [sym_simple_expansion] = STATE(1343), - [sym_expansion] = STATE(1343), - [sym_command_substitution] = STATE(1343), - [sym_process_substitution] = STATE(1343), - [sym_word] = ACTIONS(2763), - [anon_sym_RBRACE] = ACTIONS(2751), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(2763), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2765), - }, - [1110] = { - [anon_sym_AT] = ACTIONS(2767), - [sym_comment] = ACTIONS(46), - }, - [1111] = { - [sym_file_descriptor] = ACTIONS(1066), - [sym_word] = ACTIONS(1066), - [sym__concat] = ACTIONS(1066), - [sym_variable_name] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1066), - [anon_sym_PIPE_AMP] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(1066), - [anon_sym_AMP_GT] = ACTIONS(1506), - [anon_sym_AMP_GT_GT] = ACTIONS(1066), - [anon_sym_LT_AMP] = ACTIONS(1066), - [anon_sym_GT_AMP] = ACTIONS(1066), - [anon_sym_DQUOTE] = ACTIONS(1066), - [sym_raw_string] = ACTIONS(1066), - [anon_sym_DOLLAR] = ACTIONS(1506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1066), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1066), - [anon_sym_BQUOTE] = ACTIONS(1066), - [anon_sym_LT_LPAREN] = ACTIONS(1066), - [anon_sym_GT_LPAREN] = ACTIONS(1066), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1506), - }, - [1112] = { - [sym_file_descriptor] = ACTIONS(1122), - [sym_word] = ACTIONS(1122), - [sym__concat] = ACTIONS(1122), - [sym_variable_name] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_RPAREN] = ACTIONS(1122), - [anon_sym_PIPE_AMP] = ACTIONS(1122), - [anon_sym_AMP_AMP] = ACTIONS(1122), - [anon_sym_PIPE_PIPE] = ACTIONS(1122), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_GT_GT] = ACTIONS(1122), - [anon_sym_AMP_GT] = ACTIONS(1508), - [anon_sym_AMP_GT_GT] = ACTIONS(1122), - [anon_sym_LT_AMP] = ACTIONS(1122), - [anon_sym_GT_AMP] = ACTIONS(1122), - [anon_sym_DQUOTE] = ACTIONS(1122), - [sym_raw_string] = ACTIONS(1122), - [anon_sym_DOLLAR] = ACTIONS(1508), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1122), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1122), - [anon_sym_LT_LPAREN] = ACTIONS(1122), - [anon_sym_GT_LPAREN] = ACTIONS(1122), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1508), - }, - [1113] = { - [sym_do_group] = STATE(1347), - [anon_sym_do] = ACTIONS(1010), - [sym_comment] = ACTIONS(46), - }, - [1114] = { - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_RPAREN] = ACTIONS(2771), - [anon_sym_PIPE_AMP] = ACTIONS(2771), - [anon_sym_AMP_AMP] = ACTIONS(2771), - [anon_sym_PIPE_PIPE] = ACTIONS(2771), - [anon_sym_BQUOTE] = ACTIONS(2771), - [sym_comment] = ACTIONS(46), - }, - [1115] = { - [anon_sym_PIPE] = ACTIONS(2773), - [anon_sym_RPAREN] = ACTIONS(2775), - [anon_sym_PIPE_AMP] = ACTIONS(2775), - [anon_sym_AMP_AMP] = ACTIONS(2775), - [anon_sym_PIPE_PIPE] = ACTIONS(2775), - [anon_sym_BQUOTE] = ACTIONS(2775), - [sym_comment] = ACTIONS(46), - }, - [1116] = { - [anon_sym_fi] = ACTIONS(2777), - [sym_comment] = ACTIONS(46), - }, - [1117] = { - [sym_elif_clause] = STATE(420), - [sym_else_clause] = STATE(1349), - [aux_sym_if_statement_repeat1] = STATE(706), - [anon_sym_fi] = ACTIONS(2777), - [anon_sym_elif] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1352), - [sym_comment] = ACTIONS(46), - }, - [1118] = { - [anon_sym_PIPE] = ACTIONS(2779), - [anon_sym_RPAREN] = ACTIONS(2781), - [anon_sym_PIPE_AMP] = ACTIONS(2781), - [anon_sym_AMP_AMP] = ACTIONS(2781), - [anon_sym_PIPE_PIPE] = ACTIONS(2781), - [anon_sym_BQUOTE] = ACTIONS(2781), - [sym_comment] = ACTIONS(46), - }, - [1119] = { - [sym_case_item] = STATE(710), - [sym_concatenation] = STATE(711), - [sym_string] = STATE(707), - [sym_simple_expansion] = STATE(707), - [sym_expansion] = STATE(707), - [sym_command_substitution] = STATE(707), - [sym_process_substitution] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(1007), - [sym_word] = ACTIONS(1354), - [anon_sym_esac] = ACTIONS(2783), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1358), - }, - [1120] = { - [sym_case_item] = STATE(710), - [sym_concatenation] = STATE(711), - [sym_string] = STATE(707), - [sym_simple_expansion] = STATE(707), - [sym_expansion] = STATE(707), - [sym_command_substitution] = STATE(707), - [sym_process_substitution] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(1351), - [sym_word] = ACTIONS(1354), - [anon_sym_esac] = ACTIONS(2783), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1358), - }, - [1121] = { - [anon_sym_PIPE] = ACTIONS(2785), - [anon_sym_RPAREN] = ACTIONS(2787), - [anon_sym_PIPE_AMP] = ACTIONS(2787), - [anon_sym_AMP_AMP] = ACTIONS(2787), - [anon_sym_PIPE_PIPE] = ACTIONS(2787), - [anon_sym_BQUOTE] = ACTIONS(2787), - [sym_comment] = ACTIONS(46), - }, - [1122] = { - [sym_case_item] = STATE(710), - [sym_concatenation] = STATE(711), - [sym_string] = STATE(707), - [sym_simple_expansion] = STATE(707), - [sym_expansion] = STATE(707), - [sym_command_substitution] = STATE(707), - [sym_process_substitution] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(1007), - [sym_word] = ACTIONS(1354), - [anon_sym_esac] = ACTIONS(2789), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1358), - }, - [1123] = { - [sym_case_item] = STATE(710), - [sym_concatenation] = STATE(711), - [sym_string] = STATE(707), - [sym_simple_expansion] = STATE(707), - [sym_expansion] = STATE(707), - [sym_command_substitution] = STATE(707), - [sym_process_substitution] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(1353), - [sym_word] = ACTIONS(1354), - [anon_sym_esac] = ACTIONS(2789), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1358), - }, - [1124] = { - [sym_file_redirect] = STATE(1354), - [sym_file_descriptor] = ACTIONS(1611), - [anon_sym_PIPE] = ACTIONS(2791), - [anon_sym_RPAREN] = ACTIONS(2793), - [anon_sym_PIPE_AMP] = ACTIONS(2793), - [anon_sym_AMP_AMP] = ACTIONS(2793), - [anon_sym_PIPE_PIPE] = ACTIONS(2793), - [anon_sym_LT] = ACTIONS(1617), - [anon_sym_GT] = ACTIONS(1617), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_AMP_GT] = ACTIONS(1617), - [anon_sym_AMP_GT_GT] = ACTIONS(1619), - [anon_sym_LT_AMP] = ACTIONS(1619), - [anon_sym_GT_AMP] = ACTIONS(1619), - [sym_comment] = ACTIONS(46), - }, - [1125] = { - [sym_file_descriptor] = ACTIONS(2083), - [anon_sym_PIPE] = ACTIONS(2795), - [anon_sym_RPAREN] = ACTIONS(2083), - [anon_sym_PIPE_AMP] = ACTIONS(2083), - [anon_sym_AMP_AMP] = ACTIONS(2083), - [anon_sym_PIPE_PIPE] = ACTIONS(2083), - [anon_sym_LT] = ACTIONS(2795), - [anon_sym_GT] = ACTIONS(2795), - [anon_sym_GT_GT] = ACTIONS(2083), - [anon_sym_AMP_GT] = ACTIONS(2795), - [anon_sym_AMP_GT_GT] = ACTIONS(2083), - [anon_sym_LT_AMP] = ACTIONS(2083), - [anon_sym_GT_AMP] = ACTIONS(2083), - [anon_sym_BQUOTE] = ACTIONS(2083), - [sym_comment] = ACTIONS(46), - }, - [1126] = { - [sym_concatenation] = STATE(1357), - [sym_string] = STATE(1355), - [sym_simple_expansion] = STATE(1355), - [sym_expansion] = STATE(1355), - [sym_command_substitution] = STATE(1355), - [sym_process_substitution] = STATE(1355), - [sym_word] = ACTIONS(2797), - [anon_sym_DQUOTE] = ACTIONS(2293), - [sym_raw_string] = ACTIONS(2797), - [anon_sym_DOLLAR] = ACTIONS(2295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2297), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), - [anon_sym_BQUOTE] = ACTIONS(2301), - [anon_sym_LT_LPAREN] = ACTIONS(2303), - [anon_sym_GT_LPAREN] = ACTIONS(2303), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2799), - }, - [1127] = { - [aux_sym_concatenation_repeat1] = STATE(1359), - [sym__concat] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(372), - [anon_sym_PIPE_AMP] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [sym_comment] = ACTIONS(46), - }, - [1128] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(1361), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), - }, - [1129] = { - [sym_special_variable_name] = STATE(1364), - [anon_sym_DOLLAR] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(2805), - [anon_sym_AT] = ACTIONS(2805), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2807), - [anon_sym_STAR] = ACTIONS(2805), - [anon_sym_QMARK] = ACTIONS(2805), - [anon_sym_DASH] = ACTIONS(2805), - [anon_sym_BANG] = ACTIONS(2805), - [anon_sym_0] = ACTIONS(2809), - [anon_sym__] = ACTIONS(2809), - }, - [1130] = { - [sym_special_variable_name] = STATE(1367), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(2811), - [anon_sym_AT] = ACTIONS(138), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2813), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [1131] = { - [sym_for_statement] = STATE(1368), - [sym_while_statement] = STATE(1368), - [sym_if_statement] = STATE(1368), - [sym_case_statement] = STATE(1368), - [sym_function_definition] = STATE(1368), - [sym_subshell] = STATE(1368), - [sym_pipeline] = STATE(1368), - [sym_list] = STATE(1368), - [sym_command] = STATE(1368), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(1369), - [sym_declaration_command] = STATE(1368), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), - }, - [1132] = { - [sym_for_statement] = STATE(1370), - [sym_while_statement] = STATE(1370), - [sym_if_statement] = STATE(1370), - [sym_case_statement] = STATE(1370), - [sym_function_definition] = STATE(1370), - [sym_subshell] = STATE(1370), - [sym_pipeline] = STATE(1370), - [sym_list] = STATE(1370), - [sym_command] = STATE(1370), - [sym_command_name] = STATE(118), - [sym_variable_assignment] = STATE(1371), - [sym_declaration_command] = STATE(1370), - [sym_subscript] = STATE(120), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(112), - [sym_simple_expansion] = STATE(112), - [sym_expansion] = STATE(112), - [sym_command_substitution] = STATE(112), - [sym_process_substitution] = STATE(112), - [aux_sym_command_repeat1] = STATE(121), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(178), - [sym_variable_name] = ACTIONS(180), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(182), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(184), - [anon_sym_typeset] = ACTIONS(184), - [anon_sym_export] = ACTIONS(184), - [anon_sym_readonly] = ACTIONS(184), - [anon_sym_local] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(178), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(186), - }, - [1133] = { - [sym_for_statement] = STATE(1372), - [sym_while_statement] = STATE(1372), - [sym_if_statement] = STATE(1372), - [sym_case_statement] = STATE(1372), - [sym_function_definition] = STATE(1372), - [sym_subshell] = STATE(1372), - [sym_pipeline] = STATE(1372), - [sym_list] = STATE(1372), - [sym_command] = STATE(1372), - [sym_command_name] = STATE(107), - [sym_variable_assignment] = STATE(1373), - [sym_declaration_command] = STATE(1372), - [sym_subscript] = STATE(109), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(110), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat1] = STATE(111), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(146), - [sym_variable_name] = ACTIONS(148), - [anon_sym_for] = ACTIONS(150), - [anon_sym_while] = ACTIONS(152), - [anon_sym_if] = ACTIONS(154), - [anon_sym_case] = ACTIONS(156), - [anon_sym_function] = ACTIONS(158), - [anon_sym_LPAREN] = ACTIONS(160), - [anon_sym_declare] = ACTIONS(162), - [anon_sym_typeset] = ACTIONS(162), - [anon_sym_export] = ACTIONS(162), - [anon_sym_readonly] = ACTIONS(162), - [anon_sym_local] = ACTIONS(162), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(164), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(168), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(170), - [anon_sym_BQUOTE] = ACTIONS(172), - [anon_sym_LT_LPAREN] = ACTIONS(174), - [anon_sym_GT_LPAREN] = ACTIONS(174), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(176), - }, - [1134] = { - [aux_sym_concatenation_repeat1] = STATE(1374), - [sym__concat] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_RPAREN] = ACTIONS(390), - [anon_sym_PIPE_AMP] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(390), - [anon_sym_PIPE_PIPE] = ACTIONS(390), - [sym_comment] = ACTIONS(46), - }, - [1135] = { - [anon_sym_PIPE] = ACTIONS(376), - [anon_sym_RPAREN] = ACTIONS(372), - [anon_sym_PIPE_AMP] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_BQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(46), - }, - [1136] = { - [anon_sym_PIPE] = ACTIONS(2815), - [anon_sym_RPAREN] = ACTIONS(2817), - [anon_sym_PIPE_AMP] = ACTIONS(2817), - [anon_sym_AMP_AMP] = ACTIONS(2817), - [anon_sym_PIPE_PIPE] = ACTIONS(2817), - [anon_sym_BQUOTE] = ACTIONS(2817), - [sym_comment] = ACTIONS(46), - }, - [1137] = { - [sym_string] = STATE(1375), - [sym_simple_expansion] = STATE(1375), - [sym_expansion] = STATE(1375), - [sym_command_substitution] = STATE(1375), - [sym_process_substitution] = STATE(1375), - [sym_word] = ACTIONS(2819), - [anon_sym_DQUOTE] = ACTIONS(1637), - [sym_raw_string] = ACTIONS(2819), - [anon_sym_DOLLAR] = ACTIONS(1639), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1641), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1643), - [anon_sym_BQUOTE] = ACTIONS(1645), - [anon_sym_LT_LPAREN] = ACTIONS(1647), - [anon_sym_GT_LPAREN] = ACTIONS(1647), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2821), - }, - [1138] = { - [aux_sym_concatenation_repeat1] = STATE(1377), - [sym_word] = ACTIONS(254), - [sym__concat] = ACTIONS(2317), - [sym_variable_name] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_RPAREN] = ACTIONS(254), - [anon_sym_PIPE_AMP] = ACTIONS(254), - [anon_sym_AMP_AMP] = ACTIONS(254), - [anon_sym_PIPE_PIPE] = ACTIONS(254), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(877), - }, - [1139] = { - [sym_word] = ACTIONS(1226), - [sym_variable_name] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(2231), - [anon_sym_RPAREN] = ACTIONS(1226), - [anon_sym_PIPE_AMP] = ACTIONS(1226), - [anon_sym_AMP_AMP] = ACTIONS(1226), - [anon_sym_PIPE_PIPE] = ACTIONS(1226), - [anon_sym_BQUOTE] = ACTIONS(1226), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2231), - }, - [1140] = { - [sym_concatenation] = STATE(364), - [sym_string] = STATE(355), - [sym_simple_expansion] = STATE(355), - [sym_expansion] = STATE(355), - [sym_command_substitution] = STATE(355), - [sym_process_substitution] = STATE(355), - [aux_sym_for_statement_repeat1] = STATE(648), - [sym_word] = ACTIONS(692), - [anon_sym_RPAREN] = ACTIONS(2823), - [anon_sym_DQUOTE] = ACTIONS(696), - [sym_raw_string] = ACTIONS(692), - [anon_sym_DOLLAR] = ACTIONS(698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(702), - [anon_sym_BQUOTE] = ACTIONS(704), - [anon_sym_LT_LPAREN] = ACTIONS(706), - [anon_sym_GT_LPAREN] = ACTIONS(706), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(708), - }, - [1141] = { - [sym_word] = ACTIONS(394), - [sym__concat] = ACTIONS(394), - [sym_variable_name] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(394), - [anon_sym_PIPE_AMP] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_BQUOTE] = ACTIONS(394), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(879), - }, - [1142] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(252), - [anon_sym_DQUOTE] = ACTIONS(2825), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), - }, - [1143] = { - [sym_word] = ACTIONS(412), - [sym__concat] = ACTIONS(412), - [sym_variable_name] = ACTIONS(412), - [anon_sym_PIPE] = ACTIONS(424), - [anon_sym_RPAREN] = ACTIONS(412), - [anon_sym_PIPE_AMP] = ACTIONS(412), - [anon_sym_AMP_AMP] = ACTIONS(412), - [anon_sym_PIPE_PIPE] = ACTIONS(412), - [anon_sym_BQUOTE] = ACTIONS(412), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(424), - }, - [1144] = { - [sym_word] = ACTIONS(416), - [sym__concat] = ACTIONS(416), - [sym_variable_name] = ACTIONS(416), - [anon_sym_PIPE] = ACTIONS(883), - [anon_sym_RPAREN] = ACTIONS(416), - [anon_sym_PIPE_AMP] = ACTIONS(416), - [anon_sym_AMP_AMP] = ACTIONS(416), - [anon_sym_PIPE_PIPE] = ACTIONS(416), - [anon_sym_BQUOTE] = ACTIONS(416), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(883), - }, - [1145] = { - [sym_word] = ACTIONS(420), - [sym__concat] = ACTIONS(420), - [sym_variable_name] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(420), - [anon_sym_PIPE_AMP] = ACTIONS(420), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_BQUOTE] = ACTIONS(420), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(885), - }, - [1146] = { - [sym_special_variable_name] = STATE(1381), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(138), - [anon_sym_AT] = ACTIONS(138), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_COLON_QMARK] = ACTIONS(412), - [anon_sym_COLON_DASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(412), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2827), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [1147] = { - [anon_sym_RBRACE] = ACTIONS(2829), - [anon_sym_EQ] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2833), - [anon_sym_COLON] = ACTIONS(2835), - [anon_sym_COLON_QMARK] = ACTIONS(2831), - [anon_sym_COLON_DASH] = ACTIONS(2831), - [anon_sym_PERCENT] = ACTIONS(2831), - [anon_sym_SLASH] = ACTIONS(2831), - [sym_comment] = ACTIONS(46), - }, - [1148] = { - [anon_sym_RBRACE] = ACTIONS(2837), - [anon_sym_EQ] = ACTIONS(2839), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_COLON] = ACTIONS(2843), - [anon_sym_COLON_QMARK] = ACTIONS(2839), - [anon_sym_COLON_DASH] = ACTIONS(2839), - [anon_sym_PERCENT] = ACTIONS(2839), - [anon_sym_SLASH] = ACTIONS(2839), - [sym_comment] = ACTIONS(46), - }, - [1149] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(2845), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [1150] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(2845), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [1151] = { - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_BQUOTE] = ACTIONS(2845), - [sym_comment] = ACTIONS(46), - }, - [1152] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(2845), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [1153] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(2847), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [1154] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(2847), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [1155] = { - [aux_sym_concatenation_repeat1] = STATE(1377), - [sym_word] = ACTIONS(542), - [sym__concat] = ACTIONS(2317), - [sym_variable_name] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(542), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(909), - }, - [1156] = { - [anon_sym_RBRACK] = ACTIONS(2849), - [sym_comment] = ACTIONS(46), - }, - [1157] = { - [anon_sym_RBRACK] = ACTIONS(2851), - [sym_comment] = ACTIONS(46), - }, - [1158] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2853), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1159] = { - [sym_file_descriptor] = ACTIONS(2205), - [sym_word] = ACTIONS(2205), - [sym__concat] = ACTIONS(2205), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_RPAREN] = ACTIONS(2205), - [anon_sym_PIPE_AMP] = ACTIONS(2205), - [anon_sym_AMP_AMP] = ACTIONS(2205), - [anon_sym_PIPE_PIPE] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2696), - [anon_sym_GT] = ACTIONS(2696), - [anon_sym_GT_GT] = ACTIONS(2205), - [anon_sym_AMP_GT] = ACTIONS(2696), - [anon_sym_AMP_GT_GT] = ACTIONS(2205), - [anon_sym_LT_AMP] = ACTIONS(2205), - [anon_sym_GT_AMP] = ACTIONS(2205), - [anon_sym_LT_LT] = ACTIONS(2696), - [anon_sym_LT_LT_DASH] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [sym_raw_string] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2696), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2205), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2205), - [anon_sym_BQUOTE] = ACTIONS(2205), - [anon_sym_LT_LPAREN] = ACTIONS(2205), - [anon_sym_GT_LPAREN] = ACTIONS(2205), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2696), - }, - [1160] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), + [anon_sym_RBRACE] = ACTIONS(2832), + [sym__special_characters] = ACTIONS(2834), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(2836), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2838), + }, + [792] = { + [sym_file_descriptor] = ACTIONS(1281), + [sym__concat] = ACTIONS(1281), + [sym_variable_name] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_SEMI_SEMI] = ACTIONS(1283), + [anon_sym_PIPE_AMP] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1283), + [anon_sym_PIPE_PIPE] = ACTIONS(1283), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_AMP_GT] = ACTIONS(1283), + [anon_sym_AMP_GT_GT] = ACTIONS(1283), + [anon_sym_LT_AMP] = ACTIONS(1283), + [anon_sym_GT_AMP] = ACTIONS(1283), + [sym__special_characters] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1283), + [sym_raw_string] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1283), + [anon_sym_BQUOTE] = ACTIONS(1283), + [anon_sym_LT_LPAREN] = ACTIONS(1283), + [anon_sym_GT_LPAREN] = ACTIONS(1283), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + }, + [793] = { + [sym_file_descriptor] = ACTIONS(1379), + [sym__concat] = ACTIONS(1379), + [sym_variable_name] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_SEMI_SEMI] = ACTIONS(1381), + [anon_sym_PIPE_AMP] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [anon_sym_PIPE_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(1381), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_GT_GT] = ACTIONS(1381), + [anon_sym_AMP_GT] = ACTIONS(1381), + [anon_sym_AMP_GT_GT] = ACTIONS(1381), + [anon_sym_LT_AMP] = ACTIONS(1381), + [anon_sym_GT_AMP] = ACTIONS(1381), + [sym__special_characters] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1381), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1381), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1381), + [anon_sym_BQUOTE] = ACTIONS(1381), + [anon_sym_LT_LPAREN] = ACTIONS(1381), + [anon_sym_GT_LPAREN] = ACTIONS(1381), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_LF] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + }, + [794] = { + [sym_file_descriptor] = ACTIONS(1513), + [sym__concat] = ACTIONS(1513), + [sym_variable_name] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_SEMI_SEMI] = ACTIONS(1515), + [anon_sym_PIPE_AMP] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE_PIPE] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1515), + [anon_sym_GT] = ACTIONS(1515), + [anon_sym_GT_GT] = ACTIONS(1515), + [anon_sym_AMP_GT] = ACTIONS(1515), + [anon_sym_AMP_GT_GT] = ACTIONS(1515), + [anon_sym_LT_AMP] = ACTIONS(1515), + [anon_sym_GT_AMP] = ACTIONS(1515), + [sym__special_characters] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [sym_raw_string] = ACTIONS(1515), + [anon_sym_DOLLAR] = ACTIONS(1515), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1515), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [anon_sym_LT_LPAREN] = ACTIONS(1515), + [anon_sym_GT_LPAREN] = ACTIONS(1515), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + }, + [795] = { + [sym__concat] = ACTIONS(2840), + [anon_sym_EQ] = ACTIONS(2842), + [anon_sym_PLUS_EQ] = ACTIONS(2842), + [sym_comment] = ACTIONS(48), + }, + [796] = { + [sym__concat] = ACTIONS(1157), + [anon_sym_RBRACK] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + }, + [797] = { + [anon_sym_RBRACE] = ACTIONS(2842), + [anon_sym_EQ] = ACTIONS(2842), + [anon_sym_PLUS_EQ] = ACTIONS(2842), + [anon_sym_COLON] = ACTIONS(2844), + [anon_sym_COLON_QMARK] = ACTIONS(2842), + [anon_sym_COLON_DASH] = ACTIONS(2842), + [anon_sym_PERCENT] = ACTIONS(2842), + [anon_sym_SLASH] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2842), + [sym_comment] = ACTIONS(48), + }, + [798] = { + [sym_string] = STATE(796), + [sym_simple_expansion] = STATE(796), + [sym_expansion] = STATE(796), + [sym_command_substitution] = STATE(796), + [sym_process_substitution] = STATE(796), + [sym__special_characters] = ACTIONS(1697), + [anon_sym_DQUOTE] = ACTIONS(314), + [sym_raw_string] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(320), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_LT_LPAREN] = ACTIONS(326), + [anon_sym_GT_LPAREN] = ACTIONS(326), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1697), + }, + [799] = { + [aux_sym_concatenation_repeat1] = STATE(799), + [sym__concat] = ACTIONS(2846), + [anon_sym_RBRACK] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + }, + [800] = { + [sym__concat] = ACTIONS(1196), + [anon_sym_RBRACK] = ACTIONS(1196), + [sym_comment] = ACTIONS(48), + }, + [801] = { + [sym__concat] = ACTIONS(2849), + [anon_sym_EQ] = ACTIONS(2851), + [anon_sym_PLUS_EQ] = ACTIONS(2851), + [sym_comment] = ACTIONS(48), + }, + [802] = { + [anon_sym_RBRACE] = ACTIONS(2851), + [anon_sym_EQ] = ACTIONS(2851), + [anon_sym_PLUS_EQ] = ACTIONS(2851), + [anon_sym_COLON] = ACTIONS(2853), + [anon_sym_COLON_QMARK] = ACTIONS(2851), + [anon_sym_COLON_DASH] = ACTIONS(2851), + [anon_sym_PERCENT] = ACTIONS(2851), + [anon_sym_SLASH] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2851), + [sym_comment] = ACTIONS(48), + }, + [803] = { + [sym_concatenation] = STATE(1273), + [sym_string] = STATE(1272), + [sym_simple_expansion] = STATE(1272), + [sym_expansion] = STATE(1272), + [sym_command_substitution] = STATE(1272), + [sym_process_substitution] = STATE(1272), [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1161] = { - [sym_file_descriptor] = ACTIONS(2211), - [sym_word] = ACTIONS(2211), - [sym__concat] = ACTIONS(2211), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_RPAREN] = ACTIONS(2211), - [anon_sym_PIPE_AMP] = ACTIONS(2211), - [anon_sym_AMP_AMP] = ACTIONS(2211), - [anon_sym_PIPE_PIPE] = ACTIONS(2211), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2211), - [anon_sym_AMP_GT] = ACTIONS(2700), - [anon_sym_AMP_GT_GT] = ACTIONS(2211), - [anon_sym_LT_AMP] = ACTIONS(2211), - [anon_sym_GT_AMP] = ACTIONS(2211), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_LT_LT_DASH] = ACTIONS(2211), - [anon_sym_DQUOTE] = ACTIONS(2211), - [sym_raw_string] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2700), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2211), - [anon_sym_BQUOTE] = ACTIONS(2211), - [anon_sym_LT_LPAREN] = ACTIONS(2211), - [anon_sym_GT_LPAREN] = ACTIONS(2211), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2700), - }, - [1162] = { - [anon_sym_RBRACE] = ACTIONS(2853), - [sym_comment] = ACTIONS(46), - }, - [1163] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2857), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1164] = { - [sym_file_descriptor] = ACTIONS(2217), - [sym_word] = ACTIONS(2217), - [sym__concat] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_RPAREN] = ACTIONS(2217), - [anon_sym_PIPE_AMP] = ACTIONS(2217), - [anon_sym_AMP_AMP] = ACTIONS(2217), - [anon_sym_PIPE_PIPE] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2217), - [anon_sym_AMP_GT] = ACTIONS(2704), - [anon_sym_AMP_GT_GT] = ACTIONS(2217), - [anon_sym_LT_AMP] = ACTIONS(2217), - [anon_sym_GT_AMP] = ACTIONS(2217), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_LT_LT_DASH] = ACTIONS(2217), - [anon_sym_DQUOTE] = ACTIONS(2217), - [sym_raw_string] = ACTIONS(2217), - [anon_sym_DOLLAR] = ACTIONS(2704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2217), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2217), - [anon_sym_BQUOTE] = ACTIONS(2217), - [anon_sym_LT_LPAREN] = ACTIONS(2217), - [anon_sym_GT_LPAREN] = ACTIONS(2217), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2704), - }, - [1165] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2859), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1166] = { - [sym_file_descriptor] = ACTIONS(2223), - [sym_word] = ACTIONS(2223), - [sym__concat] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_RPAREN] = ACTIONS(2223), - [anon_sym_PIPE_AMP] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_GT] = ACTIONS(2708), - [anon_sym_GT_GT] = ACTIONS(2223), - [anon_sym_AMP_GT] = ACTIONS(2708), - [anon_sym_AMP_GT_GT] = ACTIONS(2223), - [anon_sym_LT_AMP] = ACTIONS(2223), - [anon_sym_GT_AMP] = ACTIONS(2223), - [anon_sym_LT_LT] = ACTIONS(2708), - [anon_sym_LT_LT_DASH] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [sym_raw_string] = ACTIONS(2223), - [anon_sym_DOLLAR] = ACTIONS(2708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2223), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2223), - [anon_sym_BQUOTE] = ACTIONS(2223), - [anon_sym_LT_LPAREN] = ACTIONS(2223), - [anon_sym_GT_LPAREN] = ACTIONS(2223), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2708), - }, - [1167] = { - [anon_sym_RBRACE] = ACTIONS(2857), - [sym_comment] = ACTIONS(46), - }, - [1168] = { - [anon_sym_PIPE] = ACTIONS(2861), - [anon_sym_RPAREN] = ACTIONS(2863), - [anon_sym_PIPE_AMP] = ACTIONS(2863), - [anon_sym_AMP_AMP] = ACTIONS(2863), - [anon_sym_PIPE_PIPE] = ACTIONS(2863), - [anon_sym_BQUOTE] = ACTIONS(2863), - [sym_comment] = ACTIONS(46), - }, - [1169] = { - [sym_file_descriptor] = ACTIONS(675), - [sym__concat] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_GT] = ACTIONS(1471), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_AMP_GT] = ACTIONS(1471), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(675), - [anon_sym_GT_AMP] = ACTIONS(675), - [anon_sym_LT_LT] = ACTIONS(1471), - [anon_sym_LT_LT_DASH] = ACTIONS(675), - [anon_sym_BQUOTE] = ACTIONS(675), - [sym_comment] = ACTIONS(46), - }, - [1170] = { - [sym_file_descriptor] = ACTIONS(679), - [sym__concat] = ACTIONS(679), - [anon_sym_PIPE] = ACTIONS(1473), - [anon_sym_RPAREN] = ACTIONS(679), - [anon_sym_PIPE_AMP] = ACTIONS(679), - [anon_sym_AMP_AMP] = ACTIONS(679), - [anon_sym_PIPE_PIPE] = ACTIONS(679), - [anon_sym_LT] = ACTIONS(1473), - [anon_sym_GT] = ACTIONS(1473), - [anon_sym_GT_GT] = ACTIONS(679), - [anon_sym_AMP_GT] = ACTIONS(1473), - [anon_sym_AMP_GT_GT] = ACTIONS(679), - [anon_sym_LT_AMP] = ACTIONS(679), - [anon_sym_GT_AMP] = ACTIONS(679), - [anon_sym_LT_LT] = ACTIONS(1473), - [anon_sym_LT_LT_DASH] = ACTIONS(679), - [anon_sym_BQUOTE] = ACTIONS(679), - [sym_comment] = ACTIONS(46), - }, - [1171] = { - [aux_sym_concatenation_repeat1] = STATE(1171), - [sym_file_descriptor] = ACTIONS(675), - [sym__concat] = ACTIONS(2865), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_GT] = ACTIONS(1471), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_AMP_GT] = ACTIONS(1471), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(675), - [anon_sym_GT_AMP] = ACTIONS(675), - [anon_sym_LT_LT] = ACTIONS(1471), - [anon_sym_LT_LT_DASH] = ACTIONS(675), - [sym_comment] = ACTIONS(46), - }, - [1172] = { - [sym_file_descriptor] = ACTIONS(931), - [sym__concat] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_PIPE_AMP] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_AMP_GT] = ACTIONS(1478), - [anon_sym_AMP_GT_GT] = ACTIONS(931), - [anon_sym_LT_AMP] = ACTIONS(931), - [anon_sym_GT_AMP] = ACTIONS(931), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_LT_LT_DASH] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [sym_comment] = ACTIONS(46), - }, - [1173] = { - [anon_sym_RBRACE] = ACTIONS(2868), - [anon_sym_LBRACK] = ACTIONS(2870), - [sym_comment] = ACTIONS(46), - }, - [1174] = { - [anon_sym_RBRACE] = ACTIONS(2872), - [anon_sym_LBRACK] = ACTIONS(2874), - [sym_comment] = ACTIONS(46), - }, - [1175] = { - [sym_file_descriptor] = ACTIONS(960), - [sym__concat] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_PIPE_AMP] = ACTIONS(960), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), - [anon_sym_LT] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1488), - [anon_sym_GT_GT] = ACTIONS(960), - [anon_sym_AMP_GT] = ACTIONS(1488), - [anon_sym_AMP_GT_GT] = ACTIONS(960), - [anon_sym_LT_AMP] = ACTIONS(960), - [anon_sym_GT_AMP] = ACTIONS(960), - [anon_sym_LT_LT] = ACTIONS(1488), - [anon_sym_LT_LT_DASH] = ACTIONS(960), - [anon_sym_BQUOTE] = ACTIONS(960), - [sym_comment] = ACTIONS(46), - }, - [1176] = { - [sym_concatenation] = STATE(1403), - [sym_string] = STATE(1400), - [sym_simple_expansion] = STATE(1400), - [sym_expansion] = STATE(1400), - [sym_command_substitution] = STATE(1400), - [sym_process_substitution] = STATE(1400), - [sym_word] = ACTIONS(2876), - [anon_sym_RBRACE] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(2876), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2880), - }, - [1177] = { - [anon_sym_AT] = ACTIONS(2882), - [sym_comment] = ACTIONS(46), - }, - [1178] = { - [sym_file_descriptor] = ACTIONS(972), - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_RPAREN] = ACTIONS(972), - [anon_sym_PIPE_AMP] = ACTIONS(972), - [anon_sym_AMP_AMP] = ACTIONS(972), - [anon_sym_PIPE_PIPE] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(1498), - [anon_sym_GT] = ACTIONS(1498), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_AMP_GT] = ACTIONS(1498), - [anon_sym_AMP_GT_GT] = ACTIONS(972), - [anon_sym_LT_AMP] = ACTIONS(972), - [anon_sym_GT_AMP] = ACTIONS(972), - [anon_sym_LT_LT] = ACTIONS(1498), - [anon_sym_LT_LT_DASH] = ACTIONS(972), - [anon_sym_BQUOTE] = ACTIONS(972), - [sym_comment] = ACTIONS(46), - }, - [1179] = { - [sym_concatenation] = STATE(1407), - [sym_string] = STATE(1405), - [sym_simple_expansion] = STATE(1405), - [sym_expansion] = STATE(1405), - [sym_command_substitution] = STATE(1405), - [sym_process_substitution] = STATE(1405), - [sym_word] = ACTIONS(2884), - [anon_sym_RBRACE] = ACTIONS(2872), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(2884), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2886), - }, - [1180] = { - [anon_sym_AT] = ACTIONS(2888), - [sym_comment] = ACTIONS(46), - }, - [1181] = { - [sym_file_descriptor] = ACTIONS(1066), - [sym__concat] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1066), - [anon_sym_PIPE_AMP] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_LT] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(1066), - [anon_sym_AMP_GT] = ACTIONS(1506), - [anon_sym_AMP_GT_GT] = ACTIONS(1066), - [anon_sym_LT_AMP] = ACTIONS(1066), - [anon_sym_GT_AMP] = ACTIONS(1066), - [anon_sym_LT_LT] = ACTIONS(1506), - [anon_sym_LT_LT_DASH] = ACTIONS(1066), - [anon_sym_BQUOTE] = ACTIONS(1066), - [sym_comment] = ACTIONS(46), - }, - [1182] = { - [sym_file_descriptor] = ACTIONS(1122), - [sym__concat] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_RPAREN] = ACTIONS(1122), - [anon_sym_PIPE_AMP] = ACTIONS(1122), - [anon_sym_AMP_AMP] = ACTIONS(1122), - [anon_sym_PIPE_PIPE] = ACTIONS(1122), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_GT_GT] = ACTIONS(1122), - [anon_sym_AMP_GT] = ACTIONS(1508), - [anon_sym_AMP_GT_GT] = ACTIONS(1122), - [anon_sym_LT_AMP] = ACTIONS(1122), - [anon_sym_GT_AMP] = ACTIONS(1122), - [anon_sym_LT_LT] = ACTIONS(1508), - [anon_sym_LT_LT_DASH] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1122), - [sym_comment] = ACTIONS(46), - }, - [1183] = { - [sym_file_descriptor] = ACTIONS(2450), - [anon_sym_PIPE] = ACTIONS(2890), - [anon_sym_RPAREN] = ACTIONS(2450), - [anon_sym_PIPE_AMP] = ACTIONS(2450), - [anon_sym_AMP_AMP] = ACTIONS(2450), - [anon_sym_PIPE_PIPE] = ACTIONS(2450), - [anon_sym_LT] = ACTIONS(2890), - [anon_sym_GT] = ACTIONS(2890), - [anon_sym_GT_GT] = ACTIONS(2450), - [anon_sym_AMP_GT] = ACTIONS(2890), - [anon_sym_AMP_GT_GT] = ACTIONS(2450), - [anon_sym_LT_AMP] = ACTIONS(2450), - [anon_sym_GT_AMP] = ACTIONS(2450), - [anon_sym_LT_LT] = ACTIONS(2890), - [anon_sym_LT_LT_DASH] = ACTIONS(2450), - [anon_sym_BQUOTE] = ACTIONS(2450), - [sym_comment] = ACTIONS(46), - }, - [1184] = { - [aux_sym_concatenation_repeat1] = STATE(1184), - [sym_file_descriptor] = ACTIONS(675), - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(2742), - [sym_variable_name] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_GT] = ACTIONS(1471), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_AMP_GT] = ACTIONS(1471), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(675), - [anon_sym_GT_AMP] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(675), - [sym_raw_string] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(1471), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(675), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), - [anon_sym_BQUOTE] = ACTIONS(675), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1471), - }, - [1185] = { - [sym_file_redirect] = STATE(1354), - [sym_file_descriptor] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(2791), - [anon_sym_PIPE_AMP] = ACTIONS(2793), - [anon_sym_AMP_AMP] = ACTIONS(2793), - [anon_sym_PIPE_PIPE] = ACTIONS(2793), - [anon_sym_LT] = ACTIONS(1769), - [anon_sym_GT] = ACTIONS(1769), - [anon_sym_GT_GT] = ACTIONS(1771), - [anon_sym_AMP_GT] = ACTIONS(1769), - [anon_sym_AMP_GT_GT] = ACTIONS(1771), - [anon_sym_LT_AMP] = ACTIONS(1771), - [anon_sym_GT_AMP] = ACTIONS(1771), - [anon_sym_BQUOTE] = ACTIONS(2793), - [sym_comment] = ACTIONS(46), - }, - [1186] = { - [sym_concatenation] = STATE(1357), - [sym_string] = STATE(1409), - [sym_simple_expansion] = STATE(1409), - [sym_expansion] = STATE(1409), - [sym_command_substitution] = STATE(1409), - [sym_process_substitution] = STATE(1409), - [sym_word] = ACTIONS(2892), - [anon_sym_DQUOTE] = ACTIONS(2293), - [sym_raw_string] = ACTIONS(2892), - [anon_sym_DOLLAR] = ACTIONS(2295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2297), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), - [anon_sym_BQUOTE] = ACTIONS(2301), - [anon_sym_LT_LPAREN] = ACTIONS(2303), - [anon_sym_GT_LPAREN] = ACTIONS(2303), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2894), - }, - [1187] = { - [aux_sym_concatenation_repeat1] = STATE(1411), - [sym__concat] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(376), - [anon_sym_PIPE_AMP] = ACTIONS(372), - [anon_sym_AMP_AMP] = ACTIONS(372), - [anon_sym_PIPE_PIPE] = ACTIONS(372), - [anon_sym_BQUOTE] = ACTIONS(372), - [sym_comment] = ACTIONS(46), - }, - [1188] = { - [aux_sym_concatenation_repeat1] = STATE(1412), - [sym__concat] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(392), - [anon_sym_PIPE_AMP] = ACTIONS(390), - [anon_sym_AMP_AMP] = ACTIONS(390), - [anon_sym_PIPE_PIPE] = ACTIONS(390), - [anon_sym_BQUOTE] = ACTIONS(390), - [sym_comment] = ACTIONS(46), - }, - [1189] = { - [aux_sym_concatenation_repeat1] = STATE(1413), - [sym_word] = ACTIONS(254), - [sym__concat] = ACTIONS(2317), - [sym_variable_name] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_PIPE_AMP] = ACTIONS(254), - [anon_sym_AMP_AMP] = ACTIONS(254), - [anon_sym_PIPE_PIPE] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(254), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(877), - }, - [1190] = { - [aux_sym_concatenation_repeat1] = STATE(1413), - [sym_word] = ACTIONS(542), - [sym__concat] = ACTIONS(2317), - [sym_variable_name] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_BQUOTE] = ACTIONS(542), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(909), - }, - [1191] = { - [aux_sym_concatenation_repeat1] = STATE(1191), - [sym_file_descriptor] = ACTIONS(675), - [sym__concat] = ACTIONS(2865), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_GT] = ACTIONS(1471), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_AMP_GT] = ACTIONS(1471), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(675), - [anon_sym_GT_AMP] = ACTIONS(675), - [anon_sym_LT_LT] = ACTIONS(1471), - [anon_sym_LT_LT_DASH] = ACTIONS(675), - [anon_sym_BQUOTE] = ACTIONS(675), - [sym_comment] = ACTIONS(46), - }, - [1192] = { - [sym_file_descriptor] = ACTIONS(1532), - [sym__concat] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(1534), - [anon_sym_RPAREN] = ACTIONS(1534), - [anon_sym_SEMI_SEMI] = ACTIONS(1534), - [anon_sym_PIPE_AMP] = ACTIONS(1534), - [anon_sym_AMP_AMP] = ACTIONS(1534), - [anon_sym_PIPE_PIPE] = ACTIONS(1534), - [anon_sym_LT] = ACTIONS(1534), - [anon_sym_GT] = ACTIONS(1534), - [anon_sym_GT_GT] = ACTIONS(1534), - [anon_sym_AMP_GT] = ACTIONS(1534), - [anon_sym_AMP_GT_GT] = ACTIONS(1534), - [anon_sym_LT_AMP] = ACTIONS(1534), - [anon_sym_GT_AMP] = ACTIONS(1534), - [anon_sym_LT_LT] = ACTIONS(1534), - [anon_sym_LT_LT_DASH] = ACTIONS(1534), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_LF] = ACTIONS(1534), - [anon_sym_AMP] = ACTIONS(1534), - }, - [1193] = { - [anon_sym_AT] = ACTIONS(2896), - [sym_comment] = ACTIONS(46), - }, - [1194] = { - [sym_file_descriptor] = ACTIONS(1538), - [sym__concat] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_RPAREN] = ACTIONS(1540), - [anon_sym_SEMI_SEMI] = ACTIONS(1540), - [anon_sym_PIPE_AMP] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1540), - [anon_sym_PIPE_PIPE] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1540), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_AMP_GT] = ACTIONS(1540), - [anon_sym_AMP_GT_GT] = ACTIONS(1540), - [anon_sym_LT_AMP] = ACTIONS(1540), - [anon_sym_GT_AMP] = ACTIONS(1540), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_LT_LT_DASH] = ACTIONS(1540), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_LF] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1540), - }, - [1195] = { - [anon_sym_AT] = ACTIONS(2898), - [sym_comment] = ACTIONS(46), - }, - [1196] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(2900), - [anon_sym_RBRACE] = ACTIONS(2902), - [sym_comment] = ACTIONS(46), - }, - [1197] = { - [sym_file_descriptor] = ACTIONS(1548), - [sym__concat] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [anon_sym_PIPE_AMP] = ACTIONS(1550), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_GT] = ACTIONS(1550), - [anon_sym_AMP_GT] = ACTIONS(1550), - [anon_sym_AMP_GT_GT] = ACTIONS(1550), - [anon_sym_LT_AMP] = ACTIONS(1550), - [anon_sym_GT_AMP] = ACTIONS(1550), - [anon_sym_LT_LT] = ACTIONS(1550), - [anon_sym_LT_LT_DASH] = ACTIONS(1550), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1550), - }, - [1198] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(2904), - [anon_sym_RBRACE] = ACTIONS(2906), - [sym_comment] = ACTIONS(46), - }, - [1199] = { - [sym__concat] = ACTIONS(2908), - [anon_sym_RBRACE] = ACTIONS(2902), - [sym_comment] = ACTIONS(46), - }, - [1200] = { - [anon_sym_RBRACK] = ACTIONS(2908), - [sym_comment] = ACTIONS(46), - }, - [1201] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(2910), - [anon_sym_RBRACE] = ACTIONS(2912), - [sym_comment] = ACTIONS(46), - }, - [1202] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(2914), - [anon_sym_RBRACE] = ACTIONS(2916), - [sym_comment] = ACTIONS(46), - }, - [1203] = { - [sym__concat] = ACTIONS(2918), - [anon_sym_RBRACE] = ACTIONS(2912), - [sym_comment] = ACTIONS(46), - }, - [1204] = { - [anon_sym_RBRACK] = ACTIONS(2918), - [sym_comment] = ACTIONS(46), - }, - [1205] = { - [anon_sym_RBRACE] = ACTIONS(2920), - [anon_sym_LBRACK] = ACTIONS(2922), - [sym_comment] = ACTIONS(46), - }, - [1206] = { - [anon_sym_RBRACE] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2926), - [sym_comment] = ACTIONS(46), - }, - [1207] = { - [sym__heredoc_middle] = ACTIONS(960), - [sym__heredoc_end] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(1488), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), - [sym_comment] = ACTIONS(46), - }, - [1208] = { - [sym_concatenation] = STATE(1433), - [sym_string] = STATE(1430), - [sym_simple_expansion] = STATE(1430), - [sym_expansion] = STATE(1430), - [sym_command_substitution] = STATE(1430), - [sym_process_substitution] = STATE(1430), - [sym_word] = ACTIONS(2928), - [anon_sym_RBRACE] = ACTIONS(2930), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2932), - }, - [1209] = { - [anon_sym_AT] = ACTIONS(2934), - [sym_comment] = ACTIONS(46), - }, - [1210] = { - [sym__heredoc_middle] = ACTIONS(972), - [sym__heredoc_end] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(1498), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(972), - [sym_comment] = ACTIONS(46), - }, - [1211] = { - [sym_concatenation] = STATE(1437), - [sym_string] = STATE(1435), - [sym_simple_expansion] = STATE(1435), - [sym_expansion] = STATE(1435), - [sym_command_substitution] = STATE(1435), - [sym_process_substitution] = STATE(1435), - [sym_word] = ACTIONS(2936), - [anon_sym_RBRACE] = ACTIONS(2924), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(2936), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2938), - }, - [1212] = { - [anon_sym_AT] = ACTIONS(2940), - [sym_comment] = ACTIONS(46), - }, - [1213] = { - [sym_file_descriptor] = ACTIONS(1888), - [sym_word] = ACTIONS(1888), - [sym_variable_name] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(2745), - [anon_sym_GT] = ACTIONS(2745), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(2745), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(2745), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2745), - }, - [1214] = { - [sym_word] = ACTIONS(1532), - [sym__concat] = ACTIONS(1532), - [anon_sym_RPAREN] = ACTIONS(1532), - [anon_sym_DQUOTE] = ACTIONS(1532), - [sym_raw_string] = ACTIONS(1532), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1532), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1532), - [anon_sym_BQUOTE] = ACTIONS(1532), - [anon_sym_LT_LPAREN] = ACTIONS(1532), - [anon_sym_GT_LPAREN] = ACTIONS(1532), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2145), - }, - [1215] = { - [anon_sym_AT] = ACTIONS(2942), - [sym_comment] = ACTIONS(46), - }, - [1216] = { - [sym_word] = ACTIONS(1538), - [sym__concat] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym_raw_string] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(2149), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1538), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1538), - [anon_sym_BQUOTE] = ACTIONS(1538), - [anon_sym_LT_LPAREN] = ACTIONS(1538), - [anon_sym_GT_LPAREN] = ACTIONS(1538), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2149), - }, - [1217] = { - [anon_sym_AT] = ACTIONS(2944), - [sym_comment] = ACTIONS(46), - }, - [1218] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(2946), - [anon_sym_RBRACE] = ACTIONS(2948), - [sym_comment] = ACTIONS(46), - }, - [1219] = { - [sym_word] = ACTIONS(1548), - [sym__concat] = ACTIONS(1548), - [anon_sym_RPAREN] = ACTIONS(1548), - [anon_sym_DQUOTE] = ACTIONS(1548), - [sym_raw_string] = ACTIONS(1548), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1548), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1548), - [anon_sym_BQUOTE] = ACTIONS(1548), - [anon_sym_LT_LPAREN] = ACTIONS(1548), - [anon_sym_GT_LPAREN] = ACTIONS(1548), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2157), - }, - [1220] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(2950), - [anon_sym_RBRACE] = ACTIONS(2952), - [sym_comment] = ACTIONS(46), - }, - [1221] = { - [sym__concat] = ACTIONS(2954), - [anon_sym_RBRACE] = ACTIONS(2948), - [sym_comment] = ACTIONS(46), - }, - [1222] = { - [anon_sym_RBRACK] = ACTIONS(2954), - [sym_comment] = ACTIONS(46), - }, - [1223] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(2956), - [anon_sym_RBRACE] = ACTIONS(2958), - [sym_comment] = ACTIONS(46), - }, - [1224] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(2960), - [anon_sym_RBRACE] = ACTIONS(2962), - [sym_comment] = ACTIONS(46), - }, - [1225] = { - [sym__concat] = ACTIONS(2964), - [anon_sym_RBRACE] = ACTIONS(2958), - [sym_comment] = ACTIONS(46), - }, - [1226] = { - [anon_sym_RBRACK] = ACTIONS(2964), - [sym_comment] = ACTIONS(46), - }, - [1227] = { - [anon_sym_RBRACK] = ACTIONS(2966), - [sym_comment] = ACTIONS(46), - }, - [1228] = { - [anon_sym_RBRACK] = ACTIONS(2968), - [sym_comment] = ACTIONS(46), - }, - [1229] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1230] = { - [sym_file_descriptor] = ACTIONS(2205), - [sym_word] = ACTIONS(2205), - [sym__concat] = ACTIONS(2205), - [sym_variable_name] = ACTIONS(2205), - [anon_sym_PIPE] = ACTIONS(2207), - [anon_sym_RPAREN] = ACTIONS(2207), - [anon_sym_SEMI_SEMI] = ACTIONS(2207), - [anon_sym_PIPE_AMP] = ACTIONS(2207), - [anon_sym_AMP_AMP] = ACTIONS(2207), - [anon_sym_PIPE_PIPE] = ACTIONS(2207), - [anon_sym_LT] = ACTIONS(2207), - [anon_sym_GT] = ACTIONS(2207), - [anon_sym_GT_GT] = ACTIONS(2207), - [anon_sym_AMP_GT] = ACTIONS(2207), - [anon_sym_AMP_GT_GT] = ACTIONS(2207), - [anon_sym_LT_AMP] = ACTIONS(2207), - [anon_sym_GT_AMP] = ACTIONS(2207), - [anon_sym_DQUOTE] = ACTIONS(2207), - [sym_raw_string] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2207), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2207), - [anon_sym_BQUOTE] = ACTIONS(2207), - [anon_sym_LT_LPAREN] = ACTIONS(2207), - [anon_sym_GT_LPAREN] = ACTIONS(2207), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2207), - [anon_sym_SEMI] = ACTIONS(2207), - [anon_sym_LF] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2207), - }, - [1231] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2972), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1232] = { - [sym_file_descriptor] = ACTIONS(2211), - [sym_word] = ACTIONS(2211), - [sym__concat] = ACTIONS(2211), - [sym_variable_name] = ACTIONS(2211), - [anon_sym_PIPE] = ACTIONS(2213), - [anon_sym_RPAREN] = ACTIONS(2213), - [anon_sym_SEMI_SEMI] = ACTIONS(2213), - [anon_sym_PIPE_AMP] = ACTIONS(2213), - [anon_sym_AMP_AMP] = ACTIONS(2213), - [anon_sym_PIPE_PIPE] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_GT] = ACTIONS(2213), - [anon_sym_GT_GT] = ACTIONS(2213), - [anon_sym_AMP_GT] = ACTIONS(2213), - [anon_sym_AMP_GT_GT] = ACTIONS(2213), - [anon_sym_LT_AMP] = ACTIONS(2213), - [anon_sym_GT_AMP] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2213), - [sym_raw_string] = ACTIONS(2213), - [anon_sym_DOLLAR] = ACTIONS(2213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2213), - [anon_sym_BQUOTE] = ACTIONS(2213), - [anon_sym_LT_LPAREN] = ACTIONS(2213), - [anon_sym_GT_LPAREN] = ACTIONS(2213), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_LF] = ACTIONS(2213), - [anon_sym_AMP] = ACTIONS(2213), - }, - [1233] = { - [anon_sym_RBRACE] = ACTIONS(2970), - [sym_comment] = ACTIONS(46), - }, - [1234] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2974), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1235] = { - [sym_file_descriptor] = ACTIONS(2217), - [sym_word] = ACTIONS(2217), - [sym__concat] = ACTIONS(2217), - [sym_variable_name] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_RPAREN] = ACTIONS(2219), - [anon_sym_SEMI_SEMI] = ACTIONS(2219), - [anon_sym_PIPE_AMP] = ACTIONS(2219), - [anon_sym_AMP_AMP] = ACTIONS(2219), - [anon_sym_PIPE_PIPE] = ACTIONS(2219), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_GT] = ACTIONS(2219), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_AMP_GT] = ACTIONS(2219), - [anon_sym_AMP_GT_GT] = ACTIONS(2219), - [anon_sym_LT_AMP] = ACTIONS(2219), - [anon_sym_GT_AMP] = ACTIONS(2219), - [anon_sym_DQUOTE] = ACTIONS(2219), - [sym_raw_string] = ACTIONS(2219), - [anon_sym_DOLLAR] = ACTIONS(2219), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2219), - [anon_sym_BQUOTE] = ACTIONS(2219), - [anon_sym_LT_LPAREN] = ACTIONS(2219), - [anon_sym_GT_LPAREN] = ACTIONS(2219), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2219), - [anon_sym_SEMI] = ACTIONS(2219), - [anon_sym_LF] = ACTIONS(2219), - [anon_sym_AMP] = ACTIONS(2219), - }, - [1236] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2976), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1237] = { - [sym_file_descriptor] = ACTIONS(2223), - [sym_word] = ACTIONS(2223), - [sym__concat] = ACTIONS(2223), - [sym_variable_name] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2225), - [anon_sym_RPAREN] = ACTIONS(2225), - [anon_sym_SEMI_SEMI] = ACTIONS(2225), - [anon_sym_PIPE_AMP] = ACTIONS(2225), - [anon_sym_AMP_AMP] = ACTIONS(2225), - [anon_sym_PIPE_PIPE] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_GT] = ACTIONS(2225), - [anon_sym_GT_GT] = ACTIONS(2225), - [anon_sym_AMP_GT] = ACTIONS(2225), - [anon_sym_AMP_GT_GT] = ACTIONS(2225), - [anon_sym_LT_AMP] = ACTIONS(2225), - [anon_sym_GT_AMP] = ACTIONS(2225), - [anon_sym_DQUOTE] = ACTIONS(2225), - [sym_raw_string] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2225), - [anon_sym_BQUOTE] = ACTIONS(2225), - [anon_sym_LT_LPAREN] = ACTIONS(2225), - [anon_sym_GT_LPAREN] = ACTIONS(2225), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2225), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_LF] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2225), - }, - [1238] = { - [anon_sym_RBRACE] = ACTIONS(2974), - [sym_comment] = ACTIONS(46), - }, - [1239] = { - [anon_sym_RBRACK] = ACTIONS(2978), - [sym_comment] = ACTIONS(46), - }, - [1240] = { - [anon_sym_RBRACK] = ACTIONS(2980), - [sym_comment] = ACTIONS(46), - }, - [1241] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2982), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1242] = { - [sym__concat] = ACTIONS(2205), - [anon_sym_PIPE] = ACTIONS(2205), - [anon_sym_RPAREN] = ACTIONS(2205), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_RBRACK] = ACTIONS(2205), - [sym_comment] = ACTIONS(46), - }, - [1243] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1244] = { - [sym__concat] = ACTIONS(2211), - [anon_sym_PIPE] = ACTIONS(2211), - [anon_sym_RPAREN] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_RBRACK] = ACTIONS(2211), - [sym_comment] = ACTIONS(46), - }, - [1245] = { - [anon_sym_RBRACE] = ACTIONS(2982), - [sym_comment] = ACTIONS(46), - }, - [1246] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2986), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1247] = { - [sym__concat] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2217), - [anon_sym_RPAREN] = ACTIONS(2217), - [anon_sym_RBRACE] = ACTIONS(2217), - [anon_sym_RBRACK] = ACTIONS(2217), - [sym_comment] = ACTIONS(46), - }, - [1248] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1249] = { - [sym__concat] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2223), - [anon_sym_RPAREN] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_RBRACK] = ACTIONS(2223), - [sym_comment] = ACTIONS(46), - }, - [1250] = { - [anon_sym_RBRACE] = ACTIONS(2986), - [sym_comment] = ACTIONS(46), - }, - [1251] = { - [sym_word] = ACTIONS(1532), - [sym__concat] = ACTIONS(1532), - [anon_sym_SEMI_SEMI] = ACTIONS(1534), - [anon_sym_DQUOTE] = ACTIONS(1534), - [sym_raw_string] = ACTIONS(1534), - [anon_sym_DOLLAR] = ACTIONS(1534), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1534), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1534), - [anon_sym_BQUOTE] = ACTIONS(1534), - [anon_sym_LT_LPAREN] = ACTIONS(1534), - [anon_sym_GT_LPAREN] = ACTIONS(1534), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1534), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_LF] = ACTIONS(1534), - [anon_sym_AMP] = ACTIONS(1534), - }, - [1252] = { - [anon_sym_AT] = ACTIONS(2990), - [sym_comment] = ACTIONS(46), - }, - [1253] = { - [sym_word] = ACTIONS(1538), - [sym__concat] = ACTIONS(1538), - [anon_sym_SEMI_SEMI] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1540), - [sym_raw_string] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1540), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1540), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1540), - [anon_sym_BQUOTE] = ACTIONS(1540), - [anon_sym_LT_LPAREN] = ACTIONS(1540), - [anon_sym_GT_LPAREN] = ACTIONS(1540), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_LF] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1540), - }, - [1254] = { - [anon_sym_AT] = ACTIONS(2992), - [sym_comment] = ACTIONS(46), - }, - [1255] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(2994), - [anon_sym_RBRACE] = ACTIONS(2996), - [sym_comment] = ACTIONS(46), - }, - [1256] = { - [sym_word] = ACTIONS(1548), - [sym__concat] = ACTIONS(1548), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [sym_raw_string] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1550), - [anon_sym_BQUOTE] = ACTIONS(1550), - [anon_sym_LT_LPAREN] = ACTIONS(1550), - [anon_sym_GT_LPAREN] = ACTIONS(1550), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1550), - }, - [1257] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(2998), - [anon_sym_RBRACE] = ACTIONS(3000), - [sym_comment] = ACTIONS(46), - }, - [1258] = { - [sym__concat] = ACTIONS(3002), - [anon_sym_RBRACE] = ACTIONS(2996), - [sym_comment] = ACTIONS(46), - }, - [1259] = { - [anon_sym_RBRACK] = ACTIONS(3002), - [sym_comment] = ACTIONS(46), - }, - [1260] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(3004), - [anon_sym_RBRACE] = ACTIONS(3006), - [sym_comment] = ACTIONS(46), - }, - [1261] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(3008), - [anon_sym_RBRACE] = ACTIONS(3010), - [sym_comment] = ACTIONS(46), - }, - [1262] = { - [sym__concat] = ACTIONS(3012), - [anon_sym_RBRACE] = ACTIONS(3006), - [sym_comment] = ACTIONS(46), - }, - [1263] = { - [anon_sym_RBRACK] = ACTIONS(3012), - [sym_comment] = ACTIONS(46), - }, - [1264] = { - [sym__terminated_statement] = STATE(418), - [sym_for_statement] = STATE(419), - [sym_while_statement] = STATE(419), - [sym_if_statement] = STATE(419), - [sym_case_statement] = STATE(419), - [sym_function_definition] = STATE(419), - [sym_subshell] = STATE(419), - [sym_pipeline] = STATE(419), - [sym_list] = STATE(419), - [sym_command] = STATE(419), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(422), - [sym_declaration_command] = STATE(419), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(704), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(3014), - [anon_sym_elif] = ACTIONS(3014), - [anon_sym_else] = ACTIONS(3014), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), - }, - [1265] = { - [anon_sym_PIPE] = ACTIONS(3016), - [anon_sym_RPAREN] = ACTIONS(3016), - [anon_sym_SEMI_SEMI] = ACTIONS(3016), - [anon_sym_PIPE_AMP] = ACTIONS(3016), - [anon_sym_AMP_AMP] = ACTIONS(3016), - [anon_sym_PIPE_PIPE] = ACTIONS(3016), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(3016), - [anon_sym_LF] = ACTIONS(3016), - [anon_sym_AMP] = ACTIONS(3016), - }, - [1266] = { - [aux_sym_concatenation_repeat1] = STATE(1002), - [sym__concat] = ACTIONS(726), - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_RPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(46), - }, - [1267] = { - [aux_sym_concatenation_repeat1] = STATE(1005), - [sym__concat] = ACTIONS(726), - [anon_sym_PIPE] = ACTIONS(3020), - [anon_sym_RPAREN] = ACTIONS(3020), - [sym_comment] = ACTIONS(46), - }, - [1268] = { - [anon_sym_PIPE] = ACTIONS(3018), - [anon_sym_RPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(46), - }, - [1269] = { - [sym_word] = ACTIONS(3022), - [anon_sym_esac] = ACTIONS(3024), - [anon_sym_DQUOTE] = ACTIONS(3022), - [sym_raw_string] = ACTIONS(3022), - [anon_sym_DOLLAR] = ACTIONS(3024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3022), - [anon_sym_BQUOTE] = ACTIONS(3022), - [anon_sym_LT_LPAREN] = ACTIONS(3022), - [anon_sym_GT_LPAREN] = ACTIONS(3022), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3026), - }, - [1270] = { - [sym_file_descriptor] = ACTIONS(196), - [sym_word] = ACTIONS(196), - [sym_variable_name] = ACTIONS(196), - [anon_sym_for] = ACTIONS(198), - [anon_sym_while] = ACTIONS(198), - [anon_sym_if] = ACTIONS(198), - [anon_sym_case] = ACTIONS(198), - [anon_sym_SEMI_SEMI] = ACTIONS(196), - [anon_sym_function] = ACTIONS(198), - [anon_sym_LPAREN] = ACTIONS(196), - [anon_sym_declare] = ACTIONS(198), - [anon_sym_typeset] = ACTIONS(198), - [anon_sym_export] = ACTIONS(198), - [anon_sym_readonly] = ACTIONS(198), - [anon_sym_local] = ACTIONS(198), - [anon_sym_LT] = ACTIONS(198), - [anon_sym_GT] = ACTIONS(198), - [anon_sym_GT_GT] = ACTIONS(196), - [anon_sym_AMP_GT] = ACTIONS(198), - [anon_sym_AMP_GT_GT] = ACTIONS(196), - [anon_sym_LT_AMP] = ACTIONS(196), - [anon_sym_GT_AMP] = ACTIONS(196), - [anon_sym_DQUOTE] = ACTIONS(196), - [sym_raw_string] = ACTIONS(196), - [anon_sym_DOLLAR] = ACTIONS(198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(196), - [anon_sym_BQUOTE] = ACTIONS(196), - [anon_sym_LT_LPAREN] = ACTIONS(196), - [anon_sym_GT_LPAREN] = ACTIONS(196), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(200), - }, - [1271] = { - [anon_sym_PIPE] = ACTIONS(202), - [anon_sym_SEMI_SEMI] = ACTIONS(3028), - [anon_sym_PIPE_AMP] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(206), - [anon_sym_PIPE_PIPE] = ACTIONS(206), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(3028), - [anon_sym_LF] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3028), - }, - [1272] = { + [sym__special_characters] = ACTIONS(2857), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(2859), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2861), + }, + [804] = { + [sym__concat] = ACTIONS(1241), + [anon_sym_RBRACK] = ACTIONS(1241), + [sym_comment] = ACTIONS(48), + }, + [805] = { + [sym_concatenation] = STATE(1277), + [sym_string] = STATE(1276), + [sym_simple_expansion] = STATE(1276), + [sym_expansion] = STATE(1276), + [sym_command_substitution] = STATE(1276), + [sym_process_substitution] = STATE(1276), + [anon_sym_RBRACE] = ACTIONS(2863), + [sym__special_characters] = ACTIONS(2865), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(2867), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2869), + }, + [806] = { + [anon_sym_EQ] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [807] = { + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_EQ] = ACTIONS(2875), + [anon_sym_COLON] = ACTIONS(2877), + [anon_sym_COLON_QMARK] = ACTIONS(2875), + [anon_sym_COLON_DASH] = ACTIONS(2875), + [anon_sym_PERCENT] = ACTIONS(2875), + [anon_sym_SLASH] = ACTIONS(2875), + [anon_sym_DASH] = ACTIONS(2875), + [sym_comment] = ACTIONS(48), + }, + [808] = { + [anon_sym_RBRACE] = ACTIONS(2879), + [anon_sym_EQ] = ACTIONS(2881), + [anon_sym_COLON] = ACTIONS(2883), + [anon_sym_COLON_QMARK] = ACTIONS(2881), + [anon_sym_COLON_DASH] = ACTIONS(2881), + [anon_sym_PERCENT] = ACTIONS(2881), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [sym_comment] = ACTIONS(48), + }, + [809] = { + [anon_sym_RBRACE] = ACTIONS(2855), + [anon_sym_EQ] = ACTIONS(2871), + [anon_sym_COLON] = ACTIONS(2885), + [anon_sym_COLON_QMARK] = ACTIONS(2871), + [anon_sym_COLON_DASH] = ACTIONS(2871), + [anon_sym_PERCENT] = ACTIONS(2871), + [anon_sym_SLASH] = ACTIONS(2871), + [anon_sym_DASH] = ACTIONS(2871), + [sym_comment] = ACTIONS(48), + }, + [810] = { + [sym__concat] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(1269), + [sym_comment] = ACTIONS(48), + }, + [811] = { + [sym_concatenation] = STATE(1286), + [sym_string] = STATE(1285), + [sym_simple_expansion] = STATE(1285), + [sym_expansion] = STATE(1285), + [sym_command_substitution] = STATE(1285), + [sym_process_substitution] = STATE(1285), + [anon_sym_RBRACE] = ACTIONS(2887), + [sym__special_characters] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(2891), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2893), + }, + [812] = { + [sym__concat] = ACTIONS(1281), + [anon_sym_RBRACK] = ACTIONS(1281), + [sym_comment] = ACTIONS(48), + }, + [813] = { + [sym__concat] = ACTIONS(1379), + [anon_sym_RBRACK] = ACTIONS(1379), + [sym_comment] = ACTIONS(48), + }, + [814] = { + [sym__concat] = ACTIONS(1513), + [anon_sym_RBRACK] = ACTIONS(1513), + [sym_comment] = ACTIONS(48), + }, + [815] = { + [sym_string] = STATE(1287), + [sym_simple_expansion] = STATE(1287), + [sym_expansion] = STATE(1287), + [sym_command_substitution] = STATE(1287), + [sym_process_substitution] = STATE(1287), + [sym__special_characters] = ACTIONS(2895), + [anon_sym_DQUOTE] = ACTIONS(902), + [sym_raw_string] = ACTIONS(2897), + [anon_sym_DOLLAR] = ACTIONS(906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(908), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(910), + [anon_sym_BQUOTE] = ACTIONS(912), + [anon_sym_LT_LPAREN] = ACTIONS(914), + [anon_sym_GT_LPAREN] = ACTIONS(914), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2895), + }, + [816] = { + [aux_sym_concatenation_repeat1] = STATE(1288), + [sym__concat] = ACTIONS(1743), + [anon_sym_SEMI_SEMI] = ACTIONS(480), + [sym__special_characters] = ACTIONS(480), + [anon_sym_DQUOTE] = ACTIONS(480), + [sym_raw_string] = ACTIONS(480), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(480), + [anon_sym_LT_LPAREN] = ACTIONS(480), + [anon_sym_GT_LPAREN] = ACTIONS(480), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(480), + [anon_sym_SEMI] = ACTIONS(480), + [anon_sym_LF] = ACTIONS(480), + [anon_sym_AMP] = ACTIONS(480), + }, + [817] = { + [sym__concat] = ACTIONS(482), + [anon_sym_SEMI_SEMI] = ACTIONS(484), + [sym__special_characters] = ACTIONS(484), + [anon_sym_DQUOTE] = ACTIONS(484), + [sym_raw_string] = ACTIONS(484), + [anon_sym_DOLLAR] = ACTIONS(484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(484), + [anon_sym_BQUOTE] = ACTIONS(484), + [anon_sym_LT_LPAREN] = ACTIONS(484), + [anon_sym_GT_LPAREN] = ACTIONS(484), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(484), + [anon_sym_SEMI] = ACTIONS(484), + [anon_sym_LF] = ACTIONS(484), + [anon_sym_AMP] = ACTIONS(484), + }, + [818] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(2899), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [819] = { + [sym__concat] = ACTIONS(510), + [anon_sym_SEMI_SEMI] = ACTIONS(512), + [sym__special_characters] = ACTIONS(512), + [anon_sym_DQUOTE] = ACTIONS(512), + [sym_raw_string] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(512), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(512), + [anon_sym_BQUOTE] = ACTIONS(512), + [anon_sym_LT_LPAREN] = ACTIONS(512), + [anon_sym_GT_LPAREN] = ACTIONS(512), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(512), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_LF] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(512), + }, + [820] = { + [sym__concat] = ACTIONS(514), + [anon_sym_SEMI_SEMI] = ACTIONS(516), + [sym__special_characters] = ACTIONS(516), + [anon_sym_DQUOTE] = ACTIONS(516), + [sym_raw_string] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(516), + [anon_sym_BQUOTE] = ACTIONS(516), + [anon_sym_LT_LPAREN] = ACTIONS(516), + [anon_sym_GT_LPAREN] = ACTIONS(516), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_LF] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(516), + }, + [821] = { + [anon_sym_EQ] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [822] = { + [anon_sym_RBRACE] = ACTIONS(2903), + [anon_sym_EQ] = ACTIONS(2905), + [anon_sym_COLON] = ACTIONS(2907), + [anon_sym_COLON_QMARK] = ACTIONS(2905), + [anon_sym_COLON_DASH] = ACTIONS(2905), + [anon_sym_PERCENT] = ACTIONS(2905), + [anon_sym_SLASH] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2905), + [sym_comment] = ACTIONS(48), + }, + [823] = { + [sym_subscript] = STATE(1296), + [sym_variable_name] = ACTIONS(2909), + [anon_sym_DOLLAR] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2911), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2913), + [anon_sym_STAR] = ACTIONS(2911), + [anon_sym_AT] = ACTIONS(2911), + [anon_sym_QMARK] = ACTIONS(2911), + [anon_sym_0] = ACTIONS(2915), + [anon_sym__] = ACTIONS(2915), + }, + [824] = { + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_EQ] = ACTIONS(2919), + [anon_sym_COLON] = ACTIONS(2921), + [anon_sym_COLON_QMARK] = ACTIONS(2919), + [anon_sym_COLON_DASH] = ACTIONS(2919), + [anon_sym_PERCENT] = ACTIONS(2919), + [anon_sym_SLASH] = ACTIONS(2919), + [anon_sym_DASH] = ACTIONS(2919), + [sym_comment] = ACTIONS(48), + }, + [825] = { + [anon_sym_RBRACE] = ACTIONS(2923), + [anon_sym_EQ] = ACTIONS(2901), + [anon_sym_COLON] = ACTIONS(2925), + [anon_sym_COLON_QMARK] = ACTIONS(2901), + [anon_sym_COLON_DASH] = ACTIONS(2901), + [anon_sym_PERCENT] = ACTIONS(2901), + [anon_sym_SLASH] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2901), + [sym_comment] = ACTIONS(48), + }, + [826] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(2927), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [827] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(2927), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [828] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(2927), + [sym_comment] = ACTIONS(48), + }, + [829] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(2927), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [830] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(2929), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [831] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(2929), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [832] = { + [sym_do_group] = STATE(1302), + [anon_sym_do] = ACTIONS(336), + [sym_comment] = ACTIONS(48), + }, + [833] = { + [sym_concatenation] = STATE(462), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_for_statement_repeat1] = STATE(833), + [anon_sym_SEMI_SEMI] = ACTIONS(1577), + [sym__special_characters] = ACTIONS(2931), + [anon_sym_DQUOTE] = ACTIONS(2934), + [sym_raw_string] = ACTIONS(2937), + [anon_sym_DOLLAR] = ACTIONS(2940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2946), + [anon_sym_BQUOTE] = ACTIONS(2949), + [anon_sym_LT_LPAREN] = ACTIONS(2952), + [anon_sym_GT_LPAREN] = ACTIONS(2952), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2937), + [anon_sym_SEMI] = ACTIONS(1577), + [anon_sym_LF] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1577), + }, + [834] = { + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(684), + [anon_sym_for] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [anon_sym_done] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_case] = ACTIONS(686), + [anon_sym_function] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_declare] = ACTIONS(686), + [anon_sym_typeset] = ACTIONS(686), + [anon_sym_export] = ACTIONS(686), + [anon_sym_readonly] = ACTIONS(686), + [anon_sym_local] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(684), + [anon_sym_AMP_GT] = ACTIONS(686), + [anon_sym_AMP_GT_GT] = ACTIONS(684), + [anon_sym_LT_AMP] = ACTIONS(684), + [anon_sym_GT_AMP] = ACTIONS(684), + [sym__special_characters] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(684), + [sym_raw_string] = ACTIONS(684), + [anon_sym_DOLLAR] = ACTIONS(686), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(684), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(684), + [anon_sym_BQUOTE] = ACTIONS(684), + [anon_sym_LT_LPAREN] = ACTIONS(684), + [anon_sym_GT_LPAREN] = ACTIONS(684), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(688), + }, + [835] = { + [anon_sym_PIPE] = ACTIONS(2955), + [anon_sym_RPAREN] = ACTIONS(2955), + [anon_sym_SEMI_SEMI] = ACTIONS(2955), + [anon_sym_PIPE_AMP] = ACTIONS(2955), + [anon_sym_AMP_AMP] = ACTIONS(2955), + [anon_sym_PIPE_PIPE] = ACTIONS(2955), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2955), + [anon_sym_LF] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2955), + }, + [836] = { + [sym__terminated_statement] = STATE(465), + [sym_for_statement] = STATE(466), + [sym_while_statement] = STATE(466), + [sym_if_statement] = STATE(466), + [sym_case_statement] = STATE(466), + [sym_function_definition] = STATE(466), + [sym_subshell] = STATE(466), + [sym_pipeline] = STATE(466), + [sym_list] = STATE(466), + [sym_command] = STATE(466), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(467), + [sym_declaration_command] = STATE(466), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(836), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(736), + [sym_variable_name] = ACTIONS(739), + [anon_sym_for] = ACTIONS(744), + [anon_sym_while] = ACTIONS(747), + [anon_sym_done] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(750), + [anon_sym_case] = ACTIONS(753), + [anon_sym_function] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_declare] = ACTIONS(762), + [anon_sym_typeset] = ACTIONS(762), + [anon_sym_export] = ACTIONS(762), + [anon_sym_readonly] = ACTIONS(762), + [anon_sym_local] = ACTIONS(762), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(768), + [anon_sym_AMP_GT] = ACTIONS(765), + [anon_sym_AMP_GT_GT] = ACTIONS(768), + [anon_sym_LT_AMP] = ACTIONS(768), + [anon_sym_GT_AMP] = ACTIONS(768), + [sym__special_characters] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(774), + [sym_raw_string] = ACTIONS(777), + [anon_sym_DOLLAR] = ACTIONS(780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(786), + [anon_sym_BQUOTE] = ACTIONS(789), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(795), + }, + [837] = { + [anon_sym_then] = ACTIONS(2959), + [sym_comment] = ACTIONS(48), + }, + [838] = { [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(202), - [anon_sym_SEMI_SEMI] = ACTIONS(3028), - [anon_sym_PIPE_AMP] = ACTIONS(202), - [anon_sym_AMP_AMP] = ACTIONS(206), - [anon_sym_PIPE_PIPE] = ACTIONS(206), + [anon_sym_for] = ACTIONS(236), + [anon_sym_while] = ACTIONS(236), + [anon_sym_if] = ACTIONS(236), + [anon_sym_fi] = ACTIONS(236), + [anon_sym_case] = ACTIONS(236), + [anon_sym_function] = ACTIONS(236), + [anon_sym_LPAREN] = ACTIONS(234), + [anon_sym_declare] = ACTIONS(236), + [anon_sym_typeset] = ACTIONS(236), + [anon_sym_export] = ACTIONS(236), + [anon_sym_readonly] = ACTIONS(236), + [anon_sym_local] = ACTIONS(236), [anon_sym_LT] = ACTIONS(236), [anon_sym_GT] = ACTIONS(236), - [anon_sym_GT_GT] = ACTIONS(236), + [anon_sym_GT_GT] = ACTIONS(234), [anon_sym_AMP_GT] = ACTIONS(236), - [anon_sym_AMP_GT_GT] = ACTIONS(236), - [anon_sym_LT_AMP] = ACTIONS(236), - [anon_sym_GT_AMP] = ACTIONS(236), - [anon_sym_DQUOTE] = ACTIONS(236), - [sym_raw_string] = ACTIONS(236), + [anon_sym_AMP_GT_GT] = ACTIONS(234), + [anon_sym_LT_AMP] = ACTIONS(234), + [anon_sym_GT_AMP] = ACTIONS(234), + [sym__special_characters] = ACTIONS(236), + [anon_sym_DQUOTE] = ACTIONS(234), + [sym_raw_string] = ACTIONS(234), [anon_sym_DOLLAR] = ACTIONS(236), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(236), - [anon_sym_BQUOTE] = ACTIONS(236), - [anon_sym_LT_LPAREN] = ACTIONS(236), - [anon_sym_GT_LPAREN] = ACTIONS(236), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(236), - [anon_sym_SEMI] = ACTIONS(3028), - [anon_sym_LF] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), + [anon_sym_BQUOTE] = ACTIONS(234), + [anon_sym_LT_LPAREN] = ACTIONS(234), + [anon_sym_GT_LPAREN] = ACTIONS(234), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(238), }, - [1273] = { - [sym__terminated_statement] = STATE(1270), - [sym_for_statement] = STATE(1271), - [sym_while_statement] = STATE(1271), - [sym_if_statement] = STATE(1271), - [sym_case_statement] = STATE(1271), - [sym_function_definition] = STATE(1271), - [sym_subshell] = STATE(1271), - [sym_pipeline] = STATE(1271), - [sym_list] = STATE(1271), - [sym_command] = STATE(1271), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(1272), - [sym_declaration_command] = STATE(1271), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(1477), - [aux_sym_command_repeat1] = STATE(29), + [839] = { + [anon_sym_PIPE] = ACTIONS(240), + [anon_sym_SEMI_SEMI] = ACTIONS(2961), + [anon_sym_PIPE_AMP] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(244), + [anon_sym_PIPE_PIPE] = ACTIONS(244), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2961), + }, + [840] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(240), + [anon_sym_SEMI_SEMI] = ACTIONS(2961), + [anon_sym_PIPE_AMP] = ACTIONS(240), + [anon_sym_AMP_AMP] = ACTIONS(244), + [anon_sym_PIPE_PIPE] = ACTIONS(244), + [anon_sym_LT] = ACTIONS(274), + [anon_sym_GT] = ACTIONS(274), + [anon_sym_GT_GT] = ACTIONS(274), + [anon_sym_AMP_GT] = ACTIONS(274), + [anon_sym_AMP_GT_GT] = ACTIONS(274), + [anon_sym_LT_AMP] = ACTIONS(274), + [anon_sym_GT_AMP] = ACTIONS(274), + [sym__special_characters] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(274), + [sym_raw_string] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(274), + [anon_sym_BQUOTE] = ACTIONS(274), + [anon_sym_LT_LPAREN] = ACTIONS(274), + [anon_sym_GT_LPAREN] = ACTIONS(274), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_LF] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2961), + }, + [841] = { + [sym__terminated_statement] = STATE(838), + [sym_for_statement] = STATE(839), + [sym_while_statement] = STATE(839), + [sym_if_statement] = STATE(839), + [sym_case_statement] = STATE(839), + [sym_function_definition] = STATE(839), + [sym_subshell] = STATE(839), + [sym_pipeline] = STATE(839), + [sym_list] = STATE(839), + [sym_command] = STATE(839), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(840), + [sym_declaration_command] = STATE(839), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(1305), + [aux_sym_command_repeat1] = STATE(30), [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(3030), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_fi] = ACTIONS(2963), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), }, - [1274] = { - [sym__terminated_statement] = STATE(1270), - [sym_for_statement] = STATE(1271), - [sym_while_statement] = STATE(1271), - [sym_if_statement] = STATE(1271), - [sym_case_statement] = STATE(1271), - [sym_function_definition] = STATE(1271), - [sym_subshell] = STATE(1271), - [sym_pipeline] = STATE(1271), - [sym_list] = STATE(1271), - [sym_command] = STATE(1271), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(1272), - [sym_declaration_command] = STATE(1271), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(1478), - [aux_sym_command_repeat1] = STATE(29), + [842] = { + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(684), + [anon_sym_for] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_fi] = ACTIONS(686), + [anon_sym_elif] = ACTIONS(686), + [anon_sym_else] = ACTIONS(686), + [anon_sym_case] = ACTIONS(686), + [anon_sym_function] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_declare] = ACTIONS(686), + [anon_sym_typeset] = ACTIONS(686), + [anon_sym_export] = ACTIONS(686), + [anon_sym_readonly] = ACTIONS(686), + [anon_sym_local] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(684), + [anon_sym_AMP_GT] = ACTIONS(686), + [anon_sym_AMP_GT_GT] = ACTIONS(684), + [anon_sym_LT_AMP] = ACTIONS(684), + [anon_sym_GT_AMP] = ACTIONS(684), + [sym__special_characters] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(684), + [sym_raw_string] = ACTIONS(684), + [anon_sym_DOLLAR] = ACTIONS(686), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(684), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(684), + [anon_sym_BQUOTE] = ACTIONS(684), + [anon_sym_LT_LPAREN] = ACTIONS(684), + [anon_sym_GT_LPAREN] = ACTIONS(684), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(688), + }, + [843] = { + [anon_sym_PIPE] = ACTIONS(2965), + [anon_sym_RPAREN] = ACTIONS(2965), + [anon_sym_SEMI_SEMI] = ACTIONS(2965), + [anon_sym_PIPE_AMP] = ACTIONS(2965), + [anon_sym_AMP_AMP] = ACTIONS(2965), + [anon_sym_PIPE_PIPE] = ACTIONS(2965), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2965), + [anon_sym_LF] = ACTIONS(2965), + [anon_sym_AMP] = ACTIONS(2965), + }, + [844] = { + [anon_sym_fi] = ACTIONS(2967), + [sym_comment] = ACTIONS(48), + }, + [845] = { + [sym__terminated_statement] = STATE(472), + [sym_for_statement] = STATE(473), + [sym_while_statement] = STATE(473), + [sym_if_statement] = STATE(473), + [sym_case_statement] = STATE(473), + [sym_function_definition] = STATE(473), + [sym_subshell] = STATE(473), + [sym_pipeline] = STATE(473), + [sym_list] = STATE(473), + [sym_command] = STATE(473), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(476), + [sym_declaration_command] = STATE(473), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(845), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(736), + [sym_variable_name] = ACTIONS(739), + [anon_sym_for] = ACTIONS(744), + [anon_sym_while] = ACTIONS(747), + [anon_sym_if] = ACTIONS(750), + [anon_sym_fi] = ACTIONS(2957), + [anon_sym_elif] = ACTIONS(2957), + [anon_sym_else] = ACTIONS(2957), + [anon_sym_case] = ACTIONS(753), + [anon_sym_function] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_declare] = ACTIONS(762), + [anon_sym_typeset] = ACTIONS(762), + [anon_sym_export] = ACTIONS(762), + [anon_sym_readonly] = ACTIONS(762), + [anon_sym_local] = ACTIONS(762), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(768), + [anon_sym_AMP_GT] = ACTIONS(765), + [anon_sym_AMP_GT_GT] = ACTIONS(768), + [anon_sym_LT_AMP] = ACTIONS(768), + [anon_sym_GT_AMP] = ACTIONS(768), + [sym__special_characters] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(774), + [sym_raw_string] = ACTIONS(777), + [anon_sym_DOLLAR] = ACTIONS(780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(786), + [anon_sym_BQUOTE] = ACTIONS(789), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(795), + }, + [846] = { + [sym_elif_clause] = STATE(474), + [sym_else_clause] = STATE(1307), + [aux_sym_if_statement_repeat1] = STATE(847), + [anon_sym_fi] = ACTIONS(2967), + [anon_sym_elif] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1801), + [sym_comment] = ACTIONS(48), + }, + [847] = { + [sym_elif_clause] = STATE(474), + [aux_sym_if_statement_repeat1] = STATE(847), + [anon_sym_fi] = ACTIONS(2969), + [anon_sym_elif] = ACTIONS(2971), + [anon_sym_else] = ACTIONS(2969), + [sym_comment] = ACTIONS(48), + }, + [848] = { + [anon_sym_PIPE] = ACTIONS(2974), + [anon_sym_RPAREN] = ACTIONS(2974), + [anon_sym_SEMI_SEMI] = ACTIONS(2974), + [anon_sym_PIPE_AMP] = ACTIONS(2974), + [anon_sym_AMP_AMP] = ACTIONS(2974), + [anon_sym_PIPE_PIPE] = ACTIONS(2974), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2974), + [anon_sym_LF] = ACTIONS(2974), + [anon_sym_AMP] = ACTIONS(2974), + }, + [849] = { + [aux_sym_case_item_repeat1] = STATE(1311), + [aux_sym_concatenation_repeat1] = STATE(1312), + [sym__concat] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_RPAREN] = ACTIONS(2980), + [sym_comment] = ACTIONS(48), + }, + [850] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(1314), + [anon_sym_DQUOTE] = ACTIONS(2982), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [851] = { + [aux_sym_case_item_repeat1] = STATE(1316), + [aux_sym_concatenation_repeat1] = STATE(1312), + [sym__concat] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_RPAREN] = ACTIONS(2984), + [sym_comment] = ACTIONS(48), + }, + [852] = { + [anon_sym_DOLLAR] = ACTIONS(2986), + [anon_sym_DASH] = ACTIONS(2986), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2986), + [anon_sym_AT] = ACTIONS(2986), + [anon_sym_QMARK] = ACTIONS(2986), + [anon_sym_0] = ACTIONS(2990), + [anon_sym__] = ACTIONS(2990), + }, + [853] = { + [sym_subscript] = STATE(1323), + [sym_variable_name] = ACTIONS(2992), + [anon_sym_DOLLAR] = ACTIONS(2994), + [anon_sym_POUND] = ACTIONS(2996), + [anon_sym_DASH] = ACTIONS(2994), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2998), + [anon_sym_STAR] = ACTIONS(2994), + [anon_sym_AT] = ACTIONS(2994), + [anon_sym_QMARK] = ACTIONS(2994), + [anon_sym_0] = ACTIONS(3000), + [anon_sym__] = ACTIONS(3000), + }, + [854] = { + [sym_for_statement] = STATE(1324), + [sym_while_statement] = STATE(1324), + [sym_if_statement] = STATE(1324), + [sym_case_statement] = STATE(1324), + [sym_function_definition] = STATE(1324), + [sym_subshell] = STATE(1324), + [sym_pipeline] = STATE(1324), + [sym_list] = STATE(1324), + [sym_command] = STATE(1324), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1325), + [sym_declaration_command] = STATE(1324), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(3030), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), }, - [1275] = { - [aux_sym_case_item_repeat1] = STATE(1275), - [anon_sym_PIPE] = ACTIONS(3032), - [anon_sym_RPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(46), - }, - [1276] = { - [aux_sym_concatenation_repeat1] = STATE(1276), - [sym__concat] = ACTIONS(1938), - [anon_sym_PIPE] = ACTIONS(675), - [anon_sym_RPAREN] = ACTIONS(675), - [sym_comment] = ACTIONS(46), - }, - [1277] = { - [sym_word] = ACTIONS(3035), - [anon_sym_esac] = ACTIONS(3037), - [anon_sym_DQUOTE] = ACTIONS(3035), - [sym_raw_string] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3035), - [anon_sym_BQUOTE] = ACTIONS(3035), - [anon_sym_LT_LPAREN] = ACTIONS(3035), - [anon_sym_GT_LPAREN] = ACTIONS(3035), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3039), - }, - [1278] = { - [sym__terminated_statement] = STATE(1270), - [sym_for_statement] = STATE(1271), - [sym_while_statement] = STATE(1271), - [sym_if_statement] = STATE(1271), - [sym_case_statement] = STATE(1271), - [sym_function_definition] = STATE(1271), - [sym_subshell] = STATE(1271), - [sym_pipeline] = STATE(1271), - [sym_list] = STATE(1271), - [sym_command] = STATE(1271), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(1272), - [sym_declaration_command] = STATE(1271), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(1477), - [aux_sym_command_repeat1] = STATE(29), + [855] = { + [sym_for_statement] = STATE(1326), + [sym_while_statement] = STATE(1326), + [sym_if_statement] = STATE(1326), + [sym_case_statement] = STATE(1326), + [sym_function_definition] = STATE(1326), + [sym_subshell] = STATE(1326), + [sym_pipeline] = STATE(1326), + [sym_list] = STATE(1326), + [sym_command] = STATE(1326), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(1327), + [sym_declaration_command] = STATE(1326), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(3041), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), }, - [1279] = { - [sym__terminated_statement] = STATE(1270), - [sym_for_statement] = STATE(1271), - [sym_while_statement] = STATE(1271), - [sym_if_statement] = STATE(1271), - [sym_case_statement] = STATE(1271), - [sym_function_definition] = STATE(1271), - [sym_subshell] = STATE(1271), - [sym_pipeline] = STATE(1271), - [sym_list] = STATE(1271), - [sym_command] = STATE(1271), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(1272), - [sym_declaration_command] = STATE(1271), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(1480), - [aux_sym_command_repeat1] = STATE(29), + [856] = { + [sym_for_statement] = STATE(1328), + [sym_while_statement] = STATE(1328), + [sym_if_statement] = STATE(1328), + [sym_case_statement] = STATE(1328), + [sym_function_definition] = STATE(1328), + [sym_subshell] = STATE(1328), + [sym_pipeline] = STATE(1328), + [sym_list] = STATE(1328), + [sym_command] = STATE(1328), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1329), + [sym_declaration_command] = STATE(1328), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(3041), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), - }, - [1280] = { - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_RPAREN] = ACTIONS(3043), - [anon_sym_SEMI_SEMI] = ACTIONS(3043), - [anon_sym_PIPE_AMP] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_PIPE_PIPE] = ACTIONS(3043), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym_LF] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - }, - [1281] = { - [anon_sym_RBRACE] = ACTIONS(3045), - [sym_comment] = ACTIONS(46), - }, - [1282] = { - [anon_sym_RBRACE] = ACTIONS(3047), - [sym_comment] = ACTIONS(46), - }, - [1283] = { - [sym__concat] = ACTIONS(2726), - [anon_sym_in] = ACTIONS(2728), - [anon_sym_SEMI_SEMI] = ACTIONS(2728), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_LF] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2728), - }, - [1284] = { - [sym__concat] = ACTIONS(2730), - [anon_sym_in] = ACTIONS(2732), - [anon_sym_SEMI_SEMI] = ACTIONS(2732), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_LF] = ACTIONS(2732), - [anon_sym_AMP] = ACTIONS(2732), - }, - [1285] = { - [sym__concat] = ACTIONS(2734), - [anon_sym_in] = ACTIONS(2736), - [anon_sym_SEMI_SEMI] = ACTIONS(2736), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_LF] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), - }, - [1286] = { - [sym__concat] = ACTIONS(2738), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_SEMI_SEMI] = ACTIONS(2740), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - }, - [1287] = { - [anon_sym_PIPE] = ACTIONS(3049), - [anon_sym_RPAREN] = ACTIONS(3049), - [anon_sym_SEMI_SEMI] = ACTIONS(3049), - [anon_sym_PIPE_AMP] = ACTIONS(3049), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_LF] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3049), - }, - [1288] = { - [sym__concat] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(677), - [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_SEMI_SEMI] = ACTIONS(677), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(677), - }, - [1289] = { - [sym__concat] = ACTIONS(679), - [anon_sym_PIPE] = ACTIONS(681), - [anon_sym_RPAREN] = ACTIONS(681), - [anon_sym_SEMI_SEMI] = ACTIONS(681), - [anon_sym_PIPE_AMP] = ACTIONS(681), - [anon_sym_AMP_AMP] = ACTIONS(681), - [anon_sym_PIPE_PIPE] = ACTIONS(681), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(681), - [anon_sym_LF] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - }, - [1290] = { - [aux_sym_concatenation_repeat1] = STATE(1290), - [sym__concat] = ACTIONS(3051), - [anon_sym_PIPE] = ACTIONS(677), - [anon_sym_SEMI_SEMI] = ACTIONS(677), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(677), - }, - [1291] = { - [sym__concat] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_RPAREN] = ACTIONS(933), - [anon_sym_SEMI_SEMI] = ACTIONS(933), - [anon_sym_PIPE_AMP] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - }, - [1292] = { - [anon_sym_RBRACE] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3056), - [sym_comment] = ACTIONS(46), - }, - [1293] = { - [anon_sym_RBRACE] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(3060), - [sym_comment] = ACTIONS(46), - }, - [1294] = { - [sym__concat] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_RPAREN] = ACTIONS(962), - [anon_sym_SEMI_SEMI] = ACTIONS(962), - [anon_sym_PIPE_AMP] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(962), - [anon_sym_PIPE_PIPE] = ACTIONS(962), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_LF] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - }, - [1295] = { - [sym_concatenation] = STATE(1490), - [sym_string] = STATE(1487), - [sym_simple_expansion] = STATE(1487), - [sym_expansion] = STATE(1487), - [sym_command_substitution] = STATE(1487), - [sym_process_substitution] = STATE(1487), - [sym_word] = ACTIONS(3062), - [anon_sym_RBRACE] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(3062), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3066), - }, - [1296] = { - [anon_sym_AT] = ACTIONS(3068), - [sym_comment] = ACTIONS(46), - }, - [1297] = { - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(974), - [anon_sym_SEMI_SEMI] = ACTIONS(974), - [anon_sym_PIPE_AMP] = ACTIONS(974), - [anon_sym_AMP_AMP] = ACTIONS(974), - [anon_sym_PIPE_PIPE] = ACTIONS(974), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_LF] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - }, - [1298] = { - [sym_concatenation] = STATE(1494), - [sym_string] = STATE(1492), - [sym_simple_expansion] = STATE(1492), - [sym_expansion] = STATE(1492), - [sym_command_substitution] = STATE(1492), - [sym_process_substitution] = STATE(1492), - [sym_word] = ACTIONS(3070), - [anon_sym_RBRACE] = ACTIONS(3058), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3072), - }, - [1299] = { - [anon_sym_AT] = ACTIONS(3074), - [sym_comment] = ACTIONS(46), - }, - [1300] = { - [sym__concat] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1068), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_SEMI_SEMI] = ACTIONS(1068), - [anon_sym_PIPE_AMP] = ACTIONS(1068), - [anon_sym_AMP_AMP] = ACTIONS(1068), - [anon_sym_PIPE_PIPE] = ACTIONS(1068), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_LF] = ACTIONS(1068), - [anon_sym_AMP] = ACTIONS(1068), - }, - [1301] = { - [sym__concat] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1124), - [anon_sym_RPAREN] = ACTIONS(1124), - [anon_sym_SEMI_SEMI] = ACTIONS(1124), - [anon_sym_PIPE_AMP] = ACTIONS(1124), - [anon_sym_AMP_AMP] = ACTIONS(1124), - [anon_sym_PIPE_PIPE] = ACTIONS(1124), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1124), - [anon_sym_LF] = ACTIONS(1124), - [anon_sym_AMP] = ACTIONS(1124), - }, - [1302] = { - [aux_sym_concatenation_repeat1] = STATE(1304), - [sym__concat] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_RPAREN] = ACTIONS(1801), - [anon_sym_SEMI_SEMI] = ACTIONS(1801), - [anon_sym_PIPE_AMP] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1801), - [anon_sym_PIPE_PIPE] = ACTIONS(1801), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_LF] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1801), - }, - [1303] = { - [aux_sym_concatenation_repeat1] = STATE(1305), - [sym__concat] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_RPAREN] = ACTIONS(1803), - [anon_sym_SEMI_SEMI] = ACTIONS(1803), - [anon_sym_PIPE_AMP] = ACTIONS(1803), - [anon_sym_AMP_AMP] = ACTIONS(1803), - [anon_sym_PIPE_PIPE] = ACTIONS(1803), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_LF] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1803), - }, - [1304] = { - [aux_sym_concatenation_repeat1] = STATE(1496), - [sym__concat] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(256), - [anon_sym_RPAREN] = ACTIONS(256), - [anon_sym_SEMI_SEMI] = ACTIONS(256), - [anon_sym_PIPE_AMP] = ACTIONS(256), - [anon_sym_AMP_AMP] = ACTIONS(256), - [anon_sym_PIPE_PIPE] = ACTIONS(256), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(256), - [anon_sym_LF] = ACTIONS(256), - [anon_sym_AMP] = ACTIONS(256), - }, - [1305] = { - [aux_sym_concatenation_repeat1] = STATE(1496), - [sym__concat] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(544), - [anon_sym_SEMI_SEMI] = ACTIONS(544), - [anon_sym_PIPE_AMP] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(544), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(544), - [anon_sym_LF] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(544), - }, - [1306] = { - [aux_sym_concatenation_repeat1] = STATE(1306), - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(2665), - [sym_variable_name] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(677), - [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_SEMI_SEMI] = ACTIONS(677), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(677), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(677), - }, - [1307] = { - [sym_word] = ACTIONS(1532), - [sym__concat] = ACTIONS(1532), - [sym_variable_name] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(1534), - [anon_sym_RPAREN] = ACTIONS(1534), - [anon_sym_SEMI_SEMI] = ACTIONS(1534), - [anon_sym_PIPE_AMP] = ACTIONS(1534), - [anon_sym_AMP_AMP] = ACTIONS(1534), - [anon_sym_PIPE_PIPE] = ACTIONS(1534), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1534), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_LF] = ACTIONS(1534), - [anon_sym_AMP] = ACTIONS(1534), - }, - [1308] = { - [anon_sym_AT] = ACTIONS(3076), - [sym_comment] = ACTIONS(46), - }, - [1309] = { - [sym_word] = ACTIONS(1538), - [sym__concat] = ACTIONS(1538), - [sym_variable_name] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_RPAREN] = ACTIONS(1540), - [anon_sym_SEMI_SEMI] = ACTIONS(1540), - [anon_sym_PIPE_AMP] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1540), - [anon_sym_PIPE_PIPE] = ACTIONS(1540), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_LF] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1540), - }, - [1310] = { - [anon_sym_AT] = ACTIONS(3078), - [sym_comment] = ACTIONS(46), - }, - [1311] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(3080), - [anon_sym_RBRACE] = ACTIONS(3082), - [sym_comment] = ACTIONS(46), - }, - [1312] = { - [sym_word] = ACTIONS(1548), - [sym__concat] = ACTIONS(1548), - [sym_variable_name] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [anon_sym_PIPE_AMP] = ACTIONS(1550), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1550), - }, - [1313] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(3084), - [anon_sym_RBRACE] = ACTIONS(3086), - [sym_comment] = ACTIONS(46), - }, - [1314] = { - [sym__concat] = ACTIONS(3088), - [anon_sym_RBRACE] = ACTIONS(3082), - [sym_comment] = ACTIONS(46), - }, - [1315] = { - [anon_sym_RBRACK] = ACTIONS(3088), - [sym_comment] = ACTIONS(46), - }, - [1316] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(3090), - [anon_sym_RBRACE] = ACTIONS(3092), - [sym_comment] = ACTIONS(46), - }, - [1317] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(3094), - [anon_sym_RBRACE] = ACTIONS(3096), - [sym_comment] = ACTIONS(46), - }, - [1318] = { - [sym__concat] = ACTIONS(3098), - [anon_sym_RBRACE] = ACTIONS(3092), - [sym_comment] = ACTIONS(46), - }, - [1319] = { - [anon_sym_RBRACK] = ACTIONS(3098), - [sym_comment] = ACTIONS(46), - }, - [1320] = { - [anon_sym_RBRACE] = ACTIONS(3100), - [sym_comment] = ACTIONS(46), - }, - [1321] = { - [anon_sym_RBRACE] = ACTIONS(3102), - [sym_comment] = ACTIONS(46), - }, - [1322] = { - [sym_file_descriptor] = ACTIONS(2726), - [sym_word] = ACTIONS(2726), - [sym__concat] = ACTIONS(2726), - [sym_variable_name] = ACTIONS(2726), - [anon_sym_LT] = ACTIONS(3104), - [anon_sym_GT] = ACTIONS(3104), - [anon_sym_GT_GT] = ACTIONS(2726), - [anon_sym_AMP_GT] = ACTIONS(3104), - [anon_sym_AMP_GT_GT] = ACTIONS(2726), - [anon_sym_LT_AMP] = ACTIONS(2726), - [anon_sym_GT_AMP] = ACTIONS(2726), - [anon_sym_DQUOTE] = ACTIONS(2726), - [sym_raw_string] = ACTIONS(2726), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2726), - [anon_sym_BQUOTE] = ACTIONS(2726), - [anon_sym_LT_LPAREN] = ACTIONS(2726), - [anon_sym_GT_LPAREN] = ACTIONS(2726), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3104), - }, - [1323] = { - [sym_file_descriptor] = ACTIONS(2730), - [sym_word] = ACTIONS(2730), - [sym__concat] = ACTIONS(2730), - [sym_variable_name] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_GT] = ACTIONS(3106), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_AMP_GT] = ACTIONS(3106), - [anon_sym_AMP_GT_GT] = ACTIONS(2730), - [anon_sym_LT_AMP] = ACTIONS(2730), - [anon_sym_GT_AMP] = ACTIONS(2730), - [anon_sym_DQUOTE] = ACTIONS(2730), - [sym_raw_string] = ACTIONS(2730), - [anon_sym_DOLLAR] = ACTIONS(3106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2730), - [anon_sym_BQUOTE] = ACTIONS(2730), - [anon_sym_LT_LPAREN] = ACTIONS(2730), - [anon_sym_GT_LPAREN] = ACTIONS(2730), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3106), - }, - [1324] = { - [sym_file_descriptor] = ACTIONS(2734), - [sym_word] = ACTIONS(2734), - [sym__concat] = ACTIONS(2734), - [sym_variable_name] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(3108), - [anon_sym_GT] = ACTIONS(3108), - [anon_sym_GT_GT] = ACTIONS(2734), - [anon_sym_AMP_GT] = ACTIONS(3108), - [anon_sym_AMP_GT_GT] = ACTIONS(2734), - [anon_sym_LT_AMP] = ACTIONS(2734), - [anon_sym_GT_AMP] = ACTIONS(2734), - [anon_sym_DQUOTE] = ACTIONS(2734), - [sym_raw_string] = ACTIONS(2734), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2734), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2734), - [anon_sym_BQUOTE] = ACTIONS(2734), - [anon_sym_LT_LPAREN] = ACTIONS(2734), - [anon_sym_GT_LPAREN] = ACTIONS(2734), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3108), - }, - [1325] = { - [sym_file_descriptor] = ACTIONS(2738), - [sym_word] = ACTIONS(2738), - [sym__concat] = ACTIONS(2738), - [sym_variable_name] = ACTIONS(2738), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3110), - [anon_sym_GT_GT] = ACTIONS(2738), - [anon_sym_AMP_GT] = ACTIONS(3110), - [anon_sym_AMP_GT_GT] = ACTIONS(2738), - [anon_sym_LT_AMP] = ACTIONS(2738), - [anon_sym_GT_AMP] = ACTIONS(2738), - [anon_sym_DQUOTE] = ACTIONS(2738), - [sym_raw_string] = ACTIONS(2738), - [anon_sym_DOLLAR] = ACTIONS(3110), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2738), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2738), - [anon_sym_BQUOTE] = ACTIONS(2738), - [anon_sym_LT_LPAREN] = ACTIONS(2738), - [anon_sym_GT_LPAREN] = ACTIONS(2738), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3110), - }, - [1326] = { - [anon_sym_RBRACE] = ACTIONS(3112), - [sym_comment] = ACTIONS(46), - }, - [1327] = { - [anon_sym_RBRACE] = ACTIONS(3114), - [sym_comment] = ACTIONS(46), - }, - [1328] = { - [anon_sym_DQUOTE] = ACTIONS(2728), - [sym__string_content] = ACTIONS(2728), - [anon_sym_DOLLAR] = ACTIONS(2728), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2728), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2728), - [anon_sym_BQUOTE] = ACTIONS(2728), - [sym_comment] = ACTIONS(60), - }, - [1329] = { - [anon_sym_DQUOTE] = ACTIONS(2732), - [sym__string_content] = ACTIONS(2732), - [anon_sym_DOLLAR] = ACTIONS(2732), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2732), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2732), - [anon_sym_BQUOTE] = ACTIONS(2732), - [sym_comment] = ACTIONS(60), - }, - [1330] = { - [anon_sym_DQUOTE] = ACTIONS(2736), - [sym__string_content] = ACTIONS(2736), - [anon_sym_DOLLAR] = ACTIONS(2736), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2736), - [anon_sym_BQUOTE] = ACTIONS(2736), - [sym_comment] = ACTIONS(60), - }, - [1331] = { - [anon_sym_DQUOTE] = ACTIONS(2740), - [sym__string_content] = ACTIONS(2740), - [anon_sym_DOLLAR] = ACTIONS(2740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2740), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2740), - [anon_sym_BQUOTE] = ACTIONS(2740), - [sym_comment] = ACTIONS(60), - }, - [1332] = { - [sym_file_descriptor] = ACTIONS(3116), - [sym_word] = ACTIONS(3116), - [sym__concat] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_SEMI_SEMI] = ACTIONS(3118), - [anon_sym_PIPE_AMP] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3118), - [anon_sym_GT_GT] = ACTIONS(3118), - [anon_sym_AMP_GT] = ACTIONS(3118), - [anon_sym_AMP_GT_GT] = ACTIONS(3118), - [anon_sym_LT_AMP] = ACTIONS(3118), - [anon_sym_GT_AMP] = ACTIONS(3118), - [anon_sym_LT_LT] = ACTIONS(3118), - [anon_sym_LT_LT_DASH] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym_raw_string] = ACTIONS(3118), - [anon_sym_DOLLAR] = ACTIONS(3118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3118), - [anon_sym_BQUOTE] = ACTIONS(3118), - [anon_sym_LT_LPAREN] = ACTIONS(3118), - [anon_sym_GT_LPAREN] = ACTIONS(3118), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(3118), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_LF] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3118), - }, - [1333] = { - [sym_file_descriptor] = ACTIONS(3120), - [sym_word] = ACTIONS(3120), - [sym__concat] = ACTIONS(3120), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_RPAREN] = ACTIONS(3122), - [anon_sym_SEMI_SEMI] = ACTIONS(3122), - [anon_sym_PIPE_AMP] = ACTIONS(3122), - [anon_sym_AMP_AMP] = ACTIONS(3122), - [anon_sym_PIPE_PIPE] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_GT_GT] = ACTIONS(3122), - [anon_sym_AMP_GT] = ACTIONS(3122), - [anon_sym_AMP_GT_GT] = ACTIONS(3122), - [anon_sym_LT_AMP] = ACTIONS(3122), - [anon_sym_GT_AMP] = ACTIONS(3122), - [anon_sym_LT_LT] = ACTIONS(3122), - [anon_sym_LT_LT_DASH] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [sym_raw_string] = ACTIONS(3122), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3122), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3122), - [anon_sym_BQUOTE] = ACTIONS(3122), - [anon_sym_LT_LPAREN] = ACTIONS(3122), - [anon_sym_GT_LPAREN] = ACTIONS(3122), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(3122), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_LF] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3122), - }, - [1334] = { - [sym_file_descriptor] = ACTIONS(1532), - [sym_word] = ACTIONS(1532), - [sym__concat] = ACTIONS(1532), - [sym_variable_name] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(2145), - [anon_sym_RPAREN] = ACTIONS(1532), - [anon_sym_PIPE_AMP] = ACTIONS(1532), - [anon_sym_AMP_AMP] = ACTIONS(1532), - [anon_sym_PIPE_PIPE] = ACTIONS(1532), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_GT] = ACTIONS(2145), - [anon_sym_GT_GT] = ACTIONS(1532), - [anon_sym_AMP_GT] = ACTIONS(2145), - [anon_sym_AMP_GT_GT] = ACTIONS(1532), - [anon_sym_LT_AMP] = ACTIONS(1532), - [anon_sym_GT_AMP] = ACTIONS(1532), - [anon_sym_DQUOTE] = ACTIONS(1532), - [sym_raw_string] = ACTIONS(1532), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1532), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1532), - [anon_sym_BQUOTE] = ACTIONS(1532), - [anon_sym_LT_LPAREN] = ACTIONS(1532), - [anon_sym_GT_LPAREN] = ACTIONS(1532), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2145), - }, - [1335] = { - [anon_sym_AT] = ACTIONS(3124), - [sym_comment] = ACTIONS(46), - }, - [1336] = { - [sym_file_descriptor] = ACTIONS(1538), - [sym_word] = ACTIONS(1538), - [sym__concat] = ACTIONS(1538), - [sym_variable_name] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_PIPE_AMP] = ACTIONS(1538), - [anon_sym_AMP_AMP] = ACTIONS(1538), - [anon_sym_PIPE_PIPE] = ACTIONS(1538), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_GT] = ACTIONS(2149), - [anon_sym_GT_GT] = ACTIONS(1538), - [anon_sym_AMP_GT] = ACTIONS(2149), - [anon_sym_AMP_GT_GT] = ACTIONS(1538), - [anon_sym_LT_AMP] = ACTIONS(1538), - [anon_sym_GT_AMP] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1538), - [sym_raw_string] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(2149), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1538), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1538), - [anon_sym_BQUOTE] = ACTIONS(1538), - [anon_sym_LT_LPAREN] = ACTIONS(1538), - [anon_sym_GT_LPAREN] = ACTIONS(1538), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2149), - }, - [1337] = { - [anon_sym_AT] = ACTIONS(3126), - [sym_comment] = ACTIONS(46), - }, - [1338] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(3128), - [anon_sym_RBRACE] = ACTIONS(3130), - [sym_comment] = ACTIONS(46), - }, - [1339] = { - [sym_file_descriptor] = ACTIONS(1548), - [sym_word] = ACTIONS(1548), - [sym__concat] = ACTIONS(1548), - [sym_variable_name] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(2157), - [anon_sym_RPAREN] = ACTIONS(1548), - [anon_sym_PIPE_AMP] = ACTIONS(1548), - [anon_sym_AMP_AMP] = ACTIONS(1548), - [anon_sym_PIPE_PIPE] = ACTIONS(1548), - [anon_sym_LT] = ACTIONS(2157), - [anon_sym_GT] = ACTIONS(2157), - [anon_sym_GT_GT] = ACTIONS(1548), - [anon_sym_AMP_GT] = ACTIONS(2157), - [anon_sym_AMP_GT_GT] = ACTIONS(1548), - [anon_sym_LT_AMP] = ACTIONS(1548), - [anon_sym_GT_AMP] = ACTIONS(1548), - [anon_sym_DQUOTE] = ACTIONS(1548), - [sym_raw_string] = ACTIONS(1548), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1548), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1548), - [anon_sym_BQUOTE] = ACTIONS(1548), - [anon_sym_LT_LPAREN] = ACTIONS(1548), - [anon_sym_GT_LPAREN] = ACTIONS(1548), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2157), - }, - [1340] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(3132), - [anon_sym_RBRACE] = ACTIONS(3134), - [sym_comment] = ACTIONS(46), - }, - [1341] = { - [sym__concat] = ACTIONS(3136), - [anon_sym_RBRACE] = ACTIONS(3130), - [sym_comment] = ACTIONS(46), - }, - [1342] = { - [anon_sym_RBRACK] = ACTIONS(3136), - [sym_comment] = ACTIONS(46), - }, - [1343] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(3138), - [anon_sym_RBRACE] = ACTIONS(3140), - [sym_comment] = ACTIONS(46), - }, - [1344] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(3142), - [anon_sym_RBRACE] = ACTIONS(3144), - [sym_comment] = ACTIONS(46), - }, - [1345] = { - [sym__concat] = ACTIONS(3146), - [anon_sym_RBRACE] = ACTIONS(3140), - [sym_comment] = ACTIONS(46), - }, - [1346] = { - [anon_sym_RBRACK] = ACTIONS(3146), - [sym_comment] = ACTIONS(46), - }, - [1347] = { - [anon_sym_PIPE] = ACTIONS(3148), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_PIPE_AMP] = ACTIONS(3150), - [anon_sym_AMP_AMP] = ACTIONS(3150), - [anon_sym_PIPE_PIPE] = ACTIONS(3150), - [anon_sym_BQUOTE] = ACTIONS(3150), - [sym_comment] = ACTIONS(46), - }, - [1348] = { - [anon_sym_PIPE] = ACTIONS(3152), - [anon_sym_RPAREN] = ACTIONS(3154), - [anon_sym_PIPE_AMP] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_comment] = ACTIONS(46), - }, - [1349] = { - [anon_sym_fi] = ACTIONS(3156), - [sym_comment] = ACTIONS(46), - }, - [1350] = { - [anon_sym_PIPE] = ACTIONS(3158), - [anon_sym_RPAREN] = ACTIONS(3160), - [anon_sym_PIPE_AMP] = ACTIONS(3160), - [anon_sym_AMP_AMP] = ACTIONS(3160), - [anon_sym_PIPE_PIPE] = ACTIONS(3160), - [anon_sym_BQUOTE] = ACTIONS(3160), - [sym_comment] = ACTIONS(46), - }, - [1351] = { - [sym_case_item] = STATE(710), - [sym_concatenation] = STATE(711), - [sym_string] = STATE(707), - [sym_simple_expansion] = STATE(707), - [sym_expansion] = STATE(707), - [sym_command_substitution] = STATE(707), - [sym_process_substitution] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(1007), - [sym_word] = ACTIONS(1354), - [anon_sym_esac] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1358), - }, - [1352] = { - [anon_sym_PIPE] = ACTIONS(3164), - [anon_sym_RPAREN] = ACTIONS(3166), - [anon_sym_PIPE_AMP] = ACTIONS(3166), - [anon_sym_AMP_AMP] = ACTIONS(3166), - [anon_sym_PIPE_PIPE] = ACTIONS(3166), - [anon_sym_BQUOTE] = ACTIONS(3166), - [sym_comment] = ACTIONS(46), - }, - [1353] = { - [sym_case_item] = STATE(710), - [sym_concatenation] = STATE(711), - [sym_string] = STATE(707), - [sym_simple_expansion] = STATE(707), - [sym_expansion] = STATE(707), - [sym_command_substitution] = STATE(707), - [sym_process_substitution] = STATE(707), - [aux_sym_case_statement_repeat1] = STATE(1007), - [sym_word] = ACTIONS(1354), - [anon_sym_esac] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1358), - }, - [1354] = { - [anon_sym_PIPE] = ACTIONS(3170), - [anon_sym_RPAREN] = ACTIONS(3172), - [anon_sym_PIPE_AMP] = ACTIONS(3172), - [anon_sym_AMP_AMP] = ACTIONS(3172), - [anon_sym_PIPE_PIPE] = ACTIONS(3172), - [anon_sym_BQUOTE] = ACTIONS(3172), - [sym_comment] = ACTIONS(46), - }, - [1355] = { - [aux_sym_concatenation_repeat1] = STATE(1359), - [sym__concat] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(669), - [anon_sym_RPAREN] = ACTIONS(667), - [anon_sym_PIPE_AMP] = ACTIONS(667), - [anon_sym_AMP_AMP] = ACTIONS(667), - [anon_sym_PIPE_PIPE] = ACTIONS(667), - [sym_comment] = ACTIONS(46), - }, - [1356] = { + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [857] = { + [anon_sym_esac] = ACTIONS(3002), + [sym__special_characters] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3004), + [sym_raw_string] = ACTIONS(3004), + [anon_sym_DOLLAR] = ACTIONS(3002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3004), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3004), + [anon_sym_BQUOTE] = ACTIONS(3004), + [anon_sym_LT_LPAREN] = ACTIONS(3004), + [anon_sym_GT_LPAREN] = ACTIONS(3004), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3006), + }, + [858] = { + [aux_sym_case_item_repeat1] = STATE(1316), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_RPAREN] = ACTIONS(2984), + [sym_comment] = ACTIONS(48), + }, + [859] = { + [sym_case_item] = STATE(857), + [sym_concatenation] = STATE(858), + [sym_string] = STATE(851), + [sym_simple_expansion] = STATE(851), + [sym_expansion] = STATE(851), + [sym_command_substitution] = STATE(851), + [sym_process_substitution] = STATE(851), + [aux_sym_case_statement_repeat1] = STATE(1331), + [anon_sym_esac] = ACTIONS(3008), + [sym__special_characters] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1807), + [sym_raw_string] = ACTIONS(1809), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1815), + [anon_sym_BQUOTE] = ACTIONS(1817), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1821), + }, + [860] = { + [sym_case_item] = STATE(857), + [sym_concatenation] = STATE(858), + [sym_string] = STATE(851), + [sym_simple_expansion] = STATE(851), + [sym_expansion] = STATE(851), + [sym_command_substitution] = STATE(851), + [sym_process_substitution] = STATE(851), + [aux_sym_case_statement_repeat1] = STATE(1332), + [anon_sym_esac] = ACTIONS(3008), + [sym__special_characters] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1807), + [sym_raw_string] = ACTIONS(1809), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1815), + [anon_sym_BQUOTE] = ACTIONS(1817), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1821), + }, + [861] = { + [anon_sym_PIPE] = ACTIONS(3010), + [anon_sym_RPAREN] = ACTIONS(3010), + [anon_sym_SEMI_SEMI] = ACTIONS(3010), + [anon_sym_PIPE_AMP] = ACTIONS(3010), + [anon_sym_AMP_AMP] = ACTIONS(3010), + [anon_sym_PIPE_PIPE] = ACTIONS(3010), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3010), + [anon_sym_LF] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3010), + }, + [862] = { + [sym_case_item] = STATE(857), + [sym_concatenation] = STATE(858), + [sym_string] = STATE(851), + [sym_simple_expansion] = STATE(851), + [sym_expansion] = STATE(851), + [sym_command_substitution] = STATE(851), + [sym_process_substitution] = STATE(851), + [aux_sym_case_statement_repeat1] = STATE(1331), + [anon_sym_esac] = ACTIONS(3012), + [sym__special_characters] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1807), + [sym_raw_string] = ACTIONS(1809), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1815), + [anon_sym_BQUOTE] = ACTIONS(1817), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1821), + }, + [863] = { + [sym_case_item] = STATE(857), + [sym_concatenation] = STATE(858), + [sym_string] = STATE(851), + [sym_simple_expansion] = STATE(851), + [sym_expansion] = STATE(851), + [sym_command_substitution] = STATE(851), + [sym_process_substitution] = STATE(851), + [aux_sym_case_statement_repeat1] = STATE(1334), + [anon_sym_esac] = ACTIONS(3012), + [sym__special_characters] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1807), + [sym_raw_string] = ACTIONS(1809), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1815), + [anon_sym_BQUOTE] = ACTIONS(1817), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1821), + }, + [864] = { + [sym__concat] = ACTIONS(2176), + [anon_sym_in] = ACTIONS(2178), + [anon_sym_SEMI_SEMI] = ACTIONS(2178), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_LF] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + }, + [865] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3014), + [sym_comment] = ACTIONS(48), + }, + [866] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3016), + [sym_comment] = ACTIONS(48), + }, + [867] = { + [anon_sym_RBRACE] = ACTIONS(3016), + [sym_comment] = ACTIONS(48), + }, + [868] = { + [sym__concat] = ACTIONS(2214), + [anon_sym_in] = ACTIONS(2216), + [anon_sym_SEMI_SEMI] = ACTIONS(2216), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_LF] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2216), + }, + [869] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3018), + [sym_comment] = ACTIONS(48), + }, + [870] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3020), + [sym_comment] = ACTIONS(48), + }, + [871] = { + [anon_sym_RBRACE] = ACTIONS(3020), + [sym_comment] = ACTIONS(48), + }, + [872] = { + [sym_concatenation] = STATE(1341), + [sym_string] = STATE(1340), + [sym_simple_expansion] = STATE(1340), + [sym_expansion] = STATE(1340), + [sym_command_substitution] = STATE(1340), + [sym_process_substitution] = STATE(1340), + [anon_sym_RBRACE] = ACTIONS(3016), + [sym__special_characters] = ACTIONS(3022), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3024), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3026), + }, + [873] = { + [sym__concat] = ACTIONS(2228), + [anon_sym_in] = ACTIONS(2230), + [anon_sym_SEMI_SEMI] = ACTIONS(2230), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_LF] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2230), + }, + [874] = { + [sym_concatenation] = STATE(1345), + [sym_string] = STATE(1344), + [sym_simple_expansion] = STATE(1344), + [sym_expansion] = STATE(1344), + [sym_command_substitution] = STATE(1344), + [sym_process_substitution] = STATE(1344), + [anon_sym_RBRACE] = ACTIONS(3028), + [sym__special_characters] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3032), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3034), + }, + [875] = { + [sym__concat] = ACTIONS(2240), + [anon_sym_in] = ACTIONS(2242), + [anon_sym_SEMI_SEMI] = ACTIONS(2242), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_LF] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + }, + [876] = { + [sym_concatenation] = STATE(1349), + [sym_string] = STATE(1348), + [sym_simple_expansion] = STATE(1348), + [sym_expansion] = STATE(1348), + [sym_command_substitution] = STATE(1348), + [sym_process_substitution] = STATE(1348), + [anon_sym_RBRACE] = ACTIONS(3036), + [sym__special_characters] = ACTIONS(3038), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3040), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3042), + }, + [877] = { + [sym__concat] = ACTIONS(2252), + [anon_sym_in] = ACTIONS(2254), + [anon_sym_SEMI_SEMI] = ACTIONS(2254), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LF] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + }, + [878] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3044), + [sym_comment] = ACTIONS(48), + }, + [879] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3046), + [sym_comment] = ACTIONS(48), + }, + [880] = { + [anon_sym_RBRACE] = ACTIONS(3046), + [sym_comment] = ACTIONS(48), + }, + [881] = { + [sym_file_redirect] = STATE(1352), + [sym_file_descriptor] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(3048), + [anon_sym_SEMI_SEMI] = ACTIONS(3048), + [anon_sym_PIPE_AMP] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_PIPE_PIPE] = ACTIONS(3048), + [anon_sym_LT] = ACTIONS(982), + [anon_sym_GT] = ACTIONS(982), + [anon_sym_GT_GT] = ACTIONS(982), + [anon_sym_AMP_GT] = ACTIONS(982), + [anon_sym_AMP_GT_GT] = ACTIONS(982), + [anon_sym_LT_AMP] = ACTIONS(982), + [anon_sym_GT_AMP] = ACTIONS(982), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3048), + [anon_sym_LF] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3048), + }, + [882] = { + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(684), + [anon_sym_for] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_case] = ACTIONS(686), + [anon_sym_function] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(684), + [anon_sym_declare] = ACTIONS(686), + [anon_sym_typeset] = ACTIONS(686), + [anon_sym_export] = ACTIONS(686), + [anon_sym_readonly] = ACTIONS(686), + [anon_sym_local] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(684), + [anon_sym_AMP_GT] = ACTIONS(686), + [anon_sym_AMP_GT_GT] = ACTIONS(684), + [anon_sym_LT_AMP] = ACTIONS(684), + [anon_sym_GT_AMP] = ACTIONS(684), + [sym__special_characters] = ACTIONS(688), + [anon_sym_DQUOTE] = ACTIONS(684), + [sym_raw_string] = ACTIONS(684), + [anon_sym_DOLLAR] = ACTIONS(686), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(684), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(684), + [anon_sym_BQUOTE] = ACTIONS(684), + [anon_sym_LT_LPAREN] = ACTIONS(684), + [anon_sym_GT_LPAREN] = ACTIONS(684), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(688), + }, + [883] = { + [sym_file_descriptor] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(3052), + [anon_sym_RPAREN] = ACTIONS(3052), + [anon_sym_SEMI_SEMI] = ACTIONS(3052), + [anon_sym_PIPE_AMP] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3052), + [anon_sym_GT] = ACTIONS(3052), + [anon_sym_GT_GT] = ACTIONS(3052), + [anon_sym_AMP_GT] = ACTIONS(3052), + [anon_sym_AMP_GT_GT] = ACTIONS(3052), + [anon_sym_LT_AMP] = ACTIONS(3052), + [anon_sym_GT_AMP] = ACTIONS(3052), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_LF] = ACTIONS(3052), + [anon_sym_AMP] = ACTIONS(3052), + }, + [884] = { + [sym__terminated_statement] = STATE(500), + [sym_for_statement] = STATE(501), + [sym_while_statement] = STATE(501), + [sym_if_statement] = STATE(501), + [sym_case_statement] = STATE(501), + [sym_function_definition] = STATE(501), + [sym_subshell] = STATE(501), + [sym_pipeline] = STATE(501), + [sym_list] = STATE(501), + [sym_command] = STATE(501), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(502), + [sym_declaration_command] = STATE(501), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(884), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(736), + [sym_variable_name] = ACTIONS(739), + [anon_sym_for] = ACTIONS(744), + [anon_sym_while] = ACTIONS(747), + [anon_sym_if] = ACTIONS(750), + [anon_sym_case] = ACTIONS(753), + [anon_sym_function] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_declare] = ACTIONS(762), + [anon_sym_typeset] = ACTIONS(762), + [anon_sym_export] = ACTIONS(762), + [anon_sym_readonly] = ACTIONS(762), + [anon_sym_local] = ACTIONS(762), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(768), + [anon_sym_AMP_GT] = ACTIONS(765), + [anon_sym_AMP_GT_GT] = ACTIONS(768), + [anon_sym_LT_AMP] = ACTIONS(768), + [anon_sym_GT_AMP] = ACTIONS(768), + [sym__special_characters] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(774), + [sym_raw_string] = ACTIONS(777), + [anon_sym_DOLLAR] = ACTIONS(780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(786), + [anon_sym_BQUOTE] = ACTIONS(789), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(795), + }, + [885] = { + [sym_concatenation] = STATE(1355), + [sym_string] = STATE(1354), + [sym_simple_expansion] = STATE(1354), + [sym_expansion] = STATE(1354), + [sym_command_substitution] = STATE(1354), + [sym_process_substitution] = STATE(1354), + [sym__special_characters] = ACTIONS(3057), + [anon_sym_DQUOTE] = ACTIONS(1886), + [sym_raw_string] = ACTIONS(3059), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1896), + [anon_sym_LT_LPAREN] = ACTIONS(1898), + [anon_sym_GT_LPAREN] = ACTIONS(1898), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3061), + }, + [886] = { + [aux_sym_concatenation_repeat1] = STATE(1357), + [sym__concat] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_SEMI_SEMI] = ACTIONS(1529), + [anon_sym_PIPE_AMP] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1529), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1529), + [anon_sym_LF] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1529), + }, + [887] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(1359), + [anon_sym_DQUOTE] = ACTIONS(3065), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [888] = { + [aux_sym_concatenation_repeat1] = STATE(1357), + [sym__concat] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_SEMI_SEMI] = ACTIONS(1533), + [anon_sym_PIPE_AMP] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1533), + [anon_sym_PIPE_PIPE] = ACTIONS(1533), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_LF] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + }, + [889] = { + [anon_sym_DOLLAR] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3067), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_AT] = ACTIONS(3067), + [anon_sym_QMARK] = ACTIONS(3067), + [anon_sym_0] = ACTIONS(3071), + [anon_sym__] = ACTIONS(3071), + }, + [890] = { + [sym_subscript] = STATE(1366), + [sym_variable_name] = ACTIONS(3073), + [anon_sym_DOLLAR] = ACTIONS(3075), + [anon_sym_POUND] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3075), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(3075), + [anon_sym_AT] = ACTIONS(3075), + [anon_sym_QMARK] = ACTIONS(3075), + [anon_sym_0] = ACTIONS(3081), + [anon_sym__] = ACTIONS(3081), + }, + [891] = { + [sym_for_statement] = STATE(1367), + [sym_while_statement] = STATE(1367), + [sym_if_statement] = STATE(1367), + [sym_case_statement] = STATE(1367), + [sym_function_definition] = STATE(1367), + [sym_subshell] = STATE(1367), + [sym_pipeline] = STATE(1367), + [sym_list] = STATE(1367), + [sym_command] = STATE(1367), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1368), + [sym_declaration_command] = STATE(1367), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [892] = { + [sym_for_statement] = STATE(1369), + [sym_while_statement] = STATE(1369), + [sym_if_statement] = STATE(1369), + [sym_case_statement] = STATE(1369), + [sym_function_definition] = STATE(1369), + [sym_subshell] = STATE(1369), + [sym_pipeline] = STATE(1369), + [sym_list] = STATE(1369), + [sym_command] = STATE(1369), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(1370), + [sym_declaration_command] = STATE(1369), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), + }, + [893] = { + [sym_for_statement] = STATE(1371), + [sym_while_statement] = STATE(1371), + [sym_if_statement] = STATE(1371), + [sym_case_statement] = STATE(1371), + [sym_function_definition] = STATE(1371), + [sym_subshell] = STATE(1371), + [sym_pipeline] = STATE(1371), + [sym_list] = STATE(1371), + [sym_command] = STATE(1371), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1372), + [sym_declaration_command] = STATE(1371), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [894] = { + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_RPAREN] = ACTIONS(1533), + [anon_sym_SEMI_SEMI] = ACTIONS(1533), + [anon_sym_PIPE_AMP] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1533), + [anon_sym_PIPE_PIPE] = ACTIONS(1533), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_LF] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + }, + [895] = { + [sym_string] = STATE(1373), + [sym_simple_expansion] = STATE(1373), + [sym_expansion] = STATE(1373), + [sym_command_substitution] = STATE(1373), + [sym_process_substitution] = STATE(1373), + [sym__special_characters] = ACTIONS(3083), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_raw_string] = ACTIONS(3085), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(992), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(994), + [anon_sym_BQUOTE] = ACTIONS(996), + [anon_sym_LT_LPAREN] = ACTIONS(998), + [anon_sym_GT_LPAREN] = ACTIONS(998), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3083), + }, + [896] = { [aux_sym_concatenation_repeat1] = STATE(1374), - [sym__concat] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_RPAREN] = ACTIONS(671), - [anon_sym_PIPE_AMP] = ACTIONS(671), - [anon_sym_AMP_AMP] = ACTIONS(671), - [anon_sym_PIPE_PIPE] = ACTIONS(671), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(478), + [sym__concat] = ACTIONS(1904), + [sym_variable_name] = ACTIONS(478), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(480), + [anon_sym_SEMI_SEMI] = ACTIONS(480), + [anon_sym_PIPE_AMP] = ACTIONS(480), + [anon_sym_AMP_AMP] = ACTIONS(480), + [anon_sym_PIPE_PIPE] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_GT_GT] = ACTIONS(480), + [anon_sym_AMP_GT] = ACTIONS(480), + [anon_sym_AMP_GT_GT] = ACTIONS(480), + [anon_sym_LT_AMP] = ACTIONS(480), + [anon_sym_GT_AMP] = ACTIONS(480), + [sym__special_characters] = ACTIONS(480), + [anon_sym_DQUOTE] = ACTIONS(480), + [sym_raw_string] = ACTIONS(480), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(480), + [anon_sym_BQUOTE] = ACTIONS(480), + [anon_sym_LT_LPAREN] = ACTIONS(480), + [anon_sym_GT_LPAREN] = ACTIONS(480), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(480), + [anon_sym_SEMI] = ACTIONS(480), + [anon_sym_LF] = ACTIONS(480), + [anon_sym_AMP] = ACTIONS(480), }, - [1357] = { - [anon_sym_PIPE] = ACTIONS(669), - [anon_sym_RPAREN] = ACTIONS(667), - [anon_sym_PIPE_AMP] = ACTIONS(667), - [anon_sym_AMP_AMP] = ACTIONS(667), - [anon_sym_PIPE_PIPE] = ACTIONS(667), - [anon_sym_BQUOTE] = ACTIONS(667), - [sym_comment] = ACTIONS(46), - }, - [1358] = { - [sym_string] = STATE(1528), - [sym_simple_expansion] = STATE(1528), - [sym_expansion] = STATE(1528), - [sym_command_substitution] = STATE(1528), - [sym_process_substitution] = STATE(1528), - [sym_word] = ACTIONS(3174), - [anon_sym_DQUOTE] = ACTIONS(2293), - [sym_raw_string] = ACTIONS(3174), - [anon_sym_DOLLAR] = ACTIONS(2295), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2297), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2299), - [anon_sym_BQUOTE] = ACTIONS(2301), - [anon_sym_LT_LPAREN] = ACTIONS(2303), - [anon_sym_GT_LPAREN] = ACTIONS(2303), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3176), - }, - [1359] = { - [aux_sym_concatenation_repeat1] = STATE(1530), - [sym__concat] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_RPAREN] = ACTIONS(254), - [anon_sym_PIPE_AMP] = ACTIONS(254), - [anon_sym_AMP_AMP] = ACTIONS(254), - [anon_sym_PIPE_PIPE] = ACTIONS(254), - [sym_comment] = ACTIONS(46), - }, - [1360] = { - [sym__concat] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(394), - [anon_sym_PIPE_AMP] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_BQUOTE] = ACTIONS(394), - [sym_comment] = ACTIONS(46), - }, - [1361] = { - [sym_simple_expansion] = STATE(77), - [sym_expansion] = STATE(77), - [sym_command_substitution] = STATE(77), - [aux_sym_string_repeat1] = STATE(252), - [anon_sym_DQUOTE] = ACTIONS(3178), - [sym__string_content] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(126), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(128), - [anon_sym_BQUOTE] = ACTIONS(130), - [sym_comment] = ACTIONS(60), - }, - [1362] = { - [sym__concat] = ACTIONS(412), - [anon_sym_PIPE] = ACTIONS(424), - [anon_sym_RPAREN] = ACTIONS(412), - [anon_sym_PIPE_AMP] = ACTIONS(412), - [anon_sym_AMP_AMP] = ACTIONS(412), - [anon_sym_PIPE_PIPE] = ACTIONS(412), - [anon_sym_BQUOTE] = ACTIONS(412), - [sym_comment] = ACTIONS(46), - }, - [1363] = { - [sym__concat] = ACTIONS(416), - [anon_sym_PIPE] = ACTIONS(883), - [anon_sym_RPAREN] = ACTIONS(416), - [anon_sym_PIPE_AMP] = ACTIONS(416), - [anon_sym_AMP_AMP] = ACTIONS(416), - [anon_sym_PIPE_PIPE] = ACTIONS(416), - [anon_sym_BQUOTE] = ACTIONS(416), - [sym_comment] = ACTIONS(46), - }, - [1364] = { - [sym__concat] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(885), - [anon_sym_RPAREN] = ACTIONS(420), - [anon_sym_PIPE_AMP] = ACTIONS(420), - [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE_PIPE] = ACTIONS(420), - [anon_sym_BQUOTE] = ACTIONS(420), - [sym_comment] = ACTIONS(46), - }, - [1365] = { - [sym_special_variable_name] = STATE(1533), - [anon_sym_RBRACE] = ACTIONS(412), - [anon_sym_EQ] = ACTIONS(412), - [anon_sym_LBRACK] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(138), - [anon_sym_POUND] = ACTIONS(138), - [anon_sym_AT] = ACTIONS(138), - [anon_sym_COLON] = ACTIONS(424), - [anon_sym_COLON_QMARK] = ACTIONS(412), - [anon_sym_COLON_DASH] = ACTIONS(412), - [anon_sym_PERCENT] = ACTIONS(412), - [anon_sym_SLASH] = ACTIONS(412), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(3180), - [anon_sym_STAR] = ACTIONS(138), - [anon_sym_QMARK] = ACTIONS(138), - [anon_sym_DASH] = ACTIONS(138), - [anon_sym_BANG] = ACTIONS(138), - [anon_sym_0] = ACTIONS(144), - [anon_sym__] = ACTIONS(144), - }, - [1366] = { - [anon_sym_RBRACE] = ACTIONS(3182), - [anon_sym_EQ] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_COLON] = ACTIONS(3188), - [anon_sym_COLON_QMARK] = ACTIONS(3184), - [anon_sym_COLON_DASH] = ACTIONS(3184), - [anon_sym_PERCENT] = ACTIONS(3184), - [anon_sym_SLASH] = ACTIONS(3184), - [sym_comment] = ACTIONS(46), - }, - [1367] = { - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_EQ] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_COLON] = ACTIONS(3196), - [anon_sym_COLON_QMARK] = ACTIONS(3192), - [anon_sym_COLON_DASH] = ACTIONS(3192), - [anon_sym_PERCENT] = ACTIONS(3192), - [anon_sym_SLASH] = ACTIONS(3192), - [sym_comment] = ACTIONS(46), - }, - [1368] = { + [897] = { + [sym_file_descriptor] = ACTIONS(482), + [sym__concat] = ACTIONS(482), + [sym_variable_name] = ACTIONS(482), [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), + [anon_sym_RPAREN] = ACTIONS(484), + [anon_sym_SEMI_SEMI] = ACTIONS(484), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(484), + [anon_sym_PIPE_PIPE] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_GT_GT] = ACTIONS(484), + [anon_sym_AMP_GT] = ACTIONS(484), + [anon_sym_AMP_GT_GT] = ACTIONS(484), + [anon_sym_LT_AMP] = ACTIONS(484), + [anon_sym_GT_AMP] = ACTIONS(484), + [sym__special_characters] = ACTIONS(484), + [anon_sym_DQUOTE] = ACTIONS(484), + [sym_raw_string] = ACTIONS(484), + [anon_sym_DOLLAR] = ACTIONS(484), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(484), + [anon_sym_BQUOTE] = ACTIONS(484), + [anon_sym_LT_LPAREN] = ACTIONS(484), + [anon_sym_GT_LPAREN] = ACTIONS(484), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(484), + [anon_sym_SEMI] = ACTIONS(484), + [anon_sym_LF] = ACTIONS(484), + [anon_sym_AMP] = ACTIONS(484), }, - [1369] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), + [898] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(3087), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [899] = { + [sym_file_descriptor] = ACTIONS(510), + [sym__concat] = ACTIONS(510), + [sym_variable_name] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(512), + [anon_sym_RPAREN] = ACTIONS(512), + [anon_sym_SEMI_SEMI] = ACTIONS(512), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(512), + [anon_sym_PIPE_PIPE] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_AMP_GT] = ACTIONS(512), + [anon_sym_AMP_GT_GT] = ACTIONS(512), + [anon_sym_LT_AMP] = ACTIONS(512), + [anon_sym_GT_AMP] = ACTIONS(512), + [sym__special_characters] = ACTIONS(512), + [anon_sym_DQUOTE] = ACTIONS(512), + [sym_raw_string] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(512), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(512), + [anon_sym_BQUOTE] = ACTIONS(512), + [anon_sym_LT_LPAREN] = ACTIONS(512), + [anon_sym_GT_LPAREN] = ACTIONS(512), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(512), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_LF] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(512), + }, + [900] = { + [sym_file_descriptor] = ACTIONS(514), + [sym__concat] = ACTIONS(514), + [sym_variable_name] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(516), + [anon_sym_SEMI_SEMI] = ACTIONS(516), + [anon_sym_PIPE_AMP] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(516), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_GT_GT] = ACTIONS(516), + [anon_sym_AMP_GT] = ACTIONS(516), + [anon_sym_AMP_GT_GT] = ACTIONS(516), + [anon_sym_LT_AMP] = ACTIONS(516), + [anon_sym_GT_AMP] = ACTIONS(516), + [sym__special_characters] = ACTIONS(516), + [anon_sym_DQUOTE] = ACTIONS(516), + [sym_raw_string] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(516), + [anon_sym_BQUOTE] = ACTIONS(516), + [anon_sym_LT_LPAREN] = ACTIONS(516), + [anon_sym_GT_LPAREN] = ACTIONS(516), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_LF] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(516), + }, + [901] = { + [anon_sym_EQ] = ACTIONS(3089), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [902] = { + [anon_sym_RBRACE] = ACTIONS(3091), + [anon_sym_EQ] = ACTIONS(3093), + [anon_sym_COLON] = ACTIONS(3095), + [anon_sym_COLON_QMARK] = ACTIONS(3093), + [anon_sym_COLON_DASH] = ACTIONS(3093), + [anon_sym_PERCENT] = ACTIONS(3093), + [anon_sym_SLASH] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3093), + [sym_comment] = ACTIONS(48), + }, + [903] = { + [sym_subscript] = STATE(1382), + [sym_variable_name] = ACTIONS(3097), + [anon_sym_DOLLAR] = ACTIONS(3099), + [anon_sym_DASH] = ACTIONS(3099), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_AT] = ACTIONS(3099), + [anon_sym_QMARK] = ACTIONS(3099), + [anon_sym_0] = ACTIONS(3103), + [anon_sym__] = ACTIONS(3103), + }, + [904] = { + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_COLON] = ACTIONS(3109), + [anon_sym_COLON_QMARK] = ACTIONS(3107), + [anon_sym_COLON_DASH] = ACTIONS(3107), + [anon_sym_PERCENT] = ACTIONS(3107), + [anon_sym_SLASH] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [sym_comment] = ACTIONS(48), + }, + [905] = { + [anon_sym_RBRACE] = ACTIONS(3111), + [anon_sym_EQ] = ACTIONS(3089), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_COLON_QMARK] = ACTIONS(3089), + [anon_sym_COLON_DASH] = ACTIONS(3089), + [anon_sym_PERCENT] = ACTIONS(3089), + [anon_sym_SLASH] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [sym_comment] = ACTIONS(48), + }, + [906] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3115), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [907] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3115), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [908] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(3115), + [sym_comment] = ACTIONS(48), + }, + [909] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(3115), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [910] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3117), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [911] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3117), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [912] = { + [sym_compound_statement] = STATE(1388), + [anon_sym_LBRACE] = ACTIONS(372), + [sym_comment] = ACTIONS(48), + }, + [913] = { + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3119), + [anon_sym_GT_GT] = ACTIONS(3121), + [anon_sym_AMP_GT] = ACTIONS(3119), + [anon_sym_AMP_GT_GT] = ACTIONS(3121), + [anon_sym_LT_AMP] = ACTIONS(3121), + [anon_sym_GT_AMP] = ACTIONS(3121), + [sym_comment] = ACTIONS(48), + }, + [914] = { + [sym_concatenation] = STATE(894), + [sym_string] = STATE(1392), + [sym_simple_expansion] = STATE(1392), + [sym_expansion] = STATE(1392), + [sym_command_substitution] = STATE(1392), + [sym_process_substitution] = STATE(1392), + [sym__special_characters] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym_raw_string] = ACTIONS(3127), + [anon_sym_DOLLAR] = ACTIONS(3129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3133), + [anon_sym_BQUOTE] = ACTIONS(3135), + [anon_sym_LT_LPAREN] = ACTIONS(3137), + [anon_sym_GT_LPAREN] = ACTIONS(3137), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3139), + }, + [915] = { + [aux_sym_concatenation_repeat1] = STATE(1399), + [sym__concat] = ACTIONS(3141), + [sym_variable_name] = ACTIONS(848), + [anon_sym_PIPE] = ACTIONS(852), + [anon_sym_RPAREN] = ACTIONS(852), + [anon_sym_SEMI_SEMI] = ACTIONS(852), + [anon_sym_PIPE_AMP] = ACTIONS(852), + [anon_sym_AMP_AMP] = ACTIONS(852), + [anon_sym_PIPE_PIPE] = ACTIONS(852), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(852), + [sym_word] = ACTIONS(852), + [anon_sym_SEMI] = ACTIONS(852), + [anon_sym_LF] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(852), + }, + [916] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(1401), + [anon_sym_DQUOTE] = ACTIONS(3143), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [917] = { + [aux_sym_concatenation_repeat1] = STATE(1399), + [sym__concat] = ACTIONS(3141), + [sym_variable_name] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(826), + [sym_word] = ACTIONS(826), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LF] = ACTIONS(826), + [anon_sym_AMP] = ACTIONS(826), + }, + [918] = { + [anon_sym_DOLLAR] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_AT] = ACTIONS(3145), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_0] = ACTIONS(3149), + [anon_sym__] = ACTIONS(3149), + }, + [919] = { + [sym_subscript] = STATE(1408), + [sym_variable_name] = ACTIONS(3151), + [anon_sym_DOLLAR] = ACTIONS(3153), + [anon_sym_POUND] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3153), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_AT] = ACTIONS(3153), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_0] = ACTIONS(3159), + [anon_sym__] = ACTIONS(3159), + }, + [920] = { + [sym_for_statement] = STATE(1409), + [sym_while_statement] = STATE(1409), + [sym_if_statement] = STATE(1409), + [sym_case_statement] = STATE(1409), + [sym_function_definition] = STATE(1409), + [sym_subshell] = STATE(1409), + [sym_pipeline] = STATE(1409), + [sym_list] = STATE(1409), + [sym_command] = STATE(1409), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1410), + [sym_declaration_command] = STATE(1409), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [921] = { + [sym_for_statement] = STATE(1411), + [sym_while_statement] = STATE(1411), + [sym_if_statement] = STATE(1411), + [sym_case_statement] = STATE(1411), + [sym_function_definition] = STATE(1411), + [sym_subshell] = STATE(1411), + [sym_pipeline] = STATE(1411), + [sym_list] = STATE(1411), + [sym_command] = STATE(1411), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(1412), + [sym_declaration_command] = STATE(1411), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), + }, + [922] = { + [sym_for_statement] = STATE(1413), + [sym_while_statement] = STATE(1413), + [sym_if_statement] = STATE(1413), + [sym_case_statement] = STATE(1413), + [sym_function_definition] = STATE(1413), + [sym_subshell] = STATE(1413), + [sym_pipeline] = STATE(1413), + [sym_list] = STATE(1413), + [sym_command] = STATE(1413), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1414), + [sym_declaration_command] = STATE(1413), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [923] = { + [sym_file_descriptor] = ACTIONS(2176), + [sym__concat] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_RPAREN] = ACTIONS(2178), + [anon_sym_SEMI_SEMI] = ACTIONS(2178), + [anon_sym_PIPE_AMP] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2178), + [anon_sym_PIPE_PIPE] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2178), + [anon_sym_AMP_GT] = ACTIONS(2178), + [anon_sym_AMP_GT_GT] = ACTIONS(2178), + [anon_sym_LT_AMP] = ACTIONS(2178), + [anon_sym_GT_AMP] = ACTIONS(2178), + [anon_sym_LT_LT] = ACTIONS(2178), + [anon_sym_LT_LT_DASH] = ACTIONS(2178), + [anon_sym_LT_LT_LT] = ACTIONS(2178), + [sym__special_characters] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [sym_raw_string] = ACTIONS(2178), + [anon_sym_DOLLAR] = ACTIONS(2178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2178), + [anon_sym_BQUOTE] = ACTIONS(2178), + [anon_sym_LT_LPAREN] = ACTIONS(2178), + [anon_sym_GT_LPAREN] = ACTIONS(2178), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_LF] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + }, + [924] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3161), + [sym_comment] = ACTIONS(48), + }, + [925] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3163), + [sym_comment] = ACTIONS(48), + }, + [926] = { + [anon_sym_RBRACE] = ACTIONS(3163), + [sym_comment] = ACTIONS(48), + }, + [927] = { + [sym_file_descriptor] = ACTIONS(2214), + [sym__concat] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2216), + [anon_sym_RPAREN] = ACTIONS(2216), + [anon_sym_SEMI_SEMI] = ACTIONS(2216), + [anon_sym_PIPE_AMP] = ACTIONS(2216), + [anon_sym_AMP_AMP] = ACTIONS(2216), + [anon_sym_PIPE_PIPE] = ACTIONS(2216), + [anon_sym_LT] = ACTIONS(2216), + [anon_sym_GT] = ACTIONS(2216), + [anon_sym_GT_GT] = ACTIONS(2216), + [anon_sym_AMP_GT] = ACTIONS(2216), + [anon_sym_AMP_GT_GT] = ACTIONS(2216), + [anon_sym_LT_AMP] = ACTIONS(2216), + [anon_sym_GT_AMP] = ACTIONS(2216), + [anon_sym_LT_LT] = ACTIONS(2216), + [anon_sym_LT_LT_DASH] = ACTIONS(2216), + [anon_sym_LT_LT_LT] = ACTIONS(2216), + [sym__special_characters] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2216), + [sym_raw_string] = ACTIONS(2216), + [anon_sym_DOLLAR] = ACTIONS(2216), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2216), + [anon_sym_BQUOTE] = ACTIONS(2216), + [anon_sym_LT_LPAREN] = ACTIONS(2216), + [anon_sym_GT_LPAREN] = ACTIONS(2216), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2216), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_LF] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2216), + }, + [928] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3165), + [sym_comment] = ACTIONS(48), + }, + [929] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3167), + [sym_comment] = ACTIONS(48), + }, + [930] = { + [anon_sym_RBRACE] = ACTIONS(3167), + [sym_comment] = ACTIONS(48), + }, + [931] = { + [sym_concatenation] = STATE(1421), + [sym_string] = STATE(1420), + [sym_simple_expansion] = STATE(1420), + [sym_expansion] = STATE(1420), + [sym_command_substitution] = STATE(1420), + [sym_process_substitution] = STATE(1420), + [anon_sym_RBRACE] = ACTIONS(3163), + [sym__special_characters] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3171), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3173), + }, + [932] = { + [sym_file_descriptor] = ACTIONS(2228), + [sym__concat] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2230), + [anon_sym_RPAREN] = ACTIONS(2230), + [anon_sym_SEMI_SEMI] = ACTIONS(2230), + [anon_sym_PIPE_AMP] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2230), + [anon_sym_PIPE_PIPE] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2230), + [anon_sym_GT_GT] = ACTIONS(2230), + [anon_sym_AMP_GT] = ACTIONS(2230), + [anon_sym_AMP_GT_GT] = ACTIONS(2230), + [anon_sym_LT_AMP] = ACTIONS(2230), + [anon_sym_GT_AMP] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(2230), + [anon_sym_LT_LT_DASH] = ACTIONS(2230), + [anon_sym_LT_LT_LT] = ACTIONS(2230), + [sym__special_characters] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [sym_raw_string] = ACTIONS(2230), + [anon_sym_DOLLAR] = ACTIONS(2230), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2230), + [anon_sym_BQUOTE] = ACTIONS(2230), + [anon_sym_LT_LPAREN] = ACTIONS(2230), + [anon_sym_GT_LPAREN] = ACTIONS(2230), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_LF] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2230), + }, + [933] = { + [sym_concatenation] = STATE(1425), + [sym_string] = STATE(1424), + [sym_simple_expansion] = STATE(1424), + [sym_expansion] = STATE(1424), + [sym_command_substitution] = STATE(1424), + [sym_process_substitution] = STATE(1424), + [anon_sym_RBRACE] = ACTIONS(3175), + [sym__special_characters] = ACTIONS(3177), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3179), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3181), + }, + [934] = { + [sym_file_descriptor] = ACTIONS(2240), + [sym__concat] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_RPAREN] = ACTIONS(2242), + [anon_sym_SEMI_SEMI] = ACTIONS(2242), + [anon_sym_PIPE_AMP] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2242), + [anon_sym_GT_GT] = ACTIONS(2242), + [anon_sym_AMP_GT] = ACTIONS(2242), + [anon_sym_AMP_GT_GT] = ACTIONS(2242), + [anon_sym_LT_AMP] = ACTIONS(2242), + [anon_sym_GT_AMP] = ACTIONS(2242), + [anon_sym_LT_LT] = ACTIONS(2242), + [anon_sym_LT_LT_DASH] = ACTIONS(2242), + [anon_sym_LT_LT_LT] = ACTIONS(2242), + [sym__special_characters] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym_raw_string] = ACTIONS(2242), + [anon_sym_DOLLAR] = ACTIONS(2242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2242), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2242), + [anon_sym_BQUOTE] = ACTIONS(2242), + [anon_sym_LT_LPAREN] = ACTIONS(2242), + [anon_sym_GT_LPAREN] = ACTIONS(2242), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_LF] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + }, + [935] = { + [sym_concatenation] = STATE(1429), + [sym_string] = STATE(1428), + [sym_simple_expansion] = STATE(1428), + [sym_expansion] = STATE(1428), + [sym_command_substitution] = STATE(1428), + [sym_process_substitution] = STATE(1428), + [anon_sym_RBRACE] = ACTIONS(3183), + [sym__special_characters] = ACTIONS(3185), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3187), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3189), + }, + [936] = { + [sym_file_descriptor] = ACTIONS(2252), + [sym__concat] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_RPAREN] = ACTIONS(2254), + [anon_sym_SEMI_SEMI] = ACTIONS(2254), + [anon_sym_PIPE_AMP] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_GT_GT] = ACTIONS(2254), + [anon_sym_AMP_GT] = ACTIONS(2254), + [anon_sym_AMP_GT_GT] = ACTIONS(2254), + [anon_sym_LT_AMP] = ACTIONS(2254), + [anon_sym_GT_AMP] = ACTIONS(2254), + [anon_sym_LT_LT] = ACTIONS(2254), + [anon_sym_LT_LT_DASH] = ACTIONS(2254), + [anon_sym_LT_LT_LT] = ACTIONS(2254), + [sym__special_characters] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2254), + [sym_raw_string] = ACTIONS(2254), + [anon_sym_DOLLAR] = ACTIONS(2254), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2254), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2254), + [anon_sym_BQUOTE] = ACTIONS(2254), + [anon_sym_LT_LPAREN] = ACTIONS(2254), + [anon_sym_GT_LPAREN] = ACTIONS(2254), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LF] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + }, + [937] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3191), + [sym_comment] = ACTIONS(48), + }, + [938] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3193), + [sym_comment] = ACTIONS(48), + }, + [939] = { + [anon_sym_RBRACE] = ACTIONS(3193), + [sym_comment] = ACTIONS(48), + }, + [940] = { + [sym_file_redirect] = STATE(1209), + [sym_file_descriptor] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1902), + [anon_sym_RPAREN] = ACTIONS(1902), + [anon_sym_SEMI_SEMI] = ACTIONS(1902), + [anon_sym_PIPE_AMP] = ACTIONS(1902), + [anon_sym_AMP_AMP] = ACTIONS(1902), + [anon_sym_PIPE_PIPE] = ACTIONS(1902), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_GT_GT] = ACTIONS(1928), + [anon_sym_AMP_GT] = ACTIONS(1928), + [anon_sym_AMP_GT_GT] = ACTIONS(1928), + [anon_sym_LT_AMP] = ACTIONS(1928), + [anon_sym_GT_AMP] = ACTIONS(1928), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_LF] = ACTIONS(1902), + [anon_sym_AMP] = ACTIONS(1902), + }, + [941] = { + [aux_sym_concatenation_repeat1] = STATE(944), + [sym_file_descriptor] = ACTIONS(816), + [sym__concat] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(2660), + [anon_sym_RPAREN] = ACTIONS(2660), + [anon_sym_SEMI_SEMI] = ACTIONS(2660), + [anon_sym_PIPE_AMP] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_PIPE_PIPE] = ACTIONS(2660), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_GT] = ACTIONS(2660), + [anon_sym_GT_GT] = ACTIONS(2660), + [anon_sym_AMP_GT] = ACTIONS(2660), + [anon_sym_AMP_GT_GT] = ACTIONS(2660), + [anon_sym_LT_AMP] = ACTIONS(2660), + [anon_sym_GT_AMP] = ACTIONS(2660), + [anon_sym_LT_LT] = ACTIONS(2660), + [anon_sym_LT_LT_DASH] = ACTIONS(2660), + [anon_sym_LT_LT_LT] = ACTIONS(2660), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2660), + [anon_sym_LF] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2660), + }, + [942] = { + [aux_sym_concatenation_repeat1] = STATE(944), + [sym_file_descriptor] = ACTIONS(820), + [sym__concat] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_SEMI_SEMI] = ACTIONS(2662), + [anon_sym_PIPE_AMP] = ACTIONS(2662), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_PIPE_PIPE] = ACTIONS(2662), + [anon_sym_LT] = ACTIONS(2662), + [anon_sym_GT] = ACTIONS(2662), + [anon_sym_GT_GT] = ACTIONS(2662), + [anon_sym_AMP_GT] = ACTIONS(2662), + [anon_sym_AMP_GT_GT] = ACTIONS(2662), + [anon_sym_LT_AMP] = ACTIONS(2662), + [anon_sym_GT_AMP] = ACTIONS(2662), + [anon_sym_LT_LT] = ACTIONS(2662), + [anon_sym_LT_LT_DASH] = ACTIONS(2662), + [anon_sym_LT_LT_LT] = ACTIONS(2662), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_LF] = ACTIONS(2662), + [anon_sym_AMP] = ACTIONS(2662), + }, + [943] = { + [sym_string] = STATE(1432), + [sym_simple_expansion] = STATE(1432), + [sym_expansion] = STATE(1432), + [sym_command_substitution] = STATE(1432), + [sym_process_substitution] = STATE(1432), + [sym__special_characters] = ACTIONS(3195), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_raw_string] = ACTIONS(3197), + [anon_sym_DOLLAR] = ACTIONS(1058), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1060), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1062), + [anon_sym_BQUOTE] = ACTIONS(1064), + [anon_sym_LT_LPAREN] = ACTIONS(1066), + [anon_sym_GT_LPAREN] = ACTIONS(1066), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3195), + }, + [944] = { + [aux_sym_concatenation_repeat1] = STATE(1433), + [sym_file_descriptor] = ACTIONS(478), + [sym__concat] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(480), + [anon_sym_SEMI_SEMI] = ACTIONS(480), + [anon_sym_PIPE_AMP] = ACTIONS(480), + [anon_sym_AMP_AMP] = ACTIONS(480), + [anon_sym_PIPE_PIPE] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_GT_GT] = ACTIONS(480), + [anon_sym_AMP_GT] = ACTIONS(480), + [anon_sym_AMP_GT_GT] = ACTIONS(480), + [anon_sym_LT_AMP] = ACTIONS(480), + [anon_sym_GT_AMP] = ACTIONS(480), + [anon_sym_LT_LT] = ACTIONS(480), + [anon_sym_LT_LT_DASH] = ACTIONS(480), + [anon_sym_LT_LT_LT] = ACTIONS(480), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(480), + [anon_sym_LF] = ACTIONS(480), + [anon_sym_AMP] = ACTIONS(480), + }, + [945] = { + [sym_file_descriptor] = ACTIONS(482), + [sym__concat] = ACTIONS(482), [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(3198), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [1370] = { - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_comment] = ACTIONS(46), - }, - [1371] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_PIPE_AMP] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(524), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(3198), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [1372] = { - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(3200), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [sym_comment] = ACTIONS(46), - }, - [1373] = { - [sym_file_descriptor] = ACTIONS(234), - [sym_word] = ACTIONS(234), - [sym_variable_name] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(484), - [anon_sym_RPAREN] = ACTIONS(3200), - [anon_sym_PIPE_AMP] = ACTIONS(488), - [anon_sym_AMP_AMP] = ACTIONS(490), - [anon_sym_PIPE_PIPE] = ACTIONS(490), - [anon_sym_LT] = ACTIONS(238), - [anon_sym_GT] = ACTIONS(238), - [anon_sym_GT_GT] = ACTIONS(234), - [anon_sym_AMP_GT] = ACTIONS(238), - [anon_sym_AMP_GT_GT] = ACTIONS(234), - [anon_sym_LT_AMP] = ACTIONS(234), - [anon_sym_GT_AMP] = ACTIONS(234), - [anon_sym_DQUOTE] = ACTIONS(234), - [sym_raw_string] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(234), - [anon_sym_LT_LPAREN] = ACTIONS(234), - [anon_sym_GT_LPAREN] = ACTIONS(234), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(238), - }, - [1374] = { - [aux_sym_concatenation_repeat1] = STATE(1530), - [sym__concat] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(542), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [sym_comment] = ACTIONS(46), - }, - [1375] = { - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(675), - [sym_variable_name] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_BQUOTE] = ACTIONS(675), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1471), - }, - [1376] = { - [sym_word] = ACTIONS(679), - [sym__concat] = ACTIONS(679), - [sym_variable_name] = ACTIONS(679), - [anon_sym_PIPE] = ACTIONS(1473), - [anon_sym_RPAREN] = ACTIONS(679), - [anon_sym_PIPE_AMP] = ACTIONS(679), - [anon_sym_AMP_AMP] = ACTIONS(679), - [anon_sym_PIPE_PIPE] = ACTIONS(679), - [anon_sym_BQUOTE] = ACTIONS(679), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1473), - }, - [1377] = { - [aux_sym_concatenation_repeat1] = STATE(1377), - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(3202), - [sym_variable_name] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1471), - }, - [1378] = { - [sym_word] = ACTIONS(1888), - [sym_variable_name] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(2745), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2745), - }, - [1379] = { - [sym_word] = ACTIONS(931), - [sym__concat] = ACTIONS(931), - [sym_variable_name] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_PIPE_AMP] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1478), - }, - [1380] = { - [anon_sym_RBRACE] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3207), - [sym_comment] = ACTIONS(46), - }, - [1381] = { - [anon_sym_RBRACE] = ACTIONS(3209), - [anon_sym_LBRACK] = ACTIONS(3211), - [sym_comment] = ACTIONS(46), - }, - [1382] = { - [sym_word] = ACTIONS(960), - [sym__concat] = ACTIONS(960), - [sym_variable_name] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_PIPE_AMP] = ACTIONS(960), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), - [anon_sym_BQUOTE] = ACTIONS(960), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1488), - }, - [1383] = { - [sym_concatenation] = STATE(1549), - [sym_string] = STATE(1546), - [sym_simple_expansion] = STATE(1546), - [sym_expansion] = STATE(1546), - [sym_command_substitution] = STATE(1546), - [sym_process_substitution] = STATE(1546), - [sym_word] = ACTIONS(3213), - [anon_sym_RBRACE] = ACTIONS(3215), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(3213), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3217), - }, - [1384] = { - [anon_sym_AT] = ACTIONS(3219), - [sym_comment] = ACTIONS(46), - }, - [1385] = { - [sym_word] = ACTIONS(972), - [sym__concat] = ACTIONS(972), - [sym_variable_name] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_RPAREN] = ACTIONS(972), - [anon_sym_PIPE_AMP] = ACTIONS(972), - [anon_sym_AMP_AMP] = ACTIONS(972), - [anon_sym_PIPE_PIPE] = ACTIONS(972), - [anon_sym_BQUOTE] = ACTIONS(972), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1498), - }, - [1386] = { - [sym_concatenation] = STATE(1553), - [sym_string] = STATE(1551), - [sym_simple_expansion] = STATE(1551), - [sym_expansion] = STATE(1551), - [sym_command_substitution] = STATE(1551), - [sym_process_substitution] = STATE(1551), - [sym_word] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(3221), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3223), - }, - [1387] = { - [anon_sym_AT] = ACTIONS(3225), - [sym_comment] = ACTIONS(46), - }, - [1388] = { - [sym_word] = ACTIONS(1066), - [sym__concat] = ACTIONS(1066), - [sym_variable_name] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1066), - [anon_sym_PIPE_AMP] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_BQUOTE] = ACTIONS(1066), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1506), - }, - [1389] = { - [sym_word] = ACTIONS(1122), - [sym__concat] = ACTIONS(1122), - [sym_variable_name] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_RPAREN] = ACTIONS(1122), - [anon_sym_PIPE_AMP] = ACTIONS(1122), - [anon_sym_AMP_AMP] = ACTIONS(1122), - [anon_sym_PIPE_PIPE] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1122), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1508), - }, - [1390] = { - [anon_sym_RBRACE] = ACTIONS(3227), - [sym_comment] = ACTIONS(46), - }, - [1391] = { - [anon_sym_RBRACE] = ACTIONS(3229), - [sym_comment] = ACTIONS(46), - }, - [1392] = { - [sym_file_descriptor] = ACTIONS(2726), - [sym_word] = ACTIONS(2726), - [sym__concat] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(3104), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_PIPE_AMP] = ACTIONS(2726), - [anon_sym_AMP_AMP] = ACTIONS(2726), - [anon_sym_PIPE_PIPE] = ACTIONS(2726), - [anon_sym_LT] = ACTIONS(3104), - [anon_sym_GT] = ACTIONS(3104), - [anon_sym_GT_GT] = ACTIONS(2726), - [anon_sym_AMP_GT] = ACTIONS(3104), - [anon_sym_AMP_GT_GT] = ACTIONS(2726), - [anon_sym_LT_AMP] = ACTIONS(2726), - [anon_sym_GT_AMP] = ACTIONS(2726), - [anon_sym_LT_LT] = ACTIONS(3104), - [anon_sym_LT_LT_DASH] = ACTIONS(2726), - [anon_sym_DQUOTE] = ACTIONS(2726), - [sym_raw_string] = ACTIONS(2726), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2726), - [anon_sym_BQUOTE] = ACTIONS(2726), - [anon_sym_LT_LPAREN] = ACTIONS(2726), - [anon_sym_GT_LPAREN] = ACTIONS(2726), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3104), - }, - [1393] = { - [sym_file_descriptor] = ACTIONS(2730), - [sym_word] = ACTIONS(2730), - [sym__concat] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(3106), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_PIPE_AMP] = ACTIONS(2730), - [anon_sym_AMP_AMP] = ACTIONS(2730), - [anon_sym_PIPE_PIPE] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_GT] = ACTIONS(3106), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_AMP_GT] = ACTIONS(3106), - [anon_sym_AMP_GT_GT] = ACTIONS(2730), - [anon_sym_LT_AMP] = ACTIONS(2730), - [anon_sym_GT_AMP] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(3106), - [anon_sym_LT_LT_DASH] = ACTIONS(2730), - [anon_sym_DQUOTE] = ACTIONS(2730), - [sym_raw_string] = ACTIONS(2730), - [anon_sym_DOLLAR] = ACTIONS(3106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2730), - [anon_sym_BQUOTE] = ACTIONS(2730), - [anon_sym_LT_LPAREN] = ACTIONS(2730), - [anon_sym_GT_LPAREN] = ACTIONS(2730), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3106), - }, - [1394] = { - [sym_file_descriptor] = ACTIONS(2734), - [sym_word] = ACTIONS(2734), - [sym__concat] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(3108), - [anon_sym_RPAREN] = ACTIONS(2734), - [anon_sym_PIPE_AMP] = ACTIONS(2734), - [anon_sym_AMP_AMP] = ACTIONS(2734), - [anon_sym_PIPE_PIPE] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(3108), - [anon_sym_GT] = ACTIONS(3108), - [anon_sym_GT_GT] = ACTIONS(2734), - [anon_sym_AMP_GT] = ACTIONS(3108), - [anon_sym_AMP_GT_GT] = ACTIONS(2734), - [anon_sym_LT_AMP] = ACTIONS(2734), - [anon_sym_GT_AMP] = ACTIONS(2734), - [anon_sym_LT_LT] = ACTIONS(3108), - [anon_sym_LT_LT_DASH] = ACTIONS(2734), - [anon_sym_DQUOTE] = ACTIONS(2734), - [sym_raw_string] = ACTIONS(2734), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2734), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2734), - [anon_sym_BQUOTE] = ACTIONS(2734), - [anon_sym_LT_LPAREN] = ACTIONS(2734), - [anon_sym_GT_LPAREN] = ACTIONS(2734), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3108), - }, - [1395] = { - [sym_file_descriptor] = ACTIONS(2738), - [sym_word] = ACTIONS(2738), - [sym__concat] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(3110), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_PIPE_AMP] = ACTIONS(2738), - [anon_sym_AMP_AMP] = ACTIONS(2738), - [anon_sym_PIPE_PIPE] = ACTIONS(2738), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3110), - [anon_sym_GT_GT] = ACTIONS(2738), - [anon_sym_AMP_GT] = ACTIONS(3110), - [anon_sym_AMP_GT_GT] = ACTIONS(2738), - [anon_sym_LT_AMP] = ACTIONS(2738), - [anon_sym_GT_AMP] = ACTIONS(2738), - [anon_sym_LT_LT] = ACTIONS(3110), - [anon_sym_LT_LT_DASH] = ACTIONS(2738), - [anon_sym_DQUOTE] = ACTIONS(2738), - [sym_raw_string] = ACTIONS(2738), - [anon_sym_DOLLAR] = ACTIONS(3110), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2738), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2738), - [anon_sym_BQUOTE] = ACTIONS(2738), - [anon_sym_LT_LPAREN] = ACTIONS(2738), - [anon_sym_GT_LPAREN] = ACTIONS(2738), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3110), - }, - [1396] = { - [sym_file_descriptor] = ACTIONS(1532), - [sym__concat] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(2145), - [anon_sym_RPAREN] = ACTIONS(1532), - [anon_sym_PIPE_AMP] = ACTIONS(1532), - [anon_sym_AMP_AMP] = ACTIONS(1532), - [anon_sym_PIPE_PIPE] = ACTIONS(1532), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_GT] = ACTIONS(2145), - [anon_sym_GT_GT] = ACTIONS(1532), - [anon_sym_AMP_GT] = ACTIONS(2145), - [anon_sym_AMP_GT_GT] = ACTIONS(1532), - [anon_sym_LT_AMP] = ACTIONS(1532), - [anon_sym_GT_AMP] = ACTIONS(1532), - [anon_sym_LT_LT] = ACTIONS(2145), - [anon_sym_LT_LT_DASH] = ACTIONS(1532), - [anon_sym_BQUOTE] = ACTIONS(1532), - [sym_comment] = ACTIONS(46), - }, - [1397] = { - [anon_sym_AT] = ACTIONS(3231), - [sym_comment] = ACTIONS(46), - }, - [1398] = { - [sym_file_descriptor] = ACTIONS(1538), - [sym__concat] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_PIPE_AMP] = ACTIONS(1538), - [anon_sym_AMP_AMP] = ACTIONS(1538), - [anon_sym_PIPE_PIPE] = ACTIONS(1538), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_GT] = ACTIONS(2149), - [anon_sym_GT_GT] = ACTIONS(1538), - [anon_sym_AMP_GT] = ACTIONS(2149), - [anon_sym_AMP_GT_GT] = ACTIONS(1538), - [anon_sym_LT_AMP] = ACTIONS(1538), - [anon_sym_GT_AMP] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(2149), - [anon_sym_LT_LT_DASH] = ACTIONS(1538), - [anon_sym_BQUOTE] = ACTIONS(1538), - [sym_comment] = ACTIONS(46), - }, - [1399] = { - [anon_sym_AT] = ACTIONS(3233), - [sym_comment] = ACTIONS(46), - }, - [1400] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(3235), - [anon_sym_RBRACE] = ACTIONS(3237), - [sym_comment] = ACTIONS(46), - }, - [1401] = { - [sym_file_descriptor] = ACTIONS(1548), - [sym__concat] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(2157), - [anon_sym_RPAREN] = ACTIONS(1548), - [anon_sym_PIPE_AMP] = ACTIONS(1548), - [anon_sym_AMP_AMP] = ACTIONS(1548), - [anon_sym_PIPE_PIPE] = ACTIONS(1548), - [anon_sym_LT] = ACTIONS(2157), - [anon_sym_GT] = ACTIONS(2157), - [anon_sym_GT_GT] = ACTIONS(1548), - [anon_sym_AMP_GT] = ACTIONS(2157), - [anon_sym_AMP_GT_GT] = ACTIONS(1548), - [anon_sym_LT_AMP] = ACTIONS(1548), - [anon_sym_GT_AMP] = ACTIONS(1548), - [anon_sym_LT_LT] = ACTIONS(2157), - [anon_sym_LT_LT_DASH] = ACTIONS(1548), - [anon_sym_BQUOTE] = ACTIONS(1548), - [sym_comment] = ACTIONS(46), - }, - [1402] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(3241), - [sym_comment] = ACTIONS(46), - }, - [1403] = { - [sym__concat] = ACTIONS(3243), - [anon_sym_RBRACE] = ACTIONS(3237), - [sym_comment] = ACTIONS(46), - }, - [1404] = { - [anon_sym_RBRACK] = ACTIONS(3243), - [sym_comment] = ACTIONS(46), - }, - [1405] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3247), - [sym_comment] = ACTIONS(46), - }, - [1406] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(3249), - [anon_sym_RBRACE] = ACTIONS(3251), - [sym_comment] = ACTIONS(46), - }, - [1407] = { - [sym__concat] = ACTIONS(3253), - [anon_sym_RBRACE] = ACTIONS(3247), - [sym_comment] = ACTIONS(46), - }, - [1408] = { - [anon_sym_RBRACK] = ACTIONS(3253), - [sym_comment] = ACTIONS(46), - }, - [1409] = { - [aux_sym_concatenation_repeat1] = STATE(1411), - [sym__concat] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(669), - [anon_sym_PIPE_AMP] = ACTIONS(667), - [anon_sym_AMP_AMP] = ACTIONS(667), - [anon_sym_PIPE_PIPE] = ACTIONS(667), - [anon_sym_BQUOTE] = ACTIONS(667), - [sym_comment] = ACTIONS(46), - }, - [1410] = { - [aux_sym_concatenation_repeat1] = STATE(1412), - [sym__concat] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(673), - [anon_sym_PIPE_AMP] = ACTIONS(671), - [anon_sym_AMP_AMP] = ACTIONS(671), - [anon_sym_PIPE_PIPE] = ACTIONS(671), - [anon_sym_BQUOTE] = ACTIONS(671), - [sym_comment] = ACTIONS(46), - }, - [1411] = { - [aux_sym_concatenation_repeat1] = STATE(1569), - [sym__concat] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(877), - [anon_sym_PIPE_AMP] = ACTIONS(254), - [anon_sym_AMP_AMP] = ACTIONS(254), - [anon_sym_PIPE_PIPE] = ACTIONS(254), - [anon_sym_BQUOTE] = ACTIONS(254), - [sym_comment] = ACTIONS(46), - }, - [1412] = { - [aux_sym_concatenation_repeat1] = STATE(1569), - [sym__concat] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_PIPE_AMP] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_BQUOTE] = ACTIONS(542), - [sym_comment] = ACTIONS(46), - }, - [1413] = { - [aux_sym_concatenation_repeat1] = STATE(1413), - [sym_word] = ACTIONS(675), - [sym__concat] = ACTIONS(3202), - [sym_variable_name] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_BQUOTE] = ACTIONS(675), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1471), - }, - [1414] = { - [anon_sym_RBRACK] = ACTIONS(3255), - [sym_comment] = ACTIONS(46), - }, - [1415] = { - [anon_sym_RBRACK] = ACTIONS(3257), - [sym_comment] = ACTIONS(46), - }, - [1416] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1417] = { - [sym_file_descriptor] = ACTIONS(2205), - [sym__concat] = ACTIONS(2205), - [anon_sym_PIPE] = ACTIONS(2207), - [anon_sym_RPAREN] = ACTIONS(2207), - [anon_sym_SEMI_SEMI] = ACTIONS(2207), - [anon_sym_PIPE_AMP] = ACTIONS(2207), - [anon_sym_AMP_AMP] = ACTIONS(2207), - [anon_sym_PIPE_PIPE] = ACTIONS(2207), - [anon_sym_LT] = ACTIONS(2207), - [anon_sym_GT] = ACTIONS(2207), - [anon_sym_GT_GT] = ACTIONS(2207), - [anon_sym_AMP_GT] = ACTIONS(2207), - [anon_sym_AMP_GT_GT] = ACTIONS(2207), - [anon_sym_LT_AMP] = ACTIONS(2207), - [anon_sym_GT_AMP] = ACTIONS(2207), - [anon_sym_LT_LT] = ACTIONS(2207), - [anon_sym_LT_LT_DASH] = ACTIONS(2207), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2207), - [anon_sym_LF] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2207), - }, - [1418] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3261), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1419] = { - [sym_file_descriptor] = ACTIONS(2211), - [sym__concat] = ACTIONS(2211), - [anon_sym_PIPE] = ACTIONS(2213), - [anon_sym_RPAREN] = ACTIONS(2213), - [anon_sym_SEMI_SEMI] = ACTIONS(2213), - [anon_sym_PIPE_AMP] = ACTIONS(2213), - [anon_sym_AMP_AMP] = ACTIONS(2213), - [anon_sym_PIPE_PIPE] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_GT] = ACTIONS(2213), - [anon_sym_GT_GT] = ACTIONS(2213), - [anon_sym_AMP_GT] = ACTIONS(2213), - [anon_sym_AMP_GT_GT] = ACTIONS(2213), - [anon_sym_LT_AMP] = ACTIONS(2213), - [anon_sym_GT_AMP] = ACTIONS(2213), - [anon_sym_LT_LT] = ACTIONS(2213), - [anon_sym_LT_LT_DASH] = ACTIONS(2213), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_LF] = ACTIONS(2213), - [anon_sym_AMP] = ACTIONS(2213), - }, - [1420] = { - [anon_sym_RBRACE] = ACTIONS(3259), - [sym_comment] = ACTIONS(46), - }, - [1421] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3263), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1422] = { - [sym_file_descriptor] = ACTIONS(2217), - [sym__concat] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_RPAREN] = ACTIONS(2219), - [anon_sym_SEMI_SEMI] = ACTIONS(2219), - [anon_sym_PIPE_AMP] = ACTIONS(2219), - [anon_sym_AMP_AMP] = ACTIONS(2219), - [anon_sym_PIPE_PIPE] = ACTIONS(2219), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_GT] = ACTIONS(2219), - [anon_sym_GT_GT] = ACTIONS(2219), - [anon_sym_AMP_GT] = ACTIONS(2219), - [anon_sym_AMP_GT_GT] = ACTIONS(2219), - [anon_sym_LT_AMP] = ACTIONS(2219), - [anon_sym_GT_AMP] = ACTIONS(2219), - [anon_sym_LT_LT] = ACTIONS(2219), - [anon_sym_LT_LT_DASH] = ACTIONS(2219), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2219), - [anon_sym_LF] = ACTIONS(2219), - [anon_sym_AMP] = ACTIONS(2219), - }, - [1423] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3265), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1424] = { - [sym_file_descriptor] = ACTIONS(2223), - [sym__concat] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2225), - [anon_sym_RPAREN] = ACTIONS(2225), - [anon_sym_SEMI_SEMI] = ACTIONS(2225), - [anon_sym_PIPE_AMP] = ACTIONS(2225), - [anon_sym_AMP_AMP] = ACTIONS(2225), - [anon_sym_PIPE_PIPE] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_GT] = ACTIONS(2225), - [anon_sym_GT_GT] = ACTIONS(2225), - [anon_sym_AMP_GT] = ACTIONS(2225), - [anon_sym_AMP_GT_GT] = ACTIONS(2225), - [anon_sym_LT_AMP] = ACTIONS(2225), - [anon_sym_GT_AMP] = ACTIONS(2225), - [anon_sym_LT_LT] = ACTIONS(2225), - [anon_sym_LT_LT_DASH] = ACTIONS(2225), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_LF] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2225), - }, - [1425] = { - [anon_sym_RBRACE] = ACTIONS(3263), - [sym_comment] = ACTIONS(46), - }, - [1426] = { - [sym__heredoc_middle] = ACTIONS(1532), - [sym__heredoc_end] = ACTIONS(1532), - [anon_sym_DOLLAR] = ACTIONS(2145), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1532), - [sym_comment] = ACTIONS(46), - }, - [1427] = { - [anon_sym_AT] = ACTIONS(3267), - [sym_comment] = ACTIONS(46), - }, - [1428] = { - [sym__heredoc_middle] = ACTIONS(1538), - [sym__heredoc_end] = ACTIONS(1538), - [anon_sym_DOLLAR] = ACTIONS(2149), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1538), - [sym_comment] = ACTIONS(46), - }, - [1429] = { - [anon_sym_AT] = ACTIONS(3269), - [sym_comment] = ACTIONS(46), - }, - [1430] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(3271), - [anon_sym_RBRACE] = ACTIONS(3273), - [sym_comment] = ACTIONS(46), - }, - [1431] = { - [sym__heredoc_middle] = ACTIONS(1548), - [sym__heredoc_end] = ACTIONS(1548), - [anon_sym_DOLLAR] = ACTIONS(2157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1548), - [sym_comment] = ACTIONS(46), - }, - [1432] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3277), - [sym_comment] = ACTIONS(46), - }, - [1433] = { - [sym__concat] = ACTIONS(3279), - [anon_sym_RBRACE] = ACTIONS(3273), - [sym_comment] = ACTIONS(46), - }, - [1434] = { - [anon_sym_RBRACK] = ACTIONS(3279), - [sym_comment] = ACTIONS(46), - }, - [1435] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3283), - [sym_comment] = ACTIONS(46), - }, - [1436] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3287), - [sym_comment] = ACTIONS(46), - }, - [1437] = { - [sym__concat] = ACTIONS(3289), - [anon_sym_RBRACE] = ACTIONS(3283), - [sym_comment] = ACTIONS(46), - }, - [1438] = { - [anon_sym_RBRACK] = ACTIONS(3289), - [sym_comment] = ACTIONS(46), - }, - [1439] = { - [anon_sym_RBRACK] = ACTIONS(3291), - [sym_comment] = ACTIONS(46), - }, - [1440] = { - [anon_sym_RBRACK] = ACTIONS(3293), - [sym_comment] = ACTIONS(46), - }, - [1441] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1442] = { - [sym_word] = ACTIONS(2205), - [sym__concat] = ACTIONS(2205), - [anon_sym_RPAREN] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [sym_raw_string] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2696), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2205), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2205), - [anon_sym_BQUOTE] = ACTIONS(2205), - [anon_sym_LT_LPAREN] = ACTIONS(2205), - [anon_sym_GT_LPAREN] = ACTIONS(2205), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2696), - }, - [1443] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3297), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1444] = { - [sym_word] = ACTIONS(2211), - [sym__concat] = ACTIONS(2211), - [anon_sym_RPAREN] = ACTIONS(2211), - [anon_sym_DQUOTE] = ACTIONS(2211), - [sym_raw_string] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2700), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2211), - [anon_sym_BQUOTE] = ACTIONS(2211), - [anon_sym_LT_LPAREN] = ACTIONS(2211), - [anon_sym_GT_LPAREN] = ACTIONS(2211), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2700), - }, - [1445] = { - [anon_sym_RBRACE] = ACTIONS(3295), - [sym_comment] = ACTIONS(46), - }, - [1446] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3299), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1447] = { - [sym_word] = ACTIONS(2217), - [sym__concat] = ACTIONS(2217), - [anon_sym_RPAREN] = ACTIONS(2217), - [anon_sym_DQUOTE] = ACTIONS(2217), - [sym_raw_string] = ACTIONS(2217), - [anon_sym_DOLLAR] = ACTIONS(2704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2217), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2217), - [anon_sym_BQUOTE] = ACTIONS(2217), - [anon_sym_LT_LPAREN] = ACTIONS(2217), - [anon_sym_GT_LPAREN] = ACTIONS(2217), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2704), - }, - [1448] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3301), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1449] = { - [sym_word] = ACTIONS(2223), - [sym__concat] = ACTIONS(2223), - [anon_sym_RPAREN] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [sym_raw_string] = ACTIONS(2223), - [anon_sym_DOLLAR] = ACTIONS(2708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2223), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2223), - [anon_sym_BQUOTE] = ACTIONS(2223), - [anon_sym_LT_LPAREN] = ACTIONS(2223), - [anon_sym_GT_LPAREN] = ACTIONS(2223), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2708), - }, - [1450] = { - [anon_sym_RBRACE] = ACTIONS(3299), - [sym_comment] = ACTIONS(46), - }, - [1451] = { - [anon_sym_RBRACE] = ACTIONS(3303), - [sym_comment] = ACTIONS(46), - }, - [1452] = { - [anon_sym_RBRACE] = ACTIONS(3305), - [sym_comment] = ACTIONS(46), - }, - [1453] = { - [sym_file_descriptor] = ACTIONS(2726), - [sym_word] = ACTIONS(2726), - [sym__concat] = ACTIONS(2726), - [sym_variable_name] = ACTIONS(2726), + [anon_sym_RPAREN] = ACTIONS(484), + [anon_sym_SEMI_SEMI] = ACTIONS(484), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(484), + [anon_sym_PIPE_PIPE] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_GT_GT] = ACTIONS(484), + [anon_sym_AMP_GT] = ACTIONS(484), + [anon_sym_AMP_GT_GT] = ACTIONS(484), + [anon_sym_LT_AMP] = ACTIONS(484), + [anon_sym_GT_AMP] = ACTIONS(484), + [anon_sym_LT_LT] = ACTIONS(484), + [anon_sym_LT_LT_DASH] = ACTIONS(484), + [anon_sym_LT_LT_LT] = ACTIONS(484), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(484), + [anon_sym_LF] = ACTIONS(484), + [anon_sym_AMP] = ACTIONS(484), + }, + [946] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [947] = { + [sym_file_descriptor] = ACTIONS(510), + [sym__concat] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(512), + [anon_sym_RPAREN] = ACTIONS(512), + [anon_sym_SEMI_SEMI] = ACTIONS(512), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(512), + [anon_sym_PIPE_PIPE] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_GT_GT] = ACTIONS(512), + [anon_sym_AMP_GT] = ACTIONS(512), + [anon_sym_AMP_GT_GT] = ACTIONS(512), + [anon_sym_LT_AMP] = ACTIONS(512), + [anon_sym_GT_AMP] = ACTIONS(512), + [anon_sym_LT_LT] = ACTIONS(512), + [anon_sym_LT_LT_DASH] = ACTIONS(512), + [anon_sym_LT_LT_LT] = ACTIONS(512), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_LF] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(512), + }, + [948] = { + [sym_file_descriptor] = ACTIONS(514), + [sym__concat] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(516), + [anon_sym_SEMI_SEMI] = ACTIONS(516), + [anon_sym_PIPE_AMP] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(516), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_GT_GT] = ACTIONS(516), + [anon_sym_AMP_GT] = ACTIONS(516), + [anon_sym_AMP_GT_GT] = ACTIONS(516), + [anon_sym_LT_AMP] = ACTIONS(516), + [anon_sym_GT_AMP] = ACTIONS(516), + [anon_sym_LT_LT] = ACTIONS(516), + [anon_sym_LT_LT_DASH] = ACTIONS(516), + [anon_sym_LT_LT_LT] = ACTIONS(516), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_LF] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(516), + }, + [949] = { + [anon_sym_EQ] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [950] = { + [anon_sym_RBRACE] = ACTIONS(3203), + [anon_sym_EQ] = ACTIONS(3205), + [anon_sym_COLON] = ACTIONS(3207), + [anon_sym_COLON_QMARK] = ACTIONS(3205), + [anon_sym_COLON_DASH] = ACTIONS(3205), + [anon_sym_PERCENT] = ACTIONS(3205), + [anon_sym_SLASH] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(3205), + [sym_comment] = ACTIONS(48), + }, + [951] = { + [sym_subscript] = STATE(1441), + [sym_variable_name] = ACTIONS(3209), + [anon_sym_DOLLAR] = ACTIONS(3211), + [anon_sym_DASH] = ACTIONS(3211), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3213), + [anon_sym_STAR] = ACTIONS(3211), + [anon_sym_AT] = ACTIONS(3211), + [anon_sym_QMARK] = ACTIONS(3211), + [anon_sym_0] = ACTIONS(3215), + [anon_sym__] = ACTIONS(3215), + }, + [952] = { + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_COLON] = ACTIONS(3221), + [anon_sym_COLON_QMARK] = ACTIONS(3219), + [anon_sym_COLON_DASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [sym_comment] = ACTIONS(48), + }, + [953] = { + [anon_sym_RBRACE] = ACTIONS(3223), + [anon_sym_EQ] = ACTIONS(3201), + [anon_sym_COLON] = ACTIONS(3225), + [anon_sym_COLON_QMARK] = ACTIONS(3201), + [anon_sym_COLON_DASH] = ACTIONS(3201), + [anon_sym_PERCENT] = ACTIONS(3201), + [anon_sym_SLASH] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(3201), + [sym_comment] = ACTIONS(48), + }, + [954] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3227), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [955] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3227), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [956] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(3227), + [sym_comment] = ACTIONS(48), + }, + [957] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(3227), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [958] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3229), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [959] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3229), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [960] = { + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_RPAREN] = ACTIONS(3231), + [anon_sym_SEMI_SEMI] = ACTIONS(3231), + [anon_sym_PIPE_AMP] = ACTIONS(3231), + [anon_sym_AMP_AMP] = ACTIONS(3231), + [anon_sym_PIPE_PIPE] = ACTIONS(3231), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3231), + [anon_sym_LF] = ACTIONS(3231), + [anon_sym_AMP] = ACTIONS(3231), + }, + [961] = { + [sym_file_redirect] = STATE(150), + [sym_heredoc_redirect] = STATE(150), + [sym_herestring_redirect] = STATE(150), + [aux_sym_command_repeat2] = STATE(551), + [sym_file_descriptor] = ACTIONS(410), [anon_sym_PIPE] = ACTIONS(2728), [anon_sym_RPAREN] = ACTIONS(2728), [anon_sym_SEMI_SEMI] = ACTIONS(2728), [anon_sym_PIPE_AMP] = ACTIONS(2728), [anon_sym_AMP_AMP] = ACTIONS(2728), [anon_sym_PIPE_PIPE] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2728), - [anon_sym_GT] = ACTIONS(2728), - [anon_sym_GT_GT] = ACTIONS(2728), - [anon_sym_AMP_GT] = ACTIONS(2728), - [anon_sym_AMP_GT_GT] = ACTIONS(2728), - [anon_sym_LT_AMP] = ACTIONS(2728), - [anon_sym_GT_AMP] = ACTIONS(2728), - [anon_sym_DQUOTE] = ACTIONS(2728), - [sym_raw_string] = ACTIONS(2728), - [anon_sym_DOLLAR] = ACTIONS(2728), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2728), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2728), - [anon_sym_BQUOTE] = ACTIONS(2728), - [anon_sym_LT_LPAREN] = ACTIONS(2728), - [anon_sym_GT_LPAREN] = ACTIONS(2728), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2728), + [anon_sym_LT] = ACTIONS(412), + [anon_sym_GT] = ACTIONS(412), + [anon_sym_GT_GT] = ACTIONS(412), + [anon_sym_AMP_GT] = ACTIONS(412), + [anon_sym_AMP_GT_GT] = ACTIONS(412), + [anon_sym_LT_AMP] = ACTIONS(412), + [anon_sym_GT_AMP] = ACTIONS(412), + [anon_sym_LT_LT] = ACTIONS(252), + [anon_sym_LT_LT_DASH] = ACTIONS(252), + [anon_sym_LT_LT_LT] = ACTIONS(414), + [sym_comment] = ACTIONS(110), [anon_sym_SEMI] = ACTIONS(2728), [anon_sym_LF] = ACTIONS(2728), [anon_sym_AMP] = ACTIONS(2728), }, + [962] = { + [sym_variable_name] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_RPAREN] = ACTIONS(1631), + [anon_sym_SEMI_SEMI] = ACTIONS(1631), + [anon_sym_PIPE_AMP] = ACTIONS(1631), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_PIPE_PIPE] = ACTIONS(1631), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1631), + [sym_word] = ACTIONS(1631), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_LF] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1631), + }, + [963] = { + [sym_concatenation] = STATE(414), + [sym_string] = STATE(408), + [sym_simple_expansion] = STATE(408), + [sym_expansion] = STATE(408), + [sym_command_substitution] = STATE(408), + [sym_process_substitution] = STATE(408), + [aux_sym_for_statement_repeat1] = STATE(779), + [anon_sym_RPAREN] = ACTIONS(3233), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(846), + }, + [964] = { + [sym_string] = STATE(1448), + [sym_simple_expansion] = STATE(1448), + [sym_expansion] = STATE(1448), + [sym_command_substitution] = STATE(1448), + [sym_process_substitution] = STATE(1448), + [sym__special_characters] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(1086), + [sym_raw_string] = ACTIONS(3237), + [anon_sym_DOLLAR] = ACTIONS(1090), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1092), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1094), + [anon_sym_BQUOTE] = ACTIONS(1096), + [anon_sym_LT_LPAREN] = ACTIONS(1098), + [anon_sym_GT_LPAREN] = ACTIONS(1098), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3235), + }, + [965] = { + [aux_sym_concatenation_repeat1] = STATE(1449), + [sym__concat] = ACTIONS(2059), + [sym_variable_name] = ACTIONS(478), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_SEMI_SEMI] = ACTIONS(480), + [anon_sym_PIPE_AMP] = ACTIONS(480), + [anon_sym_AMP_AMP] = ACTIONS(480), + [anon_sym_PIPE_PIPE] = ACTIONS(480), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(480), + [sym_word] = ACTIONS(480), + [anon_sym_SEMI] = ACTIONS(480), + [anon_sym_LF] = ACTIONS(480), + [anon_sym_AMP] = ACTIONS(480), + }, + [966] = { + [sym__concat] = ACTIONS(482), + [sym_variable_name] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(484), + [anon_sym_SEMI_SEMI] = ACTIONS(484), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(484), + [anon_sym_PIPE_PIPE] = ACTIONS(484), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(484), + [sym_word] = ACTIONS(484), + [anon_sym_SEMI] = ACTIONS(484), + [anon_sym_LF] = ACTIONS(484), + [anon_sym_AMP] = ACTIONS(484), + }, + [967] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(3239), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [968] = { + [sym__concat] = ACTIONS(510), + [sym_variable_name] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(512), + [anon_sym_SEMI_SEMI] = ACTIONS(512), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(512), + [anon_sym_PIPE_PIPE] = ACTIONS(512), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(512), + [sym_word] = ACTIONS(512), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_LF] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(512), + }, + [969] = { + [sym__concat] = ACTIONS(514), + [sym_variable_name] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_SEMI_SEMI] = ACTIONS(516), + [anon_sym_PIPE_AMP] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(516), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(516), + [sym_word] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_LF] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(516), + }, + [970] = { + [anon_sym_EQ] = ACTIONS(3241), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [971] = { + [anon_sym_RBRACE] = ACTIONS(3243), + [anon_sym_EQ] = ACTIONS(3245), + [anon_sym_COLON] = ACTIONS(3247), + [anon_sym_COLON_QMARK] = ACTIONS(3245), + [anon_sym_COLON_DASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [sym_comment] = ACTIONS(48), + }, + [972] = { + [sym_subscript] = STATE(1457), + [sym_variable_name] = ACTIONS(3249), + [anon_sym_DOLLAR] = ACTIONS(3251), + [anon_sym_DASH] = ACTIONS(3251), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3251), + [anon_sym_AT] = ACTIONS(3251), + [anon_sym_QMARK] = ACTIONS(3251), + [anon_sym_0] = ACTIONS(3255), + [anon_sym__] = ACTIONS(3255), + }, + [973] = { + [anon_sym_RBRACE] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(3259), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_COLON_QMARK] = ACTIONS(3259), + [anon_sym_COLON_DASH] = ACTIONS(3259), + [anon_sym_PERCENT] = ACTIONS(3259), + [anon_sym_SLASH] = ACTIONS(3259), + [anon_sym_DASH] = ACTIONS(3259), + [sym_comment] = ACTIONS(48), + }, + [974] = { + [anon_sym_RBRACE] = ACTIONS(3263), + [anon_sym_EQ] = ACTIONS(3241), + [anon_sym_COLON] = ACTIONS(3265), + [anon_sym_COLON_QMARK] = ACTIONS(3241), + [anon_sym_COLON_DASH] = ACTIONS(3241), + [anon_sym_PERCENT] = ACTIONS(3241), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [sym_comment] = ACTIONS(48), + }, + [975] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3267), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [976] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3267), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [977] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(3267), + [sym_comment] = ACTIONS(48), + }, + [978] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(3267), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [979] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3269), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [980] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3269), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [981] = { + [sym_file_descriptor] = ACTIONS(2176), + [sym__concat] = ACTIONS(2176), + [sym_variable_name] = ACTIONS(2176), + [anon_sym_LT] = ACTIONS(3271), + [anon_sym_GT] = ACTIONS(3271), + [anon_sym_GT_GT] = ACTIONS(2176), + [anon_sym_AMP_GT] = ACTIONS(3271), + [anon_sym_AMP_GT_GT] = ACTIONS(2176), + [anon_sym_LT_AMP] = ACTIONS(2176), + [anon_sym_GT_AMP] = ACTIONS(2176), + [sym__special_characters] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(2176), + [sym_raw_string] = ACTIONS(2176), + [anon_sym_DOLLAR] = ACTIONS(3271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2176), + [anon_sym_BQUOTE] = ACTIONS(2176), + [anon_sym_LT_LPAREN] = ACTIONS(2176), + [anon_sym_GT_LPAREN] = ACTIONS(2176), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3271), + }, + [982] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3273), + [sym_comment] = ACTIONS(48), + }, + [983] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3275), + [sym_comment] = ACTIONS(48), + }, + [984] = { + [anon_sym_RBRACE] = ACTIONS(3275), + [sym_comment] = ACTIONS(48), + }, + [985] = { + [sym_file_descriptor] = ACTIONS(2214), + [sym__concat] = ACTIONS(2214), + [sym_variable_name] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_GT] = ACTIONS(3277), + [anon_sym_GT_GT] = ACTIONS(2214), + [anon_sym_AMP_GT] = ACTIONS(3277), + [anon_sym_AMP_GT_GT] = ACTIONS(2214), + [anon_sym_LT_AMP] = ACTIONS(2214), + [anon_sym_GT_AMP] = ACTIONS(2214), + [sym__special_characters] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(2214), + [sym_raw_string] = ACTIONS(2214), + [anon_sym_DOLLAR] = ACTIONS(3277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2214), + [anon_sym_BQUOTE] = ACTIONS(2214), + [anon_sym_LT_LPAREN] = ACTIONS(2214), + [anon_sym_GT_LPAREN] = ACTIONS(2214), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3277), + }, + [986] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3279), + [sym_comment] = ACTIONS(48), + }, + [987] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3281), + [sym_comment] = ACTIONS(48), + }, + [988] = { + [anon_sym_RBRACE] = ACTIONS(3281), + [sym_comment] = ACTIONS(48), + }, + [989] = { + [sym_concatenation] = STATE(1469), + [sym_string] = STATE(1468), + [sym_simple_expansion] = STATE(1468), + [sym_expansion] = STATE(1468), + [sym_command_substitution] = STATE(1468), + [sym_process_substitution] = STATE(1468), + [anon_sym_RBRACE] = ACTIONS(3275), + [sym__special_characters] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3285), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3287), + }, + [990] = { + [sym_file_descriptor] = ACTIONS(2228), + [sym__concat] = ACTIONS(2228), + [sym_variable_name] = ACTIONS(2228), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_GT] = ACTIONS(3289), + [anon_sym_GT_GT] = ACTIONS(2228), + [anon_sym_AMP_GT] = ACTIONS(3289), + [anon_sym_AMP_GT_GT] = ACTIONS(2228), + [anon_sym_LT_AMP] = ACTIONS(2228), + [anon_sym_GT_AMP] = ACTIONS(2228), + [sym__special_characters] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(2228), + [sym_raw_string] = ACTIONS(2228), + [anon_sym_DOLLAR] = ACTIONS(3289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2228), + [anon_sym_BQUOTE] = ACTIONS(2228), + [anon_sym_LT_LPAREN] = ACTIONS(2228), + [anon_sym_GT_LPAREN] = ACTIONS(2228), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3289), + }, + [991] = { + [sym_concatenation] = STATE(1473), + [sym_string] = STATE(1472), + [sym_simple_expansion] = STATE(1472), + [sym_expansion] = STATE(1472), + [sym_command_substitution] = STATE(1472), + [sym_process_substitution] = STATE(1472), + [anon_sym_RBRACE] = ACTIONS(3291), + [sym__special_characters] = ACTIONS(3293), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3295), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3297), + }, + [992] = { + [sym_file_descriptor] = ACTIONS(2240), + [sym__concat] = ACTIONS(2240), + [sym_variable_name] = ACTIONS(2240), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_GT] = ACTIONS(3299), + [anon_sym_GT_GT] = ACTIONS(2240), + [anon_sym_AMP_GT] = ACTIONS(3299), + [anon_sym_AMP_GT_GT] = ACTIONS(2240), + [anon_sym_LT_AMP] = ACTIONS(2240), + [anon_sym_GT_AMP] = ACTIONS(2240), + [sym__special_characters] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(2240), + [sym_raw_string] = ACTIONS(2240), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2240), + [anon_sym_BQUOTE] = ACTIONS(2240), + [anon_sym_LT_LPAREN] = ACTIONS(2240), + [anon_sym_GT_LPAREN] = ACTIONS(2240), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3299), + }, + [993] = { + [sym_concatenation] = STATE(1477), + [sym_string] = STATE(1476), + [sym_simple_expansion] = STATE(1476), + [sym_expansion] = STATE(1476), + [sym_command_substitution] = STATE(1476), + [sym_process_substitution] = STATE(1476), + [anon_sym_RBRACE] = ACTIONS(3301), + [sym__special_characters] = ACTIONS(3303), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3305), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3307), + }, + [994] = { + [sym_file_descriptor] = ACTIONS(2252), + [sym__concat] = ACTIONS(2252), + [sym_variable_name] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_GT] = ACTIONS(3309), + [anon_sym_GT_GT] = ACTIONS(2252), + [anon_sym_AMP_GT] = ACTIONS(3309), + [anon_sym_AMP_GT_GT] = ACTIONS(2252), + [anon_sym_LT_AMP] = ACTIONS(2252), + [anon_sym_GT_AMP] = ACTIONS(2252), + [sym__special_characters] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(2252), + [sym_raw_string] = ACTIONS(2252), + [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2252), + [anon_sym_BQUOTE] = ACTIONS(2252), + [anon_sym_LT_LPAREN] = ACTIONS(2252), + [anon_sym_GT_LPAREN] = ACTIONS(2252), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3309), + }, + [995] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3311), + [sym_comment] = ACTIONS(48), + }, + [996] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3313), + [sym_comment] = ACTIONS(48), + }, + [997] = { + [anon_sym_RBRACE] = ACTIONS(3313), + [sym_comment] = ACTIONS(48), + }, + [998] = { + [sym__concat] = ACTIONS(2176), + [anon_sym_DQUOTE] = ACTIONS(2178), + [sym__string_content] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(2178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2178), + [anon_sym_BQUOTE] = ACTIONS(2178), + [sym_comment] = ACTIONS(110), + }, + [999] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3315), + [sym_comment] = ACTIONS(48), + }, + [1000] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3317), + [sym_comment] = ACTIONS(48), + }, + [1001] = { + [anon_sym_RBRACE] = ACTIONS(3317), + [sym_comment] = ACTIONS(48), + }, + [1002] = { + [sym__concat] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2216), + [sym__string_content] = ACTIONS(3277), + [anon_sym_DOLLAR] = ACTIONS(2216), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2216), + [anon_sym_BQUOTE] = ACTIONS(2216), + [sym_comment] = ACTIONS(110), + }, + [1003] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3319), + [sym_comment] = ACTIONS(48), + }, + [1004] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3321), + [sym_comment] = ACTIONS(48), + }, + [1005] = { + [anon_sym_RBRACE] = ACTIONS(3321), + [sym_comment] = ACTIONS(48), + }, + [1006] = { + [sym_concatenation] = STATE(1486), + [sym_string] = STATE(1485), + [sym_simple_expansion] = STATE(1485), + [sym_expansion] = STATE(1485), + [sym_command_substitution] = STATE(1485), + [sym_process_substitution] = STATE(1485), + [anon_sym_RBRACE] = ACTIONS(3317), + [sym__special_characters] = ACTIONS(3323), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3325), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3327), + }, + [1007] = { + [sym__concat] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2230), + [sym__string_content] = ACTIONS(3289), + [anon_sym_DOLLAR] = ACTIONS(2230), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2230), + [anon_sym_BQUOTE] = ACTIONS(2230), + [sym_comment] = ACTIONS(110), + }, + [1008] = { + [sym_concatenation] = STATE(1490), + [sym_string] = STATE(1489), + [sym_simple_expansion] = STATE(1489), + [sym_expansion] = STATE(1489), + [sym_command_substitution] = STATE(1489), + [sym_process_substitution] = STATE(1489), + [anon_sym_RBRACE] = ACTIONS(3329), + [sym__special_characters] = ACTIONS(3331), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3333), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3335), + }, + [1009] = { + [sym__concat] = ACTIONS(2240), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym__string_content] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(2242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2242), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2242), + [anon_sym_BQUOTE] = ACTIONS(2242), + [sym_comment] = ACTIONS(110), + }, + [1010] = { + [sym_concatenation] = STATE(1494), + [sym_string] = STATE(1493), + [sym_simple_expansion] = STATE(1493), + [sym_expansion] = STATE(1493), + [sym_command_substitution] = STATE(1493), + [sym_process_substitution] = STATE(1493), + [anon_sym_RBRACE] = ACTIONS(3337), + [sym__special_characters] = ACTIONS(3339), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3341), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3343), + }, + [1011] = { + [sym__concat] = ACTIONS(2252), + [anon_sym_DQUOTE] = ACTIONS(2254), + [sym__string_content] = ACTIONS(3309), + [anon_sym_DOLLAR] = ACTIONS(2254), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2254), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2254), + [anon_sym_BQUOTE] = ACTIONS(2254), + [sym_comment] = ACTIONS(110), + }, + [1012] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3345), + [sym_comment] = ACTIONS(48), + }, + [1013] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3347), + [sym_comment] = ACTIONS(48), + }, + [1014] = { + [anon_sym_RBRACE] = ACTIONS(3347), + [sym_comment] = ACTIONS(48), + }, + [1015] = { + [sym_string] = STATE(1497), + [sym_simple_expansion] = STATE(1497), + [sym_expansion] = STATE(1497), + [sym_command_substitution] = STATE(1497), + [sym_process_substitution] = STATE(1497), + [sym__special_characters] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3351), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3349), + }, + [1016] = { + [sym_file_descriptor] = ACTIONS(3353), + [sym__concat] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(3355), + [anon_sym_SEMI_SEMI] = ACTIONS(3355), + [anon_sym_PIPE_AMP] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_LT] = ACTIONS(3355), + [anon_sym_GT] = ACTIONS(3355), + [anon_sym_GT_GT] = ACTIONS(3355), + [anon_sym_AMP_GT] = ACTIONS(3355), + [anon_sym_AMP_GT_GT] = ACTIONS(3355), + [anon_sym_LT_AMP] = ACTIONS(3355), + [anon_sym_GT_AMP] = ACTIONS(3355), + [anon_sym_LT_LT] = ACTIONS(3355), + [anon_sym_LT_LT_DASH] = ACTIONS(3355), + [anon_sym_LT_LT_LT] = ACTIONS(3355), + [sym__special_characters] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [sym_raw_string] = ACTIONS(3355), + [anon_sym_DOLLAR] = ACTIONS(3355), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3355), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3355), + [anon_sym_BQUOTE] = ACTIONS(3355), + [anon_sym_LT_LPAREN] = ACTIONS(3355), + [anon_sym_GT_LPAREN] = ACTIONS(3355), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_LF] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3355), + }, + [1017] = { + [aux_sym_concatenation_repeat1] = STATE(1498), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(478), + [sym_comment] = ACTIONS(48), + }, + [1018] = { + [sym__concat] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [sym_comment] = ACTIONS(48), + }, + [1019] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(3357), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [1020] = { + [sym_file_descriptor] = ACTIONS(3359), + [sym__concat] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3361), + [anon_sym_SEMI_SEMI] = ACTIONS(3361), + [anon_sym_PIPE_AMP] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_GT] = ACTIONS(3361), + [anon_sym_GT_GT] = ACTIONS(3361), + [anon_sym_AMP_GT] = ACTIONS(3361), + [anon_sym_AMP_GT_GT] = ACTIONS(3361), + [anon_sym_LT_AMP] = ACTIONS(3361), + [anon_sym_GT_AMP] = ACTIONS(3361), + [anon_sym_LT_LT] = ACTIONS(3361), + [anon_sym_LT_LT_DASH] = ACTIONS(3361), + [anon_sym_LT_LT_LT] = ACTIONS(3361), + [sym__special_characters] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [sym_raw_string] = ACTIONS(3361), + [anon_sym_DOLLAR] = ACTIONS(3361), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3361), + [anon_sym_BQUOTE] = ACTIONS(3361), + [anon_sym_LT_LPAREN] = ACTIONS(3361), + [anon_sym_GT_LPAREN] = ACTIONS(3361), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_LF] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3361), + }, + [1021] = { + [sym__concat] = ACTIONS(510), + [anon_sym_RBRACE] = ACTIONS(510), + [sym_comment] = ACTIONS(48), + }, + [1022] = { + [sym__concat] = ACTIONS(514), + [anon_sym_RBRACE] = ACTIONS(514), + [sym_comment] = ACTIONS(48), + }, + [1023] = { + [anon_sym_EQ] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1024] = { + [anon_sym_RBRACE] = ACTIONS(3365), + [anon_sym_EQ] = ACTIONS(3367), + [anon_sym_COLON] = ACTIONS(3369), + [anon_sym_COLON_QMARK] = ACTIONS(3367), + [anon_sym_COLON_DASH] = ACTIONS(3367), + [anon_sym_PERCENT] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3367), + [sym_comment] = ACTIONS(48), + }, + [1025] = { + [sym_subscript] = STATE(1506), + [sym_variable_name] = ACTIONS(3371), + [anon_sym_DOLLAR] = ACTIONS(3373), + [anon_sym_DASH] = ACTIONS(3373), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3375), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_AT] = ACTIONS(3373), + [anon_sym_QMARK] = ACTIONS(3373), + [anon_sym_0] = ACTIONS(3377), + [anon_sym__] = ACTIONS(3377), + }, + [1026] = { + [anon_sym_RBRACE] = ACTIONS(3379), + [anon_sym_EQ] = ACTIONS(3381), + [anon_sym_COLON] = ACTIONS(3383), + [anon_sym_COLON_QMARK] = ACTIONS(3381), + [anon_sym_COLON_DASH] = ACTIONS(3381), + [anon_sym_PERCENT] = ACTIONS(3381), + [anon_sym_SLASH] = ACTIONS(3381), + [anon_sym_DASH] = ACTIONS(3381), + [sym_comment] = ACTIONS(48), + }, + [1027] = { + [anon_sym_RBRACE] = ACTIONS(3385), + [anon_sym_EQ] = ACTIONS(3363), + [anon_sym_COLON] = ACTIONS(3387), + [anon_sym_COLON_QMARK] = ACTIONS(3363), + [anon_sym_COLON_DASH] = ACTIONS(3363), + [anon_sym_PERCENT] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [sym_comment] = ACTIONS(48), + }, + [1028] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3389), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1029] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3389), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1030] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(3389), + [sym_comment] = ACTIONS(48), + }, + [1031] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(3389), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1032] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3391), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1033] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3391), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1034] = { + [sym_string] = STATE(796), + [sym_simple_expansion] = STATE(796), + [sym_expansion] = STATE(796), + [sym_command_substitution] = STATE(796), + [sym_process_substitution] = STATE(796), + [anon_sym_RBRACK] = ACTIONS(3393), + [sym__special_characters] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(314), + [sym_raw_string] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(320), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_LT_LPAREN] = ACTIONS(326), + [anon_sym_GT_LPAREN] = ACTIONS(326), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1697), + }, + [1035] = { + [sym__concat] = ACTIONS(1699), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_EQ] = ACTIONS(1701), + [anon_sym_COLON] = ACTIONS(3395), + [anon_sym_COLON_QMARK] = ACTIONS(1701), + [anon_sym_COLON_DASH] = ACTIONS(1701), + [anon_sym_PERCENT] = ACTIONS(1701), + [anon_sym_SLASH] = ACTIONS(1701), + [anon_sym_DASH] = ACTIONS(1701), + [sym_comment] = ACTIONS(48), + }, + [1036] = { + [sym_string] = STATE(796), + [sym_simple_expansion] = STATE(796), + [sym_expansion] = STATE(796), + [sym_command_substitution] = STATE(796), + [sym_process_substitution] = STATE(796), + [anon_sym_RBRACK] = ACTIONS(3397), + [sym__special_characters] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(314), + [sym_raw_string] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(320), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(322), + [anon_sym_BQUOTE] = ACTIONS(324), + [anon_sym_LT_LPAREN] = ACTIONS(326), + [anon_sym_GT_LPAREN] = ACTIONS(326), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1697), + }, + [1037] = { + [sym__concat] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_EQ] = ACTIONS(1711), + [anon_sym_COLON] = ACTIONS(3399), + [anon_sym_COLON_QMARK] = ACTIONS(1711), + [anon_sym_COLON_DASH] = ACTIONS(1711), + [anon_sym_PERCENT] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1711), + [sym_comment] = ACTIONS(48), + }, + [1038] = { + [anon_sym_RBRACK] = ACTIONS(3397), + [sym_comment] = ACTIONS(48), + }, + [1039] = { + [sym_file_descriptor] = ACTIONS(3401), + [sym__concat] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(3403), + [anon_sym_SEMI_SEMI] = ACTIONS(3403), + [anon_sym_PIPE_AMP] = ACTIONS(3403), + [anon_sym_AMP_AMP] = ACTIONS(3403), + [anon_sym_PIPE_PIPE] = ACTIONS(3403), + [anon_sym_LT] = ACTIONS(3403), + [anon_sym_GT] = ACTIONS(3403), + [anon_sym_GT_GT] = ACTIONS(3403), + [anon_sym_AMP_GT] = ACTIONS(3403), + [anon_sym_AMP_GT_GT] = ACTIONS(3403), + [anon_sym_LT_AMP] = ACTIONS(3403), + [anon_sym_GT_AMP] = ACTIONS(3403), + [anon_sym_LT_LT] = ACTIONS(3403), + [anon_sym_LT_LT_DASH] = ACTIONS(3403), + [anon_sym_LT_LT_LT] = ACTIONS(3403), + [sym__special_characters] = ACTIONS(3403), + [anon_sym_DQUOTE] = ACTIONS(3403), + [sym_raw_string] = ACTIONS(3403), + [anon_sym_DOLLAR] = ACTIONS(3403), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3403), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3403), + [anon_sym_BQUOTE] = ACTIONS(3403), + [anon_sym_LT_LPAREN] = ACTIONS(3403), + [anon_sym_GT_LPAREN] = ACTIONS(3403), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_LF] = ACTIONS(3403), + [anon_sym_AMP] = ACTIONS(3403), + }, + [1040] = { + [sym_file_descriptor] = ACTIONS(3405), + [sym__concat] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(3407), + [anon_sym_SEMI_SEMI] = ACTIONS(3407), + [anon_sym_PIPE_AMP] = ACTIONS(3407), + [anon_sym_AMP_AMP] = ACTIONS(3407), + [anon_sym_PIPE_PIPE] = ACTIONS(3407), + [anon_sym_LT] = ACTIONS(3407), + [anon_sym_GT] = ACTIONS(3407), + [anon_sym_GT_GT] = ACTIONS(3407), + [anon_sym_AMP_GT] = ACTIONS(3407), + [anon_sym_AMP_GT_GT] = ACTIONS(3407), + [anon_sym_LT_AMP] = ACTIONS(3407), + [anon_sym_GT_AMP] = ACTIONS(3407), + [anon_sym_LT_LT] = ACTIONS(3407), + [anon_sym_LT_LT_DASH] = ACTIONS(3407), + [anon_sym_LT_LT_LT] = ACTIONS(3407), + [sym__special_characters] = ACTIONS(3407), + [anon_sym_DQUOTE] = ACTIONS(3407), + [sym_raw_string] = ACTIONS(3407), + [anon_sym_DOLLAR] = ACTIONS(3407), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3407), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3407), + [anon_sym_BQUOTE] = ACTIONS(3407), + [anon_sym_LT_LPAREN] = ACTIONS(3407), + [anon_sym_GT_LPAREN] = ACTIONS(3407), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3407), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_LF] = ACTIONS(3407), + [anon_sym_AMP] = ACTIONS(3407), + }, + [1041] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3409), + [sym_comment] = ACTIONS(48), + }, + [1042] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3411), + [sym_comment] = ACTIONS(48), + }, + [1043] = { + [anon_sym_RBRACE] = ACTIONS(3411), + [sym_comment] = ACTIONS(48), + }, + [1044] = { + [sym_file_descriptor] = ACTIONS(3413), + [sym__concat] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(3415), + [anon_sym_SEMI_SEMI] = ACTIONS(3415), + [anon_sym_PIPE_AMP] = ACTIONS(3415), + [anon_sym_AMP_AMP] = ACTIONS(3415), + [anon_sym_PIPE_PIPE] = ACTIONS(3415), + [anon_sym_LT] = ACTIONS(3415), + [anon_sym_GT] = ACTIONS(3415), + [anon_sym_GT_GT] = ACTIONS(3415), + [anon_sym_AMP_GT] = ACTIONS(3415), + [anon_sym_AMP_GT_GT] = ACTIONS(3415), + [anon_sym_LT_AMP] = ACTIONS(3415), + [anon_sym_GT_AMP] = ACTIONS(3415), + [anon_sym_LT_LT] = ACTIONS(3415), + [anon_sym_LT_LT_DASH] = ACTIONS(3415), + [anon_sym_LT_LT_LT] = ACTIONS(3415), + [sym__special_characters] = ACTIONS(3415), + [anon_sym_DQUOTE] = ACTIONS(3415), + [sym_raw_string] = ACTIONS(3415), + [anon_sym_DOLLAR] = ACTIONS(3415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3415), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3415), + [anon_sym_BQUOTE] = ACTIONS(3415), + [anon_sym_LT_LPAREN] = ACTIONS(3415), + [anon_sym_GT_LPAREN] = ACTIONS(3415), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_LF] = ACTIONS(3415), + [anon_sym_AMP] = ACTIONS(3415), + }, + [1045] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3417), + [sym_comment] = ACTIONS(48), + }, + [1046] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3419), + [sym_comment] = ACTIONS(48), + }, + [1047] = { + [anon_sym_RBRACE] = ACTIONS(3419), + [sym_comment] = ACTIONS(48), + }, + [1048] = { + [sym_file_descriptor] = ACTIONS(3421), + [sym__concat] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(3423), + [anon_sym_SEMI_SEMI] = ACTIONS(3423), + [anon_sym_PIPE_AMP] = ACTIONS(3423), + [anon_sym_AMP_AMP] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3423), + [anon_sym_GT] = ACTIONS(3423), + [anon_sym_GT_GT] = ACTIONS(3423), + [anon_sym_AMP_GT] = ACTIONS(3423), + [anon_sym_AMP_GT_GT] = ACTIONS(3423), + [anon_sym_LT_AMP] = ACTIONS(3423), + [anon_sym_GT_AMP] = ACTIONS(3423), + [anon_sym_LT_LT] = ACTIONS(3423), + [anon_sym_LT_LT_DASH] = ACTIONS(3423), + [anon_sym_LT_LT_LT] = ACTIONS(3423), + [sym__special_characters] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_raw_string] = ACTIONS(3423), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3423), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3423), + [anon_sym_BQUOTE] = ACTIONS(3423), + [anon_sym_LT_LPAREN] = ACTIONS(3423), + [anon_sym_GT_LPAREN] = ACTIONS(3423), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_LF] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3423), + }, + [1049] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3425), + [sym_comment] = ACTIONS(48), + }, + [1050] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3427), + [sym_comment] = ACTIONS(48), + }, + [1051] = { + [anon_sym_RBRACE] = ACTIONS(3427), + [sym_comment] = ACTIONS(48), + }, + [1052] = { + [sym_file_descriptor] = ACTIONS(3429), + [sym__concat] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_SEMI_SEMI] = ACTIONS(3431), + [anon_sym_PIPE_AMP] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_PIPE_PIPE] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_AMP_GT] = ACTIONS(3431), + [anon_sym_AMP_GT_GT] = ACTIONS(3431), + [anon_sym_LT_AMP] = ACTIONS(3431), + [anon_sym_GT_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_LT_LT_DASH] = ACTIONS(3431), + [anon_sym_LT_LT_LT] = ACTIONS(3431), + [sym__special_characters] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym_raw_string] = ACTIONS(3431), + [anon_sym_DOLLAR] = ACTIONS(3431), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3431), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3431), + [anon_sym_BQUOTE] = ACTIONS(3431), + [anon_sym_LT_LPAREN] = ACTIONS(3431), + [anon_sym_GT_LPAREN] = ACTIONS(3431), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_LF] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + }, + [1053] = { + [sym_file_descriptor] = ACTIONS(3433), + [sym__concat] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(3435), + [anon_sym_SEMI_SEMI] = ACTIONS(3435), + [anon_sym_PIPE_AMP] = ACTIONS(3435), + [anon_sym_AMP_AMP] = ACTIONS(3435), + [anon_sym_PIPE_PIPE] = ACTIONS(3435), + [anon_sym_LT] = ACTIONS(3435), + [anon_sym_GT] = ACTIONS(3435), + [anon_sym_GT_GT] = ACTIONS(3435), + [anon_sym_AMP_GT] = ACTIONS(3435), + [anon_sym_AMP_GT_GT] = ACTIONS(3435), + [anon_sym_LT_AMP] = ACTIONS(3435), + [anon_sym_GT_AMP] = ACTIONS(3435), + [anon_sym_LT_LT] = ACTIONS(3435), + [anon_sym_LT_LT_DASH] = ACTIONS(3435), + [anon_sym_LT_LT_LT] = ACTIONS(3435), + [sym__special_characters] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(3435), + [sym_raw_string] = ACTIONS(3435), + [anon_sym_DOLLAR] = ACTIONS(3435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3435), + [anon_sym_BQUOTE] = ACTIONS(3435), + [anon_sym_LT_LPAREN] = ACTIONS(3435), + [anon_sym_GT_LPAREN] = ACTIONS(3435), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3435), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_LF] = ACTIONS(3435), + [anon_sym_AMP] = ACTIONS(3435), + }, + [1054] = { + [sym_file_descriptor] = ACTIONS(1629), + [sym_variable_name] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(3437), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_PIPE_AMP] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE_PIPE] = ACTIONS(3437), + [anon_sym_LT] = ACTIONS(3437), + [anon_sym_GT] = ACTIONS(3437), + [anon_sym_GT_GT] = ACTIONS(1629), + [anon_sym_AMP_GT] = ACTIONS(3437), + [anon_sym_AMP_GT_GT] = ACTIONS(1629), + [anon_sym_LT_AMP] = ACTIONS(1629), + [anon_sym_GT_AMP] = ACTIONS(1629), + [sym__special_characters] = ACTIONS(3437), + [anon_sym_DQUOTE] = ACTIONS(1629), + [sym_raw_string] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(3437), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1629), + [anon_sym_BQUOTE] = ACTIONS(1629), + [anon_sym_LT_LPAREN] = ACTIONS(1629), + [anon_sym_GT_LPAREN] = ACTIONS(1629), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1631), + }, + [1055] = { + [sym_concatenation] = STATE(414), + [sym_string] = STATE(408), + [sym_simple_expansion] = STATE(408), + [sym_expansion] = STATE(408), + [sym_command_substitution] = STATE(408), + [sym_process_substitution] = STATE(408), + [aux_sym_for_statement_repeat1] = STATE(779), + [anon_sym_RPAREN] = ACTIONS(3439), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(846), + }, + [1056] = { + [sym_string] = STATE(1521), + [sym_simple_expansion] = STATE(1521), + [sym_expansion] = STATE(1521), + [sym_command_substitution] = STATE(1521), + [sym_process_substitution] = STATE(1521), + [sym__special_characters] = ACTIONS(3441), + [anon_sym_DQUOTE] = ACTIONS(1291), + [sym_raw_string] = ACTIONS(3443), + [anon_sym_DOLLAR] = ACTIONS(1295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1299), + [anon_sym_BQUOTE] = ACTIONS(1301), + [anon_sym_LT_LPAREN] = ACTIONS(1303), + [anon_sym_GT_LPAREN] = ACTIONS(1303), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3441), + }, + [1057] = { + [aux_sym_concatenation_repeat1] = STATE(1522), + [sym_file_descriptor] = ACTIONS(478), + [sym__concat] = ACTIONS(2264), + [sym_variable_name] = ACTIONS(478), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_RPAREN] = ACTIONS(478), + [anon_sym_PIPE_AMP] = ACTIONS(478), + [anon_sym_AMP_AMP] = ACTIONS(478), + [anon_sym_PIPE_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(1117), + [anon_sym_GT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(478), + [anon_sym_AMP_GT] = ACTIONS(1117), + [anon_sym_AMP_GT_GT] = ACTIONS(478), + [anon_sym_LT_AMP] = ACTIONS(478), + [anon_sym_GT_AMP] = ACTIONS(478), + [sym__special_characters] = ACTIONS(1117), + [anon_sym_DQUOTE] = ACTIONS(478), + [sym_raw_string] = ACTIONS(478), + [anon_sym_DOLLAR] = ACTIONS(1117), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(478), + [anon_sym_BQUOTE] = ACTIONS(478), + [anon_sym_LT_LPAREN] = ACTIONS(478), + [anon_sym_GT_LPAREN] = ACTIONS(478), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(480), + }, + [1058] = { + [sym_file_descriptor] = ACTIONS(482), + [sym__concat] = ACTIONS(482), + [sym_variable_name] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(1119), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_PIPE_AMP] = ACTIONS(482), + [anon_sym_AMP_AMP] = ACTIONS(482), + [anon_sym_PIPE_PIPE] = ACTIONS(1119), + [anon_sym_LT] = ACTIONS(1119), + [anon_sym_GT] = ACTIONS(1119), + [anon_sym_GT_GT] = ACTIONS(482), + [anon_sym_AMP_GT] = ACTIONS(1119), + [anon_sym_AMP_GT_GT] = ACTIONS(482), + [anon_sym_LT_AMP] = ACTIONS(482), + [anon_sym_GT_AMP] = ACTIONS(482), + [sym__special_characters] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(482), + [sym_raw_string] = ACTIONS(482), + [anon_sym_DOLLAR] = ACTIONS(1119), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_LT_LPAREN] = ACTIONS(482), + [anon_sym_GT_LPAREN] = ACTIONS(482), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(484), + }, + [1059] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(3445), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [1060] = { + [sym_file_descriptor] = ACTIONS(510), + [sym__concat] = ACTIONS(510), + [sym_variable_name] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_RPAREN] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_PIPE_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1123), + [anon_sym_GT] = ACTIONS(1123), + [anon_sym_GT_GT] = ACTIONS(510), + [anon_sym_AMP_GT] = ACTIONS(1123), + [anon_sym_AMP_GT_GT] = ACTIONS(510), + [anon_sym_LT_AMP] = ACTIONS(510), + [anon_sym_GT_AMP] = ACTIONS(510), + [sym__special_characters] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(510), + [sym_raw_string] = ACTIONS(510), + [anon_sym_DOLLAR] = ACTIONS(1123), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(510), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(510), + [anon_sym_BQUOTE] = ACTIONS(510), + [anon_sym_LT_LPAREN] = ACTIONS(510), + [anon_sym_GT_LPAREN] = ACTIONS(510), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(512), + }, + [1061] = { + [sym_file_descriptor] = ACTIONS(514), + [sym__concat] = ACTIONS(514), + [sym_variable_name] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_RPAREN] = ACTIONS(514), + [anon_sym_PIPE_AMP] = ACTIONS(514), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(1125), + [anon_sym_LT] = ACTIONS(1125), + [anon_sym_GT] = ACTIONS(1125), + [anon_sym_GT_GT] = ACTIONS(514), + [anon_sym_AMP_GT] = ACTIONS(1125), + [anon_sym_AMP_GT_GT] = ACTIONS(514), + [anon_sym_LT_AMP] = ACTIONS(514), + [anon_sym_GT_AMP] = ACTIONS(514), + [sym__special_characters] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(514), + [sym_raw_string] = ACTIONS(514), + [anon_sym_DOLLAR] = ACTIONS(1125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(514), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(514), + [anon_sym_LT_LPAREN] = ACTIONS(514), + [anon_sym_GT_LPAREN] = ACTIONS(514), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(516), + }, + [1062] = { + [anon_sym_EQ] = ACTIONS(3447), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1063] = { + [anon_sym_RBRACE] = ACTIONS(3449), + [anon_sym_EQ] = ACTIONS(3451), + [anon_sym_COLON] = ACTIONS(3453), + [anon_sym_COLON_QMARK] = ACTIONS(3451), + [anon_sym_COLON_DASH] = ACTIONS(3451), + [anon_sym_PERCENT] = ACTIONS(3451), + [anon_sym_SLASH] = ACTIONS(3451), + [anon_sym_DASH] = ACTIONS(3451), + [sym_comment] = ACTIONS(48), + }, + [1064] = { + [sym_subscript] = STATE(1530), + [sym_variable_name] = ACTIONS(3455), + [anon_sym_DOLLAR] = ACTIONS(3457), + [anon_sym_DASH] = ACTIONS(3457), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3459), + [anon_sym_STAR] = ACTIONS(3457), + [anon_sym_AT] = ACTIONS(3457), + [anon_sym_QMARK] = ACTIONS(3457), + [anon_sym_0] = ACTIONS(3461), + [anon_sym__] = ACTIONS(3461), + }, + [1065] = { + [anon_sym_RBRACE] = ACTIONS(3463), + [anon_sym_EQ] = ACTIONS(3465), + [anon_sym_COLON] = ACTIONS(3467), + [anon_sym_COLON_QMARK] = ACTIONS(3465), + [anon_sym_COLON_DASH] = ACTIONS(3465), + [anon_sym_PERCENT] = ACTIONS(3465), + [anon_sym_SLASH] = ACTIONS(3465), + [anon_sym_DASH] = ACTIONS(3465), + [sym_comment] = ACTIONS(48), + }, + [1066] = { + [anon_sym_RBRACE] = ACTIONS(3469), + [anon_sym_EQ] = ACTIONS(3447), + [anon_sym_COLON] = ACTIONS(3471), + [anon_sym_COLON_QMARK] = ACTIONS(3447), + [anon_sym_COLON_DASH] = ACTIONS(3447), + [anon_sym_PERCENT] = ACTIONS(3447), + [anon_sym_SLASH] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3447), + [sym_comment] = ACTIONS(48), + }, + [1067] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3473), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1068] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3473), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1069] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(3473), + [sym_comment] = ACTIONS(48), + }, + [1070] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(3473), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1071] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3475), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1072] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3475), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1073] = { + [sym_concatenation] = STATE(462), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_for_statement_repeat1] = STATE(833), + [anon_sym_SEMI_SEMI] = ACTIONS(3477), + [sym__special_characters] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(1767), + [sym_raw_string] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1773), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1775), + [anon_sym_BQUOTE] = ACTIONS(1777), + [anon_sym_LT_LPAREN] = ACTIONS(1779), + [anon_sym_GT_LPAREN] = ACTIONS(1779), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1769), + [anon_sym_SEMI] = ACTIONS(3477), + [anon_sym_LF] = ACTIONS(3477), + [anon_sym_AMP] = ACTIONS(3477), + }, + [1074] = { + [anon_sym_PIPE] = ACTIONS(3479), + [anon_sym_RPAREN] = ACTIONS(3481), + [anon_sym_PIPE_AMP] = ACTIONS(3481), + [anon_sym_AMP_AMP] = ACTIONS(3481), + [anon_sym_PIPE_PIPE] = ACTIONS(3481), + [anon_sym_BQUOTE] = ACTIONS(3481), + [sym_comment] = ACTIONS(48), + }, + [1075] = { + [sym__terminated_statement] = STATE(465), + [sym_for_statement] = STATE(466), + [sym_while_statement] = STATE(466), + [sym_if_statement] = STATE(466), + [sym_case_statement] = STATE(466), + [sym_function_definition] = STATE(466), + [sym_subshell] = STATE(466), + [sym_pipeline] = STATE(466), + [sym_list] = STATE(466), + [sym_command] = STATE(466), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(467), + [sym_declaration_command] = STATE(466), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(836), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_done] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), + }, + [1076] = { + [anon_sym_PIPE] = ACTIONS(3485), + [anon_sym_RPAREN] = ACTIONS(3487), + [anon_sym_PIPE_AMP] = ACTIONS(3487), + [anon_sym_AMP_AMP] = ACTIONS(3487), + [anon_sym_PIPE_PIPE] = ACTIONS(3487), + [anon_sym_BQUOTE] = ACTIONS(3487), + [sym_comment] = ACTIONS(48), + }, + [1077] = { + [anon_sym_fi] = ACTIONS(3489), + [sym_comment] = ACTIONS(48), + }, + [1078] = { + [sym__terminated_statement] = STATE(472), + [sym_for_statement] = STATE(473), + [sym_while_statement] = STATE(473), + [sym_if_statement] = STATE(473), + [sym_elif_clause] = STATE(474), + [sym_else_clause] = STATE(1539), + [sym_case_statement] = STATE(473), + [sym_function_definition] = STATE(473), + [sym_subshell] = STATE(473), + [sym_pipeline] = STATE(473), + [sym_list] = STATE(473), + [sym_command] = STATE(473), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(476), + [sym_declaration_command] = STATE(473), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(845), + [aux_sym_if_statement_repeat1] = STATE(1540), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_fi] = ACTIONS(3491), + [anon_sym_elif] = ACTIONS(924), + [anon_sym_else] = ACTIONS(926), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), + }, + [1079] = { + [sym_elif_clause] = STATE(474), + [sym_else_clause] = STATE(1539), + [aux_sym_if_statement_repeat1] = STATE(847), + [anon_sym_fi] = ACTIONS(3489), + [anon_sym_elif] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1801), + [sym_comment] = ACTIONS(48), + }, + [1080] = { + [sym_case_item] = STATE(857), + [sym_concatenation] = STATE(858), + [sym_string] = STATE(851), + [sym_simple_expansion] = STATE(851), + [sym_expansion] = STATE(851), + [sym_command_substitution] = STATE(851), + [sym_process_substitution] = STATE(851), + [aux_sym_case_statement_repeat1] = STATE(1542), + [anon_sym_esac] = ACTIONS(3493), + [sym__special_characters] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1807), + [sym_raw_string] = ACTIONS(1809), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1815), + [anon_sym_BQUOTE] = ACTIONS(1817), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1821), + }, + [1081] = { + [anon_sym_SEMI_SEMI] = ACTIONS(3495), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3495), + [anon_sym_LF] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3495), + }, + [1082] = { + [sym_case_item] = STATE(857), + [sym_concatenation] = STATE(858), + [sym_string] = STATE(851), + [sym_simple_expansion] = STATE(851), + [sym_expansion] = STATE(851), + [sym_command_substitution] = STATE(851), + [sym_process_substitution] = STATE(851), + [aux_sym_case_statement_repeat1] = STATE(1545), + [anon_sym_esac] = ACTIONS(3497), + [sym__special_characters] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1807), + [sym_raw_string] = ACTIONS(1809), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1815), + [anon_sym_BQUOTE] = ACTIONS(1817), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1821), + }, + [1083] = { + [anon_sym_SEMI_SEMI] = ACTIONS(3499), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3499), + [anon_sym_LF] = ACTIONS(3499), + [anon_sym_AMP] = ACTIONS(3499), + }, + [1084] = { + [sym_compound_statement] = STATE(1547), + [anon_sym_LBRACE] = ACTIONS(1325), + [sym_comment] = ACTIONS(48), + }, + [1085] = { + [sym_file_descriptor] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(3501), + [anon_sym_RPAREN] = ACTIONS(1872), + [anon_sym_PIPE_AMP] = ACTIONS(1872), + [anon_sym_AMP_AMP] = ACTIONS(1872), + [anon_sym_PIPE_PIPE] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_GT] = ACTIONS(3501), + [anon_sym_GT_GT] = ACTIONS(1872), + [anon_sym_AMP_GT] = ACTIONS(3501), + [anon_sym_AMP_GT_GT] = ACTIONS(1872), + [anon_sym_LT_AMP] = ACTIONS(1872), + [anon_sym_GT_AMP] = ACTIONS(1872), + [anon_sym_BQUOTE] = ACTIONS(1872), + [sym_comment] = ACTIONS(48), + }, + [1086] = { + [sym__terminated_statement] = STATE(500), + [sym_for_statement] = STATE(501), + [sym_while_statement] = STATE(501), + [sym_if_statement] = STATE(501), + [sym_case_statement] = STATE(501), + [sym_function_definition] = STATE(501), + [sym_subshell] = STATE(501), + [sym_pipeline] = STATE(501), + [sym_list] = STATE(501), + [sym_command] = STATE(501), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(502), + [sym_declaration_command] = STATE(501), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(884), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_RBRACE] = ACTIONS(3503), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), + }, + [1087] = { + [anon_sym_LT] = ACTIONS(3505), + [anon_sym_GT] = ACTIONS(3505), + [anon_sym_GT_GT] = ACTIONS(3507), + [anon_sym_AMP_GT] = ACTIONS(3505), + [anon_sym_AMP_GT_GT] = ACTIONS(3507), + [anon_sym_LT_AMP] = ACTIONS(3507), + [anon_sym_GT_AMP] = ACTIONS(3507), + [sym_comment] = ACTIONS(48), + }, + [1088] = { + [sym_concatenation] = STATE(1558), + [sym_string] = STATE(1552), + [sym_simple_expansion] = STATE(1552), + [sym_expansion] = STATE(1552), + [sym_command_substitution] = STATE(1552), + [sym_process_substitution] = STATE(1552), + [sym__special_characters] = ACTIONS(3509), + [anon_sym_DQUOTE] = ACTIONS(3511), + [sym_raw_string] = ACTIONS(3513), + [anon_sym_DOLLAR] = ACTIONS(3515), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3517), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3519), + [anon_sym_BQUOTE] = ACTIONS(3521), + [anon_sym_LT_LPAREN] = ACTIONS(3523), + [anon_sym_GT_LPAREN] = ACTIONS(3523), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3525), + }, + [1089] = { + [anon_sym_PIPE] = ACTIONS(3527), + [anon_sym_RPAREN] = ACTIONS(3529), + [anon_sym_PIPE_AMP] = ACTIONS(3529), + [anon_sym_AMP_AMP] = ACTIONS(3529), + [anon_sym_PIPE_PIPE] = ACTIONS(3529), + [anon_sym_BQUOTE] = ACTIONS(3529), + [sym_comment] = ACTIONS(48), + }, + [1090] = { + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_RPAREN] = ACTIONS(3533), + [anon_sym_PIPE_AMP] = ACTIONS(3533), + [anon_sym_AMP_AMP] = ACTIONS(3533), + [anon_sym_PIPE_PIPE] = ACTIONS(3533), + [anon_sym_BQUOTE] = ACTIONS(3533), + [sym_comment] = ACTIONS(48), + }, + [1091] = { + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(684), + [anon_sym_for] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_case] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(3535), + [anon_sym_function] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_declare] = ACTIONS(686), + [anon_sym_typeset] = ACTIONS(686), + [anon_sym_export] = ACTIONS(686), + [anon_sym_readonly] = ACTIONS(686), + [anon_sym_local] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(684), + [anon_sym_AMP_GT] = ACTIONS(686), + [anon_sym_AMP_GT_GT] = ACTIONS(684), + [anon_sym_LT_AMP] = ACTIONS(684), + [anon_sym_GT_AMP] = ACTIONS(684), + [sym__special_characters] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(684), + [sym_raw_string] = ACTIONS(684), + [anon_sym_DOLLAR] = ACTIONS(686), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(684), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(684), + [anon_sym_BQUOTE] = ACTIONS(684), + [anon_sym_LT_LPAREN] = ACTIONS(684), + [anon_sym_GT_LPAREN] = ACTIONS(684), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(688), + }, + [1092] = { + [sym_variable_name] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(2260), + [anon_sym_RPAREN] = ACTIONS(824), + [anon_sym_PIPE_AMP] = ACTIONS(824), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_BQUOTE] = ACTIONS(824), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2260), + [sym_word] = ACTIONS(826), + }, + [1093] = { + [sym_concatenation] = STATE(414), + [sym_string] = STATE(408), + [sym_simple_expansion] = STATE(408), + [sym_expansion] = STATE(408), + [sym_command_substitution] = STATE(408), + [sym_process_substitution] = STATE(408), + [aux_sym_for_statement_repeat1] = STATE(1561), + [anon_sym_RPAREN] = ACTIONS(3537), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(846), + }, + [1094] = { + [aux_sym_concatenation_repeat1] = STATE(1563), + [sym__concat] = ACTIONS(3539), + [sym_variable_name] = ACTIONS(848), + [anon_sym_PIPE] = ACTIONS(2266), + [anon_sym_RPAREN] = ACTIONS(848), + [anon_sym_PIPE_AMP] = ACTIONS(848), + [anon_sym_AMP_AMP] = ACTIONS(848), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2266), + [sym_word] = ACTIONS(852), + }, + [1095] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(1565), + [anon_sym_DQUOTE] = ACTIONS(3541), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [1096] = { + [aux_sym_concatenation_repeat1] = STATE(1563), + [sym__concat] = ACTIONS(3539), + [sym_variable_name] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(2260), + [anon_sym_RPAREN] = ACTIONS(824), + [anon_sym_PIPE_AMP] = ACTIONS(824), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2260), + [sym_word] = ACTIONS(826), + }, + [1097] = { + [anon_sym_DOLLAR] = ACTIONS(3543), + [anon_sym_DASH] = ACTIONS(3543), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3545), + [anon_sym_STAR] = ACTIONS(3543), + [anon_sym_AT] = ACTIONS(3543), + [anon_sym_QMARK] = ACTIONS(3543), + [anon_sym_0] = ACTIONS(3547), + [anon_sym__] = ACTIONS(3547), + }, + [1098] = { + [sym_subscript] = STATE(1572), + [sym_variable_name] = ACTIONS(3549), + [anon_sym_DOLLAR] = ACTIONS(3551), + [anon_sym_POUND] = ACTIONS(3553), + [anon_sym_DASH] = ACTIONS(3551), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3555), + [anon_sym_STAR] = ACTIONS(3551), + [anon_sym_AT] = ACTIONS(3551), + [anon_sym_QMARK] = ACTIONS(3551), + [anon_sym_0] = ACTIONS(3557), + [anon_sym__] = ACTIONS(3557), + }, + [1099] = { + [sym_for_statement] = STATE(1573), + [sym_while_statement] = STATE(1573), + [sym_if_statement] = STATE(1573), + [sym_case_statement] = STATE(1573), + [sym_function_definition] = STATE(1573), + [sym_subshell] = STATE(1573), + [sym_pipeline] = STATE(1573), + [sym_list] = STATE(1573), + [sym_command] = STATE(1573), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1574), + [sym_declaration_command] = STATE(1573), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [1100] = { + [sym_for_statement] = STATE(1575), + [sym_while_statement] = STATE(1575), + [sym_if_statement] = STATE(1575), + [sym_case_statement] = STATE(1575), + [sym_function_definition] = STATE(1575), + [sym_subshell] = STATE(1575), + [sym_pipeline] = STATE(1575), + [sym_list] = STATE(1575), + [sym_command] = STATE(1575), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(1576), + [sym_declaration_command] = STATE(1575), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), + }, + [1101] = { + [sym_for_statement] = STATE(1577), + [sym_while_statement] = STATE(1577), + [sym_if_statement] = STATE(1577), + [sym_case_statement] = STATE(1577), + [sym_function_definition] = STATE(1577), + [sym_subshell] = STATE(1577), + [sym_pipeline] = STATE(1577), + [sym_list] = STATE(1577), + [sym_command] = STATE(1577), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1578), + [sym_declaration_command] = STATE(1577), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [1102] = { + [sym_file_descriptor] = ACTIONS(2176), + [sym__concat] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(3271), + [anon_sym_RPAREN] = ACTIONS(2176), + [anon_sym_PIPE_AMP] = ACTIONS(2176), + [anon_sym_AMP_AMP] = ACTIONS(2176), + [anon_sym_PIPE_PIPE] = ACTIONS(3271), + [anon_sym_LT] = ACTIONS(3271), + [anon_sym_GT] = ACTIONS(3271), + [anon_sym_GT_GT] = ACTIONS(2176), + [anon_sym_AMP_GT] = ACTIONS(3271), + [anon_sym_AMP_GT_GT] = ACTIONS(2176), + [anon_sym_LT_AMP] = ACTIONS(2176), + [anon_sym_GT_AMP] = ACTIONS(2176), + [anon_sym_LT_LT] = ACTIONS(3271), + [anon_sym_LT_LT_DASH] = ACTIONS(2176), + [anon_sym_LT_LT_LT] = ACTIONS(2176), + [sym__special_characters] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(2176), + [sym_raw_string] = ACTIONS(2176), + [anon_sym_DOLLAR] = ACTIONS(3271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2176), + [anon_sym_BQUOTE] = ACTIONS(2176), + [anon_sym_LT_LPAREN] = ACTIONS(2176), + [anon_sym_GT_LPAREN] = ACTIONS(2176), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2178), + }, + [1103] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3559), + [sym_comment] = ACTIONS(48), + }, + [1104] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3561), + [sym_comment] = ACTIONS(48), + }, + [1105] = { + [anon_sym_RBRACE] = ACTIONS(3561), + [sym_comment] = ACTIONS(48), + }, + [1106] = { + [sym_file_descriptor] = ACTIONS(2214), + [sym__concat] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_RPAREN] = ACTIONS(2214), + [anon_sym_PIPE_AMP] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_GT] = ACTIONS(3277), + [anon_sym_GT_GT] = ACTIONS(2214), + [anon_sym_AMP_GT] = ACTIONS(3277), + [anon_sym_AMP_GT_GT] = ACTIONS(2214), + [anon_sym_LT_AMP] = ACTIONS(2214), + [anon_sym_GT_AMP] = ACTIONS(2214), + [anon_sym_LT_LT] = ACTIONS(3277), + [anon_sym_LT_LT_DASH] = ACTIONS(2214), + [anon_sym_LT_LT_LT] = ACTIONS(2214), + [sym__special_characters] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(2214), + [sym_raw_string] = ACTIONS(2214), + [anon_sym_DOLLAR] = ACTIONS(3277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2214), + [anon_sym_BQUOTE] = ACTIONS(2214), + [anon_sym_LT_LPAREN] = ACTIONS(2214), + [anon_sym_GT_LPAREN] = ACTIONS(2214), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2216), + }, + [1107] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3563), + [sym_comment] = ACTIONS(48), + }, + [1108] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3565), + [sym_comment] = ACTIONS(48), + }, + [1109] = { + [anon_sym_RBRACE] = ACTIONS(3565), + [sym_comment] = ACTIONS(48), + }, + [1110] = { + [sym_concatenation] = STATE(1585), + [sym_string] = STATE(1584), + [sym_simple_expansion] = STATE(1584), + [sym_expansion] = STATE(1584), + [sym_command_substitution] = STATE(1584), + [sym_process_substitution] = STATE(1584), + [anon_sym_RBRACE] = ACTIONS(3561), + [sym__special_characters] = ACTIONS(3567), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3569), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3571), + }, + [1111] = { + [sym_file_descriptor] = ACTIONS(2228), + [sym__concat] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(3289), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_PIPE_AMP] = ACTIONS(2228), + [anon_sym_AMP_AMP] = ACTIONS(2228), + [anon_sym_PIPE_PIPE] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_GT] = ACTIONS(3289), + [anon_sym_GT_GT] = ACTIONS(2228), + [anon_sym_AMP_GT] = ACTIONS(3289), + [anon_sym_AMP_GT_GT] = ACTIONS(2228), + [anon_sym_LT_AMP] = ACTIONS(2228), + [anon_sym_GT_AMP] = ACTIONS(2228), + [anon_sym_LT_LT] = ACTIONS(3289), + [anon_sym_LT_LT_DASH] = ACTIONS(2228), + [anon_sym_LT_LT_LT] = ACTIONS(2228), + [sym__special_characters] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(2228), + [sym_raw_string] = ACTIONS(2228), + [anon_sym_DOLLAR] = ACTIONS(3289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2228), + [anon_sym_BQUOTE] = ACTIONS(2228), + [anon_sym_LT_LPAREN] = ACTIONS(2228), + [anon_sym_GT_LPAREN] = ACTIONS(2228), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2230), + }, + [1112] = { + [sym_concatenation] = STATE(1589), + [sym_string] = STATE(1588), + [sym_simple_expansion] = STATE(1588), + [sym_expansion] = STATE(1588), + [sym_command_substitution] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [anon_sym_RBRACE] = ACTIONS(3573), + [sym__special_characters] = ACTIONS(3575), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3577), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3579), + }, + [1113] = { + [sym_file_descriptor] = ACTIONS(2240), + [sym__concat] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_RPAREN] = ACTIONS(2240), + [anon_sym_PIPE_AMP] = ACTIONS(2240), + [anon_sym_AMP_AMP] = ACTIONS(2240), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_GT] = ACTIONS(3299), + [anon_sym_GT_GT] = ACTIONS(2240), + [anon_sym_AMP_GT] = ACTIONS(3299), + [anon_sym_AMP_GT_GT] = ACTIONS(2240), + [anon_sym_LT_AMP] = ACTIONS(2240), + [anon_sym_GT_AMP] = ACTIONS(2240), + [anon_sym_LT_LT] = ACTIONS(3299), + [anon_sym_LT_LT_DASH] = ACTIONS(2240), + [anon_sym_LT_LT_LT] = ACTIONS(2240), + [sym__special_characters] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(2240), + [sym_raw_string] = ACTIONS(2240), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2240), + [anon_sym_BQUOTE] = ACTIONS(2240), + [anon_sym_LT_LPAREN] = ACTIONS(2240), + [anon_sym_GT_LPAREN] = ACTIONS(2240), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2242), + }, + [1114] = { + [sym_concatenation] = STATE(1593), + [sym_string] = STATE(1592), + [sym_simple_expansion] = STATE(1592), + [sym_expansion] = STATE(1592), + [sym_command_substitution] = STATE(1592), + [sym_process_substitution] = STATE(1592), + [anon_sym_RBRACE] = ACTIONS(3581), + [sym__special_characters] = ACTIONS(3583), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3585), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3587), + }, + [1115] = { + [sym_file_descriptor] = ACTIONS(2252), + [sym__concat] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_RPAREN] = ACTIONS(2252), + [anon_sym_PIPE_AMP] = ACTIONS(2252), + [anon_sym_AMP_AMP] = ACTIONS(2252), + [anon_sym_PIPE_PIPE] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_GT] = ACTIONS(3309), + [anon_sym_GT_GT] = ACTIONS(2252), + [anon_sym_AMP_GT] = ACTIONS(3309), + [anon_sym_AMP_GT_GT] = ACTIONS(2252), + [anon_sym_LT_AMP] = ACTIONS(2252), + [anon_sym_GT_AMP] = ACTIONS(2252), + [anon_sym_LT_LT] = ACTIONS(3309), + [anon_sym_LT_LT_DASH] = ACTIONS(2252), + [anon_sym_LT_LT_LT] = ACTIONS(2252), + [sym__special_characters] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(2252), + [sym_raw_string] = ACTIONS(2252), + [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2252), + [anon_sym_BQUOTE] = ACTIONS(2252), + [anon_sym_LT_LPAREN] = ACTIONS(2252), + [anon_sym_GT_LPAREN] = ACTIONS(2252), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2254), + }, + [1116] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3589), + [sym_comment] = ACTIONS(48), + }, + [1117] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3591), + [sym_comment] = ACTIONS(48), + }, + [1118] = { + [anon_sym_RBRACE] = ACTIONS(3591), + [sym_comment] = ACTIONS(48), + }, + [1119] = { + [sym_file_redirect] = STATE(1596), + [sym_file_descriptor] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(3527), + [anon_sym_RPAREN] = ACTIONS(3529), + [anon_sym_PIPE_AMP] = ACTIONS(3529), + [anon_sym_AMP_AMP] = ACTIONS(3529), + [anon_sym_PIPE_PIPE] = ACTIONS(3529), + [anon_sym_LT] = ACTIONS(2312), + [anon_sym_GT] = ACTIONS(2312), + [anon_sym_GT_GT] = ACTIONS(2314), + [anon_sym_AMP_GT] = ACTIONS(2312), + [anon_sym_AMP_GT_GT] = ACTIONS(2314), + [anon_sym_LT_AMP] = ACTIONS(2314), + [anon_sym_GT_AMP] = ACTIONS(2314), + [sym_comment] = ACTIONS(48), + }, + [1120] = { + [aux_sym_concatenation_repeat1] = STATE(1124), + [sym_file_descriptor] = ACTIONS(816), + [sym__concat] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(816), + [anon_sym_PIPE_AMP] = ACTIONS(816), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_GT] = ACTIONS(818), + [anon_sym_GT_GT] = ACTIONS(816), + [anon_sym_AMP_GT] = ACTIONS(818), + [anon_sym_AMP_GT_GT] = ACTIONS(816), + [anon_sym_LT_AMP] = ACTIONS(816), + [anon_sym_GT_AMP] = ACTIONS(816), + [anon_sym_LT_LT] = ACTIONS(818), + [anon_sym_LT_LT_DASH] = ACTIONS(816), + [anon_sym_LT_LT_LT] = ACTIONS(816), + [sym_comment] = ACTIONS(48), + }, + [1121] = { + [aux_sym_concatenation_repeat1] = STATE(1124), + [sym_file_descriptor] = ACTIONS(820), + [sym__concat] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(820), + [anon_sym_PIPE_AMP] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_AMP_GT] = ACTIONS(822), + [anon_sym_AMP_GT_GT] = ACTIONS(820), + [anon_sym_LT_AMP] = ACTIONS(820), + [anon_sym_GT_AMP] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(822), + [anon_sym_LT_LT_DASH] = ACTIONS(820), + [anon_sym_LT_LT_LT] = ACTIONS(820), + [sym_comment] = ACTIONS(48), + }, + [1122] = { + [sym_file_descriptor] = ACTIONS(820), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(820), + [anon_sym_PIPE_AMP] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_AMP_GT] = ACTIONS(822), + [anon_sym_AMP_GT_GT] = ACTIONS(820), + [anon_sym_LT_AMP] = ACTIONS(820), + [anon_sym_GT_AMP] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(822), + [anon_sym_LT_LT_DASH] = ACTIONS(820), + [anon_sym_LT_LT_LT] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_comment] = ACTIONS(48), + }, + [1123] = { + [sym_string] = STATE(1597), + [sym_simple_expansion] = STATE(1597), + [sym_expansion] = STATE(1597), + [sym_command_substitution] = STATE(1597), + [sym_process_substitution] = STATE(1597), + [sym__special_characters] = ACTIONS(3593), + [anon_sym_DQUOTE] = ACTIONS(1389), + [sym_raw_string] = ACTIONS(3595), + [anon_sym_DOLLAR] = ACTIONS(1393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1395), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1397), + [anon_sym_BQUOTE] = ACTIONS(1399), + [anon_sym_LT_LPAREN] = ACTIONS(1401), + [anon_sym_GT_LPAREN] = ACTIONS(1401), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3593), + }, + [1124] = { + [aux_sym_concatenation_repeat1] = STATE(1598), + [sym_file_descriptor] = ACTIONS(478), + [sym__concat] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_RPAREN] = ACTIONS(478), + [anon_sym_PIPE_AMP] = ACTIONS(478), + [anon_sym_AMP_AMP] = ACTIONS(478), + [anon_sym_PIPE_PIPE] = ACTIONS(478), + [anon_sym_LT] = ACTIONS(1117), + [anon_sym_GT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(478), + [anon_sym_AMP_GT] = ACTIONS(1117), + [anon_sym_AMP_GT_GT] = ACTIONS(478), + [anon_sym_LT_AMP] = ACTIONS(478), + [anon_sym_GT_AMP] = ACTIONS(478), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_LT_LT_DASH] = ACTIONS(478), + [anon_sym_LT_LT_LT] = ACTIONS(478), + [sym_comment] = ACTIONS(48), + }, + [1125] = { + [sym_file_descriptor] = ACTIONS(482), + [sym__concat] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(1119), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_PIPE_AMP] = ACTIONS(482), + [anon_sym_AMP_AMP] = ACTIONS(482), + [anon_sym_PIPE_PIPE] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(1119), + [anon_sym_GT] = ACTIONS(1119), + [anon_sym_GT_GT] = ACTIONS(482), + [anon_sym_AMP_GT] = ACTIONS(1119), + [anon_sym_AMP_GT_GT] = ACTIONS(482), + [anon_sym_LT_AMP] = ACTIONS(482), + [anon_sym_GT_AMP] = ACTIONS(482), + [anon_sym_LT_LT] = ACTIONS(1119), + [anon_sym_LT_LT_DASH] = ACTIONS(482), + [anon_sym_LT_LT_LT] = ACTIONS(482), + [sym_comment] = ACTIONS(48), + }, + [1126] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(3597), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [1127] = { + [sym_file_descriptor] = ACTIONS(510), + [sym__concat] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_RPAREN] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_PIPE_PIPE] = ACTIONS(510), + [anon_sym_LT] = ACTIONS(1123), + [anon_sym_GT] = ACTIONS(1123), + [anon_sym_GT_GT] = ACTIONS(510), + [anon_sym_AMP_GT] = ACTIONS(1123), + [anon_sym_AMP_GT_GT] = ACTIONS(510), + [anon_sym_LT_AMP] = ACTIONS(510), + [anon_sym_GT_AMP] = ACTIONS(510), + [anon_sym_LT_LT] = ACTIONS(1123), + [anon_sym_LT_LT_DASH] = ACTIONS(510), + [anon_sym_LT_LT_LT] = ACTIONS(510), + [sym_comment] = ACTIONS(48), + }, + [1128] = { + [sym_file_descriptor] = ACTIONS(514), + [sym__concat] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_RPAREN] = ACTIONS(514), + [anon_sym_PIPE_AMP] = ACTIONS(514), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(1125), + [anon_sym_GT] = ACTIONS(1125), + [anon_sym_GT_GT] = ACTIONS(514), + [anon_sym_AMP_GT] = ACTIONS(1125), + [anon_sym_AMP_GT_GT] = ACTIONS(514), + [anon_sym_LT_AMP] = ACTIONS(514), + [anon_sym_GT_AMP] = ACTIONS(514), + [anon_sym_LT_LT] = ACTIONS(1125), + [anon_sym_LT_LT_DASH] = ACTIONS(514), + [anon_sym_LT_LT_LT] = ACTIONS(514), + [sym_comment] = ACTIONS(48), + }, + [1129] = { + [anon_sym_EQ] = ACTIONS(3599), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1130] = { + [anon_sym_RBRACE] = ACTIONS(3601), + [anon_sym_EQ] = ACTIONS(3603), + [anon_sym_COLON] = ACTIONS(3605), + [anon_sym_COLON_QMARK] = ACTIONS(3603), + [anon_sym_COLON_DASH] = ACTIONS(3603), + [anon_sym_PERCENT] = ACTIONS(3603), + [anon_sym_SLASH] = ACTIONS(3603), + [anon_sym_DASH] = ACTIONS(3603), + [sym_comment] = ACTIONS(48), + }, + [1131] = { + [sym_subscript] = STATE(1606), + [sym_variable_name] = ACTIONS(3607), + [anon_sym_DOLLAR] = ACTIONS(3609), + [anon_sym_DASH] = ACTIONS(3609), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3611), + [anon_sym_STAR] = ACTIONS(3609), + [anon_sym_AT] = ACTIONS(3609), + [anon_sym_QMARK] = ACTIONS(3609), + [anon_sym_0] = ACTIONS(3613), + [anon_sym__] = ACTIONS(3613), + }, + [1132] = { + [anon_sym_RBRACE] = ACTIONS(3615), + [anon_sym_EQ] = ACTIONS(3617), + [anon_sym_COLON] = ACTIONS(3619), + [anon_sym_COLON_QMARK] = ACTIONS(3617), + [anon_sym_COLON_DASH] = ACTIONS(3617), + [anon_sym_PERCENT] = ACTIONS(3617), + [anon_sym_SLASH] = ACTIONS(3617), + [anon_sym_DASH] = ACTIONS(3617), + [sym_comment] = ACTIONS(48), + }, + [1133] = { + [anon_sym_RBRACE] = ACTIONS(3621), + [anon_sym_EQ] = ACTIONS(3599), + [anon_sym_COLON] = ACTIONS(3623), + [anon_sym_COLON_QMARK] = ACTIONS(3599), + [anon_sym_COLON_DASH] = ACTIONS(3599), + [anon_sym_PERCENT] = ACTIONS(3599), + [anon_sym_SLASH] = ACTIONS(3599), + [anon_sym_DASH] = ACTIONS(3599), + [sym_comment] = ACTIONS(48), + }, + [1134] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3625), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1135] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3625), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1136] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(3625), + [sym_comment] = ACTIONS(48), + }, + [1137] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(3625), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1138] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3627), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1139] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3627), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1140] = { + [sym_file_descriptor] = ACTIONS(2704), + [anon_sym_PIPE] = ACTIONS(3629), + [anon_sym_RPAREN] = ACTIONS(2704), + [anon_sym_PIPE_AMP] = ACTIONS(2704), + [anon_sym_AMP_AMP] = ACTIONS(2704), + [anon_sym_PIPE_PIPE] = ACTIONS(2704), + [anon_sym_LT] = ACTIONS(3629), + [anon_sym_GT] = ACTIONS(3629), + [anon_sym_GT_GT] = ACTIONS(2704), + [anon_sym_AMP_GT] = ACTIONS(3629), + [anon_sym_AMP_GT_GT] = ACTIONS(2704), + [anon_sym_LT_AMP] = ACTIONS(2704), + [anon_sym_GT_AMP] = ACTIONS(2704), + [anon_sym_LT_LT] = ACTIONS(3629), + [anon_sym_LT_LT_DASH] = ACTIONS(2704), + [anon_sym_LT_LT_LT] = ACTIONS(2704), + [anon_sym_BQUOTE] = ACTIONS(2704), + [sym_comment] = ACTIONS(48), + }, + [1141] = { + [sym_simple_expansion] = STATE(751), + [sym_expansion] = STATE(751), + [aux_sym_heredoc_repeat1] = STATE(1233), + [sym__heredoc_middle] = ACTIONS(1555), + [sym__heredoc_end] = ACTIONS(3631), + [anon_sym_DOLLAR] = ACTIONS(1559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1561), + [sym_comment] = ACTIONS(48), + }, + [1142] = { + [sym_file_redirect] = STATE(339), + [sym_heredoc_redirect] = STATE(339), + [sym_herestring_redirect] = STATE(339), + [aux_sym_command_repeat2] = STATE(682), + [sym_file_descriptor] = ACTIONS(602), + [anon_sym_PIPE] = ACTIONS(3633), + [anon_sym_RPAREN] = ACTIONS(3635), + [anon_sym_PIPE_AMP] = ACTIONS(3635), + [anon_sym_AMP_AMP] = ACTIONS(3635), + [anon_sym_PIPE_PIPE] = ACTIONS(3635), + [anon_sym_LT] = ACTIONS(608), + [anon_sym_GT] = ACTIONS(608), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_AMP_GT] = ACTIONS(608), + [anon_sym_AMP_GT_GT] = ACTIONS(610), + [anon_sym_LT_AMP] = ACTIONS(610), + [anon_sym_GT_AMP] = ACTIONS(610), + [anon_sym_LT_LT] = ACTIONS(612), + [anon_sym_LT_LT_DASH] = ACTIONS(614), + [anon_sym_LT_LT_LT] = ACTIONS(616), + [sym_comment] = ACTIONS(48), + }, + [1143] = { + [sym_string] = STATE(1613), + [sym_simple_expansion] = STATE(1613), + [sym_expansion] = STATE(1613), + [sym_command_substitution] = STATE(1613), + [sym_process_substitution] = STATE(1613), + [sym__special_characters] = ACTIONS(3637), + [anon_sym_DQUOTE] = ACTIONS(1427), + [sym_raw_string] = ACTIONS(3639), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1433), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1435), + [anon_sym_BQUOTE] = ACTIONS(1437), + [anon_sym_LT_LPAREN] = ACTIONS(1439), + [anon_sym_GT_LPAREN] = ACTIONS(1439), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3637), + }, + [1144] = { + [aux_sym_concatenation_repeat1] = STATE(1614), + [sym_file_descriptor] = ACTIONS(478), + [sym__concat] = ACTIONS(2503), + [sym_variable_name] = ACTIONS(478), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_PIPE_AMP] = ACTIONS(478), + [anon_sym_AMP_AMP] = ACTIONS(478), + [anon_sym_PIPE_PIPE] = ACTIONS(1117), + [anon_sym_LT] = ACTIONS(1117), + [anon_sym_GT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(478), + [anon_sym_AMP_GT] = ACTIONS(1117), + [anon_sym_AMP_GT_GT] = ACTIONS(478), + [anon_sym_LT_AMP] = ACTIONS(478), + [anon_sym_GT_AMP] = ACTIONS(478), + [sym__special_characters] = ACTIONS(1117), + [anon_sym_DQUOTE] = ACTIONS(478), + [sym_raw_string] = ACTIONS(478), + [anon_sym_DOLLAR] = ACTIONS(1117), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(478), + [anon_sym_BQUOTE] = ACTIONS(478), + [anon_sym_LT_LPAREN] = ACTIONS(478), + [anon_sym_GT_LPAREN] = ACTIONS(478), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(480), + }, + [1145] = { + [sym_file_descriptor] = ACTIONS(482), + [sym__concat] = ACTIONS(482), + [sym_variable_name] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(1119), + [anon_sym_PIPE_AMP] = ACTIONS(482), + [anon_sym_AMP_AMP] = ACTIONS(482), + [anon_sym_PIPE_PIPE] = ACTIONS(1119), + [anon_sym_LT] = ACTIONS(1119), + [anon_sym_GT] = ACTIONS(1119), + [anon_sym_GT_GT] = ACTIONS(482), + [anon_sym_AMP_GT] = ACTIONS(1119), + [anon_sym_AMP_GT_GT] = ACTIONS(482), + [anon_sym_LT_AMP] = ACTIONS(482), + [anon_sym_GT_AMP] = ACTIONS(482), + [sym__special_characters] = ACTIONS(1119), + [anon_sym_DQUOTE] = ACTIONS(482), + [sym_raw_string] = ACTIONS(482), + [anon_sym_DOLLAR] = ACTIONS(1119), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [anon_sym_LT_LPAREN] = ACTIONS(482), + [anon_sym_GT_LPAREN] = ACTIONS(482), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(484), + }, + [1146] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(3641), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [1147] = { + [sym_file_descriptor] = ACTIONS(510), + [sym__concat] = ACTIONS(510), + [sym_variable_name] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_PIPE_AMP] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_PIPE_PIPE] = ACTIONS(1123), + [anon_sym_LT] = ACTIONS(1123), + [anon_sym_GT] = ACTIONS(1123), + [anon_sym_GT_GT] = ACTIONS(510), + [anon_sym_AMP_GT] = ACTIONS(1123), + [anon_sym_AMP_GT_GT] = ACTIONS(510), + [anon_sym_LT_AMP] = ACTIONS(510), + [anon_sym_GT_AMP] = ACTIONS(510), + [sym__special_characters] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(510), + [sym_raw_string] = ACTIONS(510), + [anon_sym_DOLLAR] = ACTIONS(1123), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(510), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(510), + [anon_sym_BQUOTE] = ACTIONS(510), + [anon_sym_LT_LPAREN] = ACTIONS(510), + [anon_sym_GT_LPAREN] = ACTIONS(510), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(512), + }, + [1148] = { + [sym_file_descriptor] = ACTIONS(514), + [sym__concat] = ACTIONS(514), + [sym_variable_name] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_PIPE_AMP] = ACTIONS(514), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(1125), + [anon_sym_LT] = ACTIONS(1125), + [anon_sym_GT] = ACTIONS(1125), + [anon_sym_GT_GT] = ACTIONS(514), + [anon_sym_AMP_GT] = ACTIONS(1125), + [anon_sym_AMP_GT_GT] = ACTIONS(514), + [anon_sym_LT_AMP] = ACTIONS(514), + [anon_sym_GT_AMP] = ACTIONS(514), + [sym__special_characters] = ACTIONS(1125), + [anon_sym_DQUOTE] = ACTIONS(514), + [sym_raw_string] = ACTIONS(514), + [anon_sym_DOLLAR] = ACTIONS(1125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(514), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(514), + [anon_sym_LT_LPAREN] = ACTIONS(514), + [anon_sym_GT_LPAREN] = ACTIONS(514), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(516), + }, + [1149] = { + [anon_sym_EQ] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1150] = { + [anon_sym_RBRACE] = ACTIONS(3645), + [anon_sym_EQ] = ACTIONS(3647), + [anon_sym_COLON] = ACTIONS(3649), + [anon_sym_COLON_QMARK] = ACTIONS(3647), + [anon_sym_COLON_DASH] = ACTIONS(3647), + [anon_sym_PERCENT] = ACTIONS(3647), + [anon_sym_SLASH] = ACTIONS(3647), + [anon_sym_DASH] = ACTIONS(3647), + [sym_comment] = ACTIONS(48), + }, + [1151] = { + [sym_subscript] = STATE(1622), + [sym_variable_name] = ACTIONS(3651), + [anon_sym_DOLLAR] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3653), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3655), + [anon_sym_STAR] = ACTIONS(3653), + [anon_sym_AT] = ACTIONS(3653), + [anon_sym_QMARK] = ACTIONS(3653), + [anon_sym_0] = ACTIONS(3657), + [anon_sym__] = ACTIONS(3657), + }, + [1152] = { + [anon_sym_RBRACE] = ACTIONS(3659), + [anon_sym_EQ] = ACTIONS(3661), + [anon_sym_COLON] = ACTIONS(3663), + [anon_sym_COLON_QMARK] = ACTIONS(3661), + [anon_sym_COLON_DASH] = ACTIONS(3661), + [anon_sym_PERCENT] = ACTIONS(3661), + [anon_sym_SLASH] = ACTIONS(3661), + [anon_sym_DASH] = ACTIONS(3661), + [sym_comment] = ACTIONS(48), + }, + [1153] = { + [anon_sym_RBRACE] = ACTIONS(3665), + [anon_sym_EQ] = ACTIONS(3643), + [anon_sym_COLON] = ACTIONS(3667), + [anon_sym_COLON_QMARK] = ACTIONS(3643), + [anon_sym_COLON_DASH] = ACTIONS(3643), + [anon_sym_PERCENT] = ACTIONS(3643), + [anon_sym_SLASH] = ACTIONS(3643), + [anon_sym_DASH] = ACTIONS(3643), + [sym_comment] = ACTIONS(48), + }, + [1154] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3669), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1155] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3669), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1156] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(3669), + [sym_comment] = ACTIONS(48), + }, + [1157] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(3669), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1158] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3671), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1159] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3671), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1160] = { + [sym_compound_statement] = STATE(1628), + [anon_sym_LBRACE] = ACTIONS(1325), + [sym_comment] = ACTIONS(48), + }, + [1161] = { + [anon_sym_LT] = ACTIONS(3673), + [anon_sym_GT] = ACTIONS(3673), + [anon_sym_GT_GT] = ACTIONS(3675), + [anon_sym_AMP_GT] = ACTIONS(3673), + [anon_sym_AMP_GT_GT] = ACTIONS(3675), + [anon_sym_LT_AMP] = ACTIONS(3675), + [anon_sym_GT_AMP] = ACTIONS(3675), + [sym_comment] = ACTIONS(48), + }, + [1162] = { + [sym_concatenation] = STATE(1558), + [sym_string] = STATE(1632), + [sym_simple_expansion] = STATE(1632), + [sym_expansion] = STATE(1632), + [sym_command_substitution] = STATE(1632), + [sym_process_substitution] = STATE(1632), + [sym__special_characters] = ACTIONS(3677), + [anon_sym_DQUOTE] = ACTIONS(3679), + [sym_raw_string] = ACTIONS(3681), + [anon_sym_DOLLAR] = ACTIONS(3683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3687), + [anon_sym_BQUOTE] = ACTIONS(3689), + [anon_sym_LT_LPAREN] = ACTIONS(3691), + [anon_sym_GT_LPAREN] = ACTIONS(3691), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3693), + }, + [1163] = { + [aux_sym_concatenation_repeat1] = STATE(1639), + [sym__concat] = ACTIONS(3695), + [sym_variable_name] = ACTIONS(848), + [anon_sym_PIPE] = ACTIONS(2266), + [anon_sym_PIPE_AMP] = ACTIONS(848), + [anon_sym_AMP_AMP] = ACTIONS(848), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_BQUOTE] = ACTIONS(848), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2266), + [sym_word] = ACTIONS(852), + }, + [1164] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(1641), + [anon_sym_DQUOTE] = ACTIONS(3697), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [1165] = { + [aux_sym_concatenation_repeat1] = STATE(1639), + [sym__concat] = ACTIONS(3695), + [sym_variable_name] = ACTIONS(824), + [anon_sym_PIPE] = ACTIONS(2260), + [anon_sym_PIPE_AMP] = ACTIONS(824), + [anon_sym_AMP_AMP] = ACTIONS(824), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_BQUOTE] = ACTIONS(824), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2260), + [sym_word] = ACTIONS(826), + }, + [1166] = { + [anon_sym_DOLLAR] = ACTIONS(3699), + [anon_sym_DASH] = ACTIONS(3699), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3701), + [anon_sym_STAR] = ACTIONS(3699), + [anon_sym_AT] = ACTIONS(3699), + [anon_sym_QMARK] = ACTIONS(3699), + [anon_sym_0] = ACTIONS(3703), + [anon_sym__] = ACTIONS(3703), + }, + [1167] = { + [sym_subscript] = STATE(1648), + [sym_variable_name] = ACTIONS(3705), + [anon_sym_DOLLAR] = ACTIONS(3707), + [anon_sym_POUND] = ACTIONS(3709), + [anon_sym_DASH] = ACTIONS(3707), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3711), + [anon_sym_STAR] = ACTIONS(3707), + [anon_sym_AT] = ACTIONS(3707), + [anon_sym_QMARK] = ACTIONS(3707), + [anon_sym_0] = ACTIONS(3713), + [anon_sym__] = ACTIONS(3713), + }, + [1168] = { + [sym_for_statement] = STATE(1649), + [sym_while_statement] = STATE(1649), + [sym_if_statement] = STATE(1649), + [sym_case_statement] = STATE(1649), + [sym_function_definition] = STATE(1649), + [sym_subshell] = STATE(1649), + [sym_pipeline] = STATE(1649), + [sym_list] = STATE(1649), + [sym_command] = STATE(1649), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1650), + [sym_declaration_command] = STATE(1649), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [1169] = { + [sym_for_statement] = STATE(1651), + [sym_while_statement] = STATE(1651), + [sym_if_statement] = STATE(1651), + [sym_case_statement] = STATE(1651), + [sym_function_definition] = STATE(1651), + [sym_subshell] = STATE(1651), + [sym_pipeline] = STATE(1651), + [sym_list] = STATE(1651), + [sym_command] = STATE(1651), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(1652), + [sym_declaration_command] = STATE(1651), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), + }, + [1170] = { + [sym_for_statement] = STATE(1653), + [sym_while_statement] = STATE(1653), + [sym_if_statement] = STATE(1653), + [sym_case_statement] = STATE(1653), + [sym_function_definition] = STATE(1653), + [sym_subshell] = STATE(1653), + [sym_pipeline] = STATE(1653), + [sym_list] = STATE(1653), + [sym_command] = STATE(1653), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1654), + [sym_declaration_command] = STATE(1653), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [1171] = { + [sym_file_descriptor] = ACTIONS(2176), + [sym__concat] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(3271), + [anon_sym_PIPE_AMP] = ACTIONS(2176), + [anon_sym_AMP_AMP] = ACTIONS(2176), + [anon_sym_PIPE_PIPE] = ACTIONS(3271), + [anon_sym_LT] = ACTIONS(3271), + [anon_sym_GT] = ACTIONS(3271), + [anon_sym_GT_GT] = ACTIONS(2176), + [anon_sym_AMP_GT] = ACTIONS(3271), + [anon_sym_AMP_GT_GT] = ACTIONS(2176), + [anon_sym_LT_AMP] = ACTIONS(2176), + [anon_sym_GT_AMP] = ACTIONS(2176), + [anon_sym_LT_LT] = ACTIONS(3271), + [anon_sym_LT_LT_DASH] = ACTIONS(2176), + [anon_sym_LT_LT_LT] = ACTIONS(2176), + [sym__special_characters] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(2176), + [sym_raw_string] = ACTIONS(2176), + [anon_sym_DOLLAR] = ACTIONS(3271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2176), + [anon_sym_BQUOTE] = ACTIONS(2176), + [anon_sym_LT_LPAREN] = ACTIONS(2176), + [anon_sym_GT_LPAREN] = ACTIONS(2176), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2178), + }, + [1172] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3715), + [sym_comment] = ACTIONS(48), + }, + [1173] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3717), + [sym_comment] = ACTIONS(48), + }, + [1174] = { + [anon_sym_RBRACE] = ACTIONS(3717), + [sym_comment] = ACTIONS(48), + }, + [1175] = { + [sym_file_descriptor] = ACTIONS(2214), + [sym__concat] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_PIPE_AMP] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_GT] = ACTIONS(3277), + [anon_sym_GT_GT] = ACTIONS(2214), + [anon_sym_AMP_GT] = ACTIONS(3277), + [anon_sym_AMP_GT_GT] = ACTIONS(2214), + [anon_sym_LT_AMP] = ACTIONS(2214), + [anon_sym_GT_AMP] = ACTIONS(2214), + [anon_sym_LT_LT] = ACTIONS(3277), + [anon_sym_LT_LT_DASH] = ACTIONS(2214), + [anon_sym_LT_LT_LT] = ACTIONS(2214), + [sym__special_characters] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(2214), + [sym_raw_string] = ACTIONS(2214), + [anon_sym_DOLLAR] = ACTIONS(3277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2214), + [anon_sym_BQUOTE] = ACTIONS(2214), + [anon_sym_LT_LPAREN] = ACTIONS(2214), + [anon_sym_GT_LPAREN] = ACTIONS(2214), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2216), + }, + [1176] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3719), + [sym_comment] = ACTIONS(48), + }, + [1177] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3721), + [sym_comment] = ACTIONS(48), + }, + [1178] = { + [anon_sym_RBRACE] = ACTIONS(3721), + [sym_comment] = ACTIONS(48), + }, + [1179] = { + [sym_concatenation] = STATE(1661), + [sym_string] = STATE(1660), + [sym_simple_expansion] = STATE(1660), + [sym_expansion] = STATE(1660), + [sym_command_substitution] = STATE(1660), + [sym_process_substitution] = STATE(1660), + [anon_sym_RBRACE] = ACTIONS(3717), + [sym__special_characters] = ACTIONS(3723), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3725), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3727), + }, + [1180] = { + [sym_file_descriptor] = ACTIONS(2228), + [sym__concat] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(3289), + [anon_sym_PIPE_AMP] = ACTIONS(2228), + [anon_sym_AMP_AMP] = ACTIONS(2228), + [anon_sym_PIPE_PIPE] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_GT] = ACTIONS(3289), + [anon_sym_GT_GT] = ACTIONS(2228), + [anon_sym_AMP_GT] = ACTIONS(3289), + [anon_sym_AMP_GT_GT] = ACTIONS(2228), + [anon_sym_LT_AMP] = ACTIONS(2228), + [anon_sym_GT_AMP] = ACTIONS(2228), + [anon_sym_LT_LT] = ACTIONS(3289), + [anon_sym_LT_LT_DASH] = ACTIONS(2228), + [anon_sym_LT_LT_LT] = ACTIONS(2228), + [sym__special_characters] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(2228), + [sym_raw_string] = ACTIONS(2228), + [anon_sym_DOLLAR] = ACTIONS(3289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2228), + [anon_sym_BQUOTE] = ACTIONS(2228), + [anon_sym_LT_LPAREN] = ACTIONS(2228), + [anon_sym_GT_LPAREN] = ACTIONS(2228), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2230), + }, + [1181] = { + [sym_concatenation] = STATE(1665), + [sym_string] = STATE(1664), + [sym_simple_expansion] = STATE(1664), + [sym_expansion] = STATE(1664), + [sym_command_substitution] = STATE(1664), + [sym_process_substitution] = STATE(1664), + [anon_sym_RBRACE] = ACTIONS(3729), + [sym__special_characters] = ACTIONS(3731), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3733), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3735), + }, + [1182] = { + [sym_file_descriptor] = ACTIONS(2240), + [sym__concat] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_PIPE_AMP] = ACTIONS(2240), + [anon_sym_AMP_AMP] = ACTIONS(2240), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_GT] = ACTIONS(3299), + [anon_sym_GT_GT] = ACTIONS(2240), + [anon_sym_AMP_GT] = ACTIONS(3299), + [anon_sym_AMP_GT_GT] = ACTIONS(2240), + [anon_sym_LT_AMP] = ACTIONS(2240), + [anon_sym_GT_AMP] = ACTIONS(2240), + [anon_sym_LT_LT] = ACTIONS(3299), + [anon_sym_LT_LT_DASH] = ACTIONS(2240), + [anon_sym_LT_LT_LT] = ACTIONS(2240), + [sym__special_characters] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(2240), + [sym_raw_string] = ACTIONS(2240), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2240), + [anon_sym_BQUOTE] = ACTIONS(2240), + [anon_sym_LT_LPAREN] = ACTIONS(2240), + [anon_sym_GT_LPAREN] = ACTIONS(2240), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2242), + }, + [1183] = { + [sym_concatenation] = STATE(1669), + [sym_string] = STATE(1668), + [sym_simple_expansion] = STATE(1668), + [sym_expansion] = STATE(1668), + [sym_command_substitution] = STATE(1668), + [sym_process_substitution] = STATE(1668), + [anon_sym_RBRACE] = ACTIONS(3737), + [sym__special_characters] = ACTIONS(3739), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3741), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3743), + }, + [1184] = { + [sym_file_descriptor] = ACTIONS(2252), + [sym__concat] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_PIPE_AMP] = ACTIONS(2252), + [anon_sym_AMP_AMP] = ACTIONS(2252), + [anon_sym_PIPE_PIPE] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_GT] = ACTIONS(3309), + [anon_sym_GT_GT] = ACTIONS(2252), + [anon_sym_AMP_GT] = ACTIONS(3309), + [anon_sym_AMP_GT_GT] = ACTIONS(2252), + [anon_sym_LT_AMP] = ACTIONS(2252), + [anon_sym_GT_AMP] = ACTIONS(2252), + [anon_sym_LT_LT] = ACTIONS(3309), + [anon_sym_LT_LT_DASH] = ACTIONS(2252), + [anon_sym_LT_LT_LT] = ACTIONS(2252), + [sym__special_characters] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(2252), + [sym_raw_string] = ACTIONS(2252), + [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2252), + [anon_sym_BQUOTE] = ACTIONS(2252), + [anon_sym_LT_LPAREN] = ACTIONS(2252), + [anon_sym_GT_LPAREN] = ACTIONS(2252), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2254), + }, + [1185] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3745), + [sym_comment] = ACTIONS(48), + }, + [1186] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3747), + [sym_comment] = ACTIONS(48), + }, + [1187] = { + [anon_sym_RBRACE] = ACTIONS(3747), + [sym_comment] = ACTIONS(48), + }, + [1188] = { + [sym_file_redirect] = STATE(1596), + [sym_file_descriptor] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(3527), + [anon_sym_PIPE_AMP] = ACTIONS(3529), + [anon_sym_AMP_AMP] = ACTIONS(3529), + [anon_sym_PIPE_PIPE] = ACTIONS(3529), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_GT] = ACTIONS(2527), + [anon_sym_GT_GT] = ACTIONS(2529), + [anon_sym_AMP_GT] = ACTIONS(2527), + [anon_sym_AMP_GT_GT] = ACTIONS(2529), + [anon_sym_LT_AMP] = ACTIONS(2529), + [anon_sym_GT_AMP] = ACTIONS(2529), + [anon_sym_BQUOTE] = ACTIONS(3529), + [sym_comment] = ACTIONS(48), + }, + [1189] = { + [aux_sym_concatenation_repeat1] = STATE(1192), + [sym_file_descriptor] = ACTIONS(816), + [sym__concat] = ACTIONS(2601), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(816), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_GT] = ACTIONS(818), + [anon_sym_GT_GT] = ACTIONS(816), + [anon_sym_AMP_GT] = ACTIONS(818), + [anon_sym_AMP_GT_GT] = ACTIONS(816), + [anon_sym_LT_AMP] = ACTIONS(816), + [anon_sym_GT_AMP] = ACTIONS(816), + [anon_sym_LT_LT] = ACTIONS(818), + [anon_sym_LT_LT_DASH] = ACTIONS(816), + [anon_sym_LT_LT_LT] = ACTIONS(816), + [anon_sym_BQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(48), + }, + [1190] = { + [aux_sym_concatenation_repeat1] = STATE(1192), + [sym_file_descriptor] = ACTIONS(820), + [sym__concat] = ACTIONS(2601), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_PIPE_AMP] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_LT] = ACTIONS(822), + [anon_sym_GT] = ACTIONS(822), + [anon_sym_GT_GT] = ACTIONS(820), + [anon_sym_AMP_GT] = ACTIONS(822), + [anon_sym_AMP_GT_GT] = ACTIONS(820), + [anon_sym_LT_AMP] = ACTIONS(820), + [anon_sym_GT_AMP] = ACTIONS(820), + [anon_sym_LT_LT] = ACTIONS(822), + [anon_sym_LT_LT_DASH] = ACTIONS(820), + [anon_sym_LT_LT_LT] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_comment] = ACTIONS(48), + }, + [1191] = { + [sym_string] = STATE(1672), + [sym_simple_expansion] = STATE(1672), + [sym_expansion] = STATE(1672), + [sym_command_substitution] = STATE(1672), + [sym_process_substitution] = STATE(1672), + [sym__special_characters] = ACTIONS(3749), + [anon_sym_DQUOTE] = ACTIONS(1491), + [sym_raw_string] = ACTIONS(3751), + [anon_sym_DOLLAR] = ACTIONS(1495), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1497), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1501), + [anon_sym_LT_LPAREN] = ACTIONS(1503), + [anon_sym_GT_LPAREN] = ACTIONS(1503), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3749), + }, + [1192] = { + [aux_sym_concatenation_repeat1] = STATE(1673), + [sym_file_descriptor] = ACTIONS(478), + [sym__concat] = ACTIONS(2601), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_PIPE_AMP] = ACTIONS(478), + [anon_sym_AMP_AMP] = ACTIONS(478), + [anon_sym_PIPE_PIPE] = ACTIONS(478), + [anon_sym_LT] = ACTIONS(1117), + [anon_sym_GT] = ACTIONS(1117), + [anon_sym_GT_GT] = ACTIONS(478), + [anon_sym_AMP_GT] = ACTIONS(1117), + [anon_sym_AMP_GT_GT] = ACTIONS(478), + [anon_sym_LT_AMP] = ACTIONS(478), + [anon_sym_GT_AMP] = ACTIONS(478), + [anon_sym_LT_LT] = ACTIONS(1117), + [anon_sym_LT_LT_DASH] = ACTIONS(478), + [anon_sym_LT_LT_LT] = ACTIONS(478), + [anon_sym_BQUOTE] = ACTIONS(478), + [sym_comment] = ACTIONS(48), + }, + [1193] = { + [sym_file_descriptor] = ACTIONS(482), + [sym__concat] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(1119), + [anon_sym_PIPE_AMP] = ACTIONS(482), + [anon_sym_AMP_AMP] = ACTIONS(482), + [anon_sym_PIPE_PIPE] = ACTIONS(482), + [anon_sym_LT] = ACTIONS(1119), + [anon_sym_GT] = ACTIONS(1119), + [anon_sym_GT_GT] = ACTIONS(482), + [anon_sym_AMP_GT] = ACTIONS(1119), + [anon_sym_AMP_GT_GT] = ACTIONS(482), + [anon_sym_LT_AMP] = ACTIONS(482), + [anon_sym_GT_AMP] = ACTIONS(482), + [anon_sym_LT_LT] = ACTIONS(1119), + [anon_sym_LT_LT_DASH] = ACTIONS(482), + [anon_sym_LT_LT_LT] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [sym_comment] = ACTIONS(48), + }, + [1194] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(3753), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [1195] = { + [sym_file_descriptor] = ACTIONS(510), + [sym__concat] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_PIPE_AMP] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_PIPE_PIPE] = ACTIONS(510), + [anon_sym_LT] = ACTIONS(1123), + [anon_sym_GT] = ACTIONS(1123), + [anon_sym_GT_GT] = ACTIONS(510), + [anon_sym_AMP_GT] = ACTIONS(1123), + [anon_sym_AMP_GT_GT] = ACTIONS(510), + [anon_sym_LT_AMP] = ACTIONS(510), + [anon_sym_GT_AMP] = ACTIONS(510), + [anon_sym_LT_LT] = ACTIONS(1123), + [anon_sym_LT_LT_DASH] = ACTIONS(510), + [anon_sym_LT_LT_LT] = ACTIONS(510), + [anon_sym_BQUOTE] = ACTIONS(510), + [sym_comment] = ACTIONS(48), + }, + [1196] = { + [sym_file_descriptor] = ACTIONS(514), + [sym__concat] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_PIPE_AMP] = ACTIONS(514), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(1125), + [anon_sym_GT] = ACTIONS(1125), + [anon_sym_GT_GT] = ACTIONS(514), + [anon_sym_AMP_GT] = ACTIONS(1125), + [anon_sym_AMP_GT_GT] = ACTIONS(514), + [anon_sym_LT_AMP] = ACTIONS(514), + [anon_sym_GT_AMP] = ACTIONS(514), + [anon_sym_LT_LT] = ACTIONS(1125), + [anon_sym_LT_LT_DASH] = ACTIONS(514), + [anon_sym_LT_LT_LT] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(514), + [sym_comment] = ACTIONS(48), + }, + [1197] = { + [anon_sym_EQ] = ACTIONS(3755), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1198] = { + [anon_sym_RBRACE] = ACTIONS(3757), + [anon_sym_EQ] = ACTIONS(3759), + [anon_sym_COLON] = ACTIONS(3761), + [anon_sym_COLON_QMARK] = ACTIONS(3759), + [anon_sym_COLON_DASH] = ACTIONS(3759), + [anon_sym_PERCENT] = ACTIONS(3759), + [anon_sym_SLASH] = ACTIONS(3759), + [anon_sym_DASH] = ACTIONS(3759), + [sym_comment] = ACTIONS(48), + }, + [1199] = { + [sym_subscript] = STATE(1681), + [sym_variable_name] = ACTIONS(3763), + [anon_sym_DOLLAR] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3767), + [anon_sym_STAR] = ACTIONS(3765), + [anon_sym_AT] = ACTIONS(3765), + [anon_sym_QMARK] = ACTIONS(3765), + [anon_sym_0] = ACTIONS(3769), + [anon_sym__] = ACTIONS(3769), + }, + [1200] = { + [anon_sym_RBRACE] = ACTIONS(3771), + [anon_sym_EQ] = ACTIONS(3773), + [anon_sym_COLON] = ACTIONS(3775), + [anon_sym_COLON_QMARK] = ACTIONS(3773), + [anon_sym_COLON_DASH] = ACTIONS(3773), + [anon_sym_PERCENT] = ACTIONS(3773), + [anon_sym_SLASH] = ACTIONS(3773), + [anon_sym_DASH] = ACTIONS(3773), + [sym_comment] = ACTIONS(48), + }, + [1201] = { + [anon_sym_RBRACE] = ACTIONS(3777), + [anon_sym_EQ] = ACTIONS(3755), + [anon_sym_COLON] = ACTIONS(3779), + [anon_sym_COLON_QMARK] = ACTIONS(3755), + [anon_sym_COLON_DASH] = ACTIONS(3755), + [anon_sym_PERCENT] = ACTIONS(3755), + [anon_sym_SLASH] = ACTIONS(3755), + [anon_sym_DASH] = ACTIONS(3755), + [sym_comment] = ACTIONS(48), + }, + [1202] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3781), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1203] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3781), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1204] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(3781), + [sym_comment] = ACTIONS(48), + }, + [1205] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(3781), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1206] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3783), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1207] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(3783), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1208] = { + [sym_file_redirect] = STATE(339), + [sym_heredoc_redirect] = STATE(339), + [sym_herestring_redirect] = STATE(339), + [aux_sym_command_repeat2] = STATE(728), + [sym_file_descriptor] = ACTIONS(662), + [anon_sym_PIPE] = ACTIONS(3633), + [anon_sym_PIPE_AMP] = ACTIONS(3635), + [anon_sym_AMP_AMP] = ACTIONS(3635), + [anon_sym_PIPE_PIPE] = ACTIONS(3635), + [anon_sym_LT] = ACTIONS(664), + [anon_sym_GT] = ACTIONS(664), + [anon_sym_GT_GT] = ACTIONS(666), + [anon_sym_AMP_GT] = ACTIONS(664), + [anon_sym_AMP_GT_GT] = ACTIONS(666), + [anon_sym_LT_AMP] = ACTIONS(666), + [anon_sym_GT_AMP] = ACTIONS(666), + [anon_sym_LT_LT] = ACTIONS(612), + [anon_sym_LT_LT_DASH] = ACTIONS(614), + [anon_sym_LT_LT_LT] = ACTIONS(668), + [anon_sym_BQUOTE] = ACTIONS(3635), + [sym_comment] = ACTIONS(48), + }, + [1209] = { + [anon_sym_PIPE] = ACTIONS(3048), + [anon_sym_RPAREN] = ACTIONS(3048), + [anon_sym_SEMI_SEMI] = ACTIONS(3048), + [anon_sym_PIPE_AMP] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_PIPE_PIPE] = ACTIONS(3048), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3048), + [anon_sym_LF] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3048), + }, + [1210] = { + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1159), + [anon_sym_AMP_GT] = ACTIONS(1159), + [anon_sym_AMP_GT_GT] = ACTIONS(1159), + [anon_sym_LT_AMP] = ACTIONS(1159), + [anon_sym_GT_AMP] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_LT_LT_DASH] = ACTIONS(1159), + [anon_sym_LT_LT_LT] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [1211] = { + [aux_sym_concatenation_repeat1] = STATE(1211), + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(3785), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1159), + [anon_sym_AMP_GT] = ACTIONS(1159), + [anon_sym_AMP_GT_GT] = ACTIONS(1159), + [anon_sym_LT_AMP] = ACTIONS(1159), + [anon_sym_GT_AMP] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_LT_LT_DASH] = ACTIONS(1159), + [anon_sym_LT_LT_LT] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [1212] = { + [sym_file_descriptor] = ACTIONS(1196), + [sym__concat] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1198), + [anon_sym_SEMI_SEMI] = ACTIONS(1198), + [anon_sym_PIPE_AMP] = ACTIONS(1198), + [anon_sym_AMP_AMP] = ACTIONS(1198), + [anon_sym_PIPE_PIPE] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1198), + [anon_sym_GT_GT] = ACTIONS(1198), + [anon_sym_AMP_GT] = ACTIONS(1198), + [anon_sym_AMP_GT_GT] = ACTIONS(1198), + [anon_sym_LT_AMP] = ACTIONS(1198), + [anon_sym_GT_AMP] = ACTIONS(1198), + [anon_sym_LT_LT] = ACTIONS(1198), + [anon_sym_LT_LT_DASH] = ACTIONS(1198), + [anon_sym_LT_LT_LT] = ACTIONS(1198), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + }, + [1213] = { + [sym_concatenation] = STATE(1690), + [sym_string] = STATE(1689), + [sym_simple_expansion] = STATE(1689), + [sym_expansion] = STATE(1689), + [sym_command_substitution] = STATE(1689), + [sym_process_substitution] = STATE(1689), + [anon_sym_RBRACE] = ACTIONS(3788), + [sym__special_characters] = ACTIONS(3790), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3792), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3794), + }, + [1214] = { + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1243), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1243), + [anon_sym_LT_LT_DASH] = ACTIONS(1243), + [anon_sym_LT_LT_LT] = ACTIONS(1243), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1243), + }, + [1215] = { + [sym_concatenation] = STATE(1694), + [sym_string] = STATE(1693), + [sym_simple_expansion] = STATE(1693), + [sym_expansion] = STATE(1693), + [sym_command_substitution] = STATE(1693), + [sym_process_substitution] = STATE(1693), + [anon_sym_RBRACE] = ACTIONS(3796), + [sym__special_characters] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3800), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3802), + }, + [1216] = { + [anon_sym_EQ] = ACTIONS(3804), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1217] = { + [anon_sym_RBRACE] = ACTIONS(3806), + [anon_sym_EQ] = ACTIONS(3808), + [anon_sym_COLON] = ACTIONS(3810), + [anon_sym_COLON_QMARK] = ACTIONS(3808), + [anon_sym_COLON_DASH] = ACTIONS(3808), + [anon_sym_PERCENT] = ACTIONS(3808), + [anon_sym_SLASH] = ACTIONS(3808), + [anon_sym_DASH] = ACTIONS(3808), + [sym_comment] = ACTIONS(48), + }, + [1218] = { + [anon_sym_RBRACE] = ACTIONS(3812), + [anon_sym_EQ] = ACTIONS(3814), + [anon_sym_COLON] = ACTIONS(3816), + [anon_sym_COLON_QMARK] = ACTIONS(3814), + [anon_sym_COLON_DASH] = ACTIONS(3814), + [anon_sym_PERCENT] = ACTIONS(3814), + [anon_sym_SLASH] = ACTIONS(3814), + [anon_sym_DASH] = ACTIONS(3814), + [sym_comment] = ACTIONS(48), + }, + [1219] = { + [anon_sym_RBRACE] = ACTIONS(3788), + [anon_sym_EQ] = ACTIONS(3804), + [anon_sym_COLON] = ACTIONS(3818), + [anon_sym_COLON_QMARK] = ACTIONS(3804), + [anon_sym_COLON_DASH] = ACTIONS(3804), + [anon_sym_PERCENT] = ACTIONS(3804), + [anon_sym_SLASH] = ACTIONS(3804), + [anon_sym_DASH] = ACTIONS(3804), + [sym_comment] = ACTIONS(48), + }, + [1220] = { + [sym_file_descriptor] = ACTIONS(1269), + [sym__concat] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_SEMI_SEMI] = ACTIONS(1271), + [anon_sym_PIPE_AMP] = ACTIONS(1271), + [anon_sym_AMP_AMP] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_AMP_GT] = ACTIONS(1271), + [anon_sym_AMP_GT_GT] = ACTIONS(1271), + [anon_sym_LT_AMP] = ACTIONS(1271), + [anon_sym_GT_AMP] = ACTIONS(1271), + [anon_sym_LT_LT] = ACTIONS(1271), + [anon_sym_LT_LT_DASH] = ACTIONS(1271), + [anon_sym_LT_LT_LT] = ACTIONS(1271), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_LF] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + }, + [1221] = { + [sym_concatenation] = STATE(1703), + [sym_string] = STATE(1702), + [sym_simple_expansion] = STATE(1702), + [sym_expansion] = STATE(1702), + [sym_command_substitution] = STATE(1702), + [sym_process_substitution] = STATE(1702), + [anon_sym_RBRACE] = ACTIONS(3820), + [sym__special_characters] = ACTIONS(3822), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3824), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3826), + }, + [1222] = { + [sym_file_descriptor] = ACTIONS(1281), + [sym__concat] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_SEMI_SEMI] = ACTIONS(1283), + [anon_sym_PIPE_AMP] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1283), + [anon_sym_PIPE_PIPE] = ACTIONS(1283), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_AMP_GT] = ACTIONS(1283), + [anon_sym_AMP_GT_GT] = ACTIONS(1283), + [anon_sym_LT_AMP] = ACTIONS(1283), + [anon_sym_GT_AMP] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(1283), + [anon_sym_LT_LT_DASH] = ACTIONS(1283), + [anon_sym_LT_LT_LT] = ACTIONS(1283), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + }, + [1223] = { + [sym_file_descriptor] = ACTIONS(1379), + [sym__concat] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_SEMI_SEMI] = ACTIONS(1381), + [anon_sym_PIPE_AMP] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [anon_sym_PIPE_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(1381), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_GT_GT] = ACTIONS(1381), + [anon_sym_AMP_GT] = ACTIONS(1381), + [anon_sym_AMP_GT_GT] = ACTIONS(1381), + [anon_sym_LT_AMP] = ACTIONS(1381), + [anon_sym_GT_AMP] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1381), + [anon_sym_LT_LT_DASH] = ACTIONS(1381), + [anon_sym_LT_LT_LT] = ACTIONS(1381), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_LF] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + }, + [1224] = { + [sym_file_descriptor] = ACTIONS(1513), + [sym__concat] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_SEMI_SEMI] = ACTIONS(1515), + [anon_sym_PIPE_AMP] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE_PIPE] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1515), + [anon_sym_GT] = ACTIONS(1515), + [anon_sym_GT_GT] = ACTIONS(1515), + [anon_sym_AMP_GT] = ACTIONS(1515), + [anon_sym_AMP_GT_GT] = ACTIONS(1515), + [anon_sym_LT_AMP] = ACTIONS(1515), + [anon_sym_GT_AMP] = ACTIONS(1515), + [anon_sym_LT_LT] = ACTIONS(1515), + [anon_sym_LT_LT_DASH] = ACTIONS(1515), + [anon_sym_LT_LT_LT] = ACTIONS(1515), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + }, + [1225] = { + [sym__heredoc_middle] = ACTIONS(510), + [sym__heredoc_end] = ACTIONS(510), + [anon_sym_DOLLAR] = ACTIONS(1123), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(510), + [sym_comment] = ACTIONS(48), + }, + [1226] = { + [sym__heredoc_middle] = ACTIONS(514), + [sym__heredoc_end] = ACTIONS(514), + [anon_sym_DOLLAR] = ACTIONS(1125), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(514), + [sym_comment] = ACTIONS(48), + }, + [1227] = { + [anon_sym_EQ] = ACTIONS(3828), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1228] = { + [anon_sym_RBRACE] = ACTIONS(3830), + [anon_sym_EQ] = ACTIONS(3832), + [anon_sym_COLON] = ACTIONS(3834), + [anon_sym_COLON_QMARK] = ACTIONS(3832), + [anon_sym_COLON_DASH] = ACTIONS(3832), + [anon_sym_PERCENT] = ACTIONS(3832), + [anon_sym_SLASH] = ACTIONS(3832), + [anon_sym_DASH] = ACTIONS(3832), + [sym_comment] = ACTIONS(48), + }, + [1229] = { + [sym_subscript] = STATE(1710), + [sym_variable_name] = ACTIONS(3836), + [anon_sym_DOLLAR] = ACTIONS(3838), + [anon_sym_DASH] = ACTIONS(3838), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3840), + [anon_sym_STAR] = ACTIONS(3838), + [anon_sym_AT] = ACTIONS(3838), + [anon_sym_QMARK] = ACTIONS(3838), + [anon_sym_0] = ACTIONS(3842), + [anon_sym__] = ACTIONS(3842), + }, + [1230] = { + [anon_sym_RBRACE] = ACTIONS(3844), + [anon_sym_EQ] = ACTIONS(3846), + [anon_sym_COLON] = ACTIONS(3848), + [anon_sym_COLON_QMARK] = ACTIONS(3846), + [anon_sym_COLON_DASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_DASH] = ACTIONS(3846), + [sym_comment] = ACTIONS(48), + }, + [1231] = { + [anon_sym_RBRACE] = ACTIONS(3850), + [anon_sym_EQ] = ACTIONS(3828), + [anon_sym_COLON] = ACTIONS(3852), + [anon_sym_COLON_QMARK] = ACTIONS(3828), + [anon_sym_COLON_DASH] = ACTIONS(3828), + [anon_sym_PERCENT] = ACTIONS(3828), + [anon_sym_SLASH] = ACTIONS(3828), + [anon_sym_DASH] = ACTIONS(3828), + [sym_comment] = ACTIONS(48), + }, + [1232] = { + [sym_file_descriptor] = ACTIONS(3854), + [anon_sym_PIPE] = ACTIONS(3856), + [anon_sym_RPAREN] = ACTIONS(3856), + [anon_sym_SEMI_SEMI] = ACTIONS(3856), + [anon_sym_PIPE_AMP] = ACTIONS(3856), + [anon_sym_AMP_AMP] = ACTIONS(3856), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_LT] = ACTIONS(3856), + [anon_sym_GT] = ACTIONS(3856), + [anon_sym_GT_GT] = ACTIONS(3856), + [anon_sym_AMP_GT] = ACTIONS(3856), + [anon_sym_AMP_GT_GT] = ACTIONS(3856), + [anon_sym_LT_AMP] = ACTIONS(3856), + [anon_sym_GT_AMP] = ACTIONS(3856), + [anon_sym_LT_LT] = ACTIONS(3856), + [anon_sym_LT_LT_DASH] = ACTIONS(3856), + [anon_sym_LT_LT_LT] = ACTIONS(3856), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3856), + [anon_sym_LF] = ACTIONS(3856), + [anon_sym_AMP] = ACTIONS(3856), + }, + [1233] = { + [sym_simple_expansion] = STATE(751), + [sym_expansion] = STATE(751), + [aux_sym_heredoc_repeat1] = STATE(1233), + [sym__heredoc_middle] = ACTIONS(3858), + [sym__heredoc_end] = ACTIONS(3861), + [anon_sym_DOLLAR] = ACTIONS(3863), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3866), + [sym_comment] = ACTIONS(48), + }, + [1234] = { + [sym_file_descriptor] = ACTIONS(1629), + [sym_variable_name] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(3437), + [anon_sym_GT] = ACTIONS(3437), + [anon_sym_GT_GT] = ACTIONS(1629), + [anon_sym_AMP_GT] = ACTIONS(3437), + [anon_sym_AMP_GT_GT] = ACTIONS(1629), + [anon_sym_LT_AMP] = ACTIONS(1629), + [anon_sym_GT_AMP] = ACTIONS(1629), + [sym__special_characters] = ACTIONS(3437), + [anon_sym_DQUOTE] = ACTIONS(1629), + [sym_raw_string] = ACTIONS(1629), + [anon_sym_DOLLAR] = ACTIONS(3437), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1629), + [anon_sym_BQUOTE] = ACTIONS(1629), + [anon_sym_LT_LPAREN] = ACTIONS(1629), + [anon_sym_GT_LPAREN] = ACTIONS(1629), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3437), + }, + [1235] = { + [sym_concatenation] = STATE(414), + [sym_string] = STATE(408), + [sym_simple_expansion] = STATE(408), + [sym_expansion] = STATE(408), + [sym_command_substitution] = STATE(408), + [sym_process_substitution] = STATE(408), + [aux_sym_for_statement_repeat1] = STATE(779), + [anon_sym_RPAREN] = ACTIONS(3869), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(846), + }, + [1236] = { + [sym__concat] = ACTIONS(1157), + [anon_sym_RPAREN] = ACTIONS(1157), + [sym__special_characters] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_raw_string] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(2079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1157), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(1157), + [anon_sym_LT_LPAREN] = ACTIONS(1157), + [anon_sym_GT_LPAREN] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2079), + }, + [1237] = { + [aux_sym_concatenation_repeat1] = STATE(1237), + [sym__concat] = ACTIONS(3871), + [anon_sym_RPAREN] = ACTIONS(1157), + [sym__special_characters] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_raw_string] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(2079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1157), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(1157), + [anon_sym_LT_LPAREN] = ACTIONS(1157), + [anon_sym_GT_LPAREN] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2079), + }, + [1238] = { + [sym__concat] = ACTIONS(1196), + [anon_sym_RPAREN] = ACTIONS(1196), + [sym__special_characters] = ACTIONS(2084), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_raw_string] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [anon_sym_LT_LPAREN] = ACTIONS(1196), + [anon_sym_GT_LPAREN] = ACTIONS(1196), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2084), + }, + [1239] = { + [sym_concatenation] = STATE(1718), + [sym_string] = STATE(1717), + [sym_simple_expansion] = STATE(1717), + [sym_expansion] = STATE(1717), + [sym_command_substitution] = STATE(1717), + [sym_process_substitution] = STATE(1717), + [anon_sym_RBRACE] = ACTIONS(3874), + [sym__special_characters] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3878), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3880), + }, + [1240] = { + [sym__concat] = ACTIONS(1241), + [anon_sym_RPAREN] = ACTIONS(1241), + [sym__special_characters] = ACTIONS(2094), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_raw_string] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(2094), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1241), + [anon_sym_BQUOTE] = ACTIONS(1241), + [anon_sym_LT_LPAREN] = ACTIONS(1241), + [anon_sym_GT_LPAREN] = ACTIONS(1241), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2094), + }, + [1241] = { + [sym_concatenation] = STATE(1722), + [sym_string] = STATE(1721), + [sym_simple_expansion] = STATE(1721), + [sym_expansion] = STATE(1721), + [sym_command_substitution] = STATE(1721), + [sym_process_substitution] = STATE(1721), + [anon_sym_RBRACE] = ACTIONS(3882), + [sym__special_characters] = ACTIONS(3884), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3888), + }, + [1242] = { + [anon_sym_EQ] = ACTIONS(3890), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1243] = { + [anon_sym_RBRACE] = ACTIONS(3892), + [anon_sym_EQ] = ACTIONS(3894), + [anon_sym_COLON] = ACTIONS(3896), + [anon_sym_COLON_QMARK] = ACTIONS(3894), + [anon_sym_COLON_DASH] = ACTIONS(3894), + [anon_sym_PERCENT] = ACTIONS(3894), + [anon_sym_SLASH] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3894), + [sym_comment] = ACTIONS(48), + }, + [1244] = { + [anon_sym_RBRACE] = ACTIONS(3898), + [anon_sym_EQ] = ACTIONS(3900), + [anon_sym_COLON] = ACTIONS(3902), + [anon_sym_COLON_QMARK] = ACTIONS(3900), + [anon_sym_COLON_DASH] = ACTIONS(3900), + [anon_sym_PERCENT] = ACTIONS(3900), + [anon_sym_SLASH] = ACTIONS(3900), + [anon_sym_DASH] = ACTIONS(3900), + [sym_comment] = ACTIONS(48), + }, + [1245] = { + [anon_sym_RBRACE] = ACTIONS(3874), + [anon_sym_EQ] = ACTIONS(3890), + [anon_sym_COLON] = ACTIONS(3904), + [anon_sym_COLON_QMARK] = ACTIONS(3890), + [anon_sym_COLON_DASH] = ACTIONS(3890), + [anon_sym_PERCENT] = ACTIONS(3890), + [anon_sym_SLASH] = ACTIONS(3890), + [anon_sym_DASH] = ACTIONS(3890), + [sym_comment] = ACTIONS(48), + }, + [1246] = { + [sym__concat] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1269), + [sym__special_characters] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_raw_string] = ACTIONS(1269), + [anon_sym_DOLLAR] = ACTIONS(2120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1269), + [anon_sym_BQUOTE] = ACTIONS(1269), + [anon_sym_LT_LPAREN] = ACTIONS(1269), + [anon_sym_GT_LPAREN] = ACTIONS(1269), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2120), + }, + [1247] = { + [sym_concatenation] = STATE(1731), + [sym_string] = STATE(1730), + [sym_simple_expansion] = STATE(1730), + [sym_expansion] = STATE(1730), + [sym_command_substitution] = STATE(1730), + [sym_process_substitution] = STATE(1730), + [anon_sym_RBRACE] = ACTIONS(3906), + [sym__special_characters] = ACTIONS(3908), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3910), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3912), + }, + [1248] = { + [sym__concat] = ACTIONS(1281), + [anon_sym_RPAREN] = ACTIONS(1281), + [sym__special_characters] = ACTIONS(2130), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_raw_string] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(2130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1281), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2130), + }, + [1249] = { + [sym__concat] = ACTIONS(1379), + [anon_sym_RPAREN] = ACTIONS(1379), + [sym__special_characters] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(1379), + [sym_raw_string] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(2132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1379), + [anon_sym_BQUOTE] = ACTIONS(1379), + [anon_sym_LT_LPAREN] = ACTIONS(1379), + [anon_sym_GT_LPAREN] = ACTIONS(1379), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2132), + }, + [1250] = { + [sym__concat] = ACTIONS(1513), + [anon_sym_RPAREN] = ACTIONS(1513), + [sym__special_characters] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(1513), + [sym_raw_string] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(2134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1513), + [anon_sym_BQUOTE] = ACTIONS(1513), + [anon_sym_LT_LPAREN] = ACTIONS(1513), + [anon_sym_GT_LPAREN] = ACTIONS(1513), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2134), + }, + [1251] = { + [sym_file_descriptor] = ACTIONS(2176), + [sym__concat] = ACTIONS(2176), + [sym_variable_name] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_SEMI_SEMI] = ACTIONS(2178), + [anon_sym_PIPE_AMP] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2178), + [anon_sym_PIPE_PIPE] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2178), + [anon_sym_AMP_GT] = ACTIONS(2178), + [anon_sym_AMP_GT_GT] = ACTIONS(2178), + [anon_sym_LT_AMP] = ACTIONS(2178), + [anon_sym_GT_AMP] = ACTIONS(2178), + [sym__special_characters] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [sym_raw_string] = ACTIONS(2178), + [anon_sym_DOLLAR] = ACTIONS(2178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2178), + [anon_sym_BQUOTE] = ACTIONS(2178), + [anon_sym_LT_LPAREN] = ACTIONS(2178), + [anon_sym_GT_LPAREN] = ACTIONS(2178), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_LF] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + }, + [1252] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3914), + [sym_comment] = ACTIONS(48), + }, + [1253] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3916), + [sym_comment] = ACTIONS(48), + }, + [1254] = { + [anon_sym_RBRACE] = ACTIONS(3916), + [sym_comment] = ACTIONS(48), + }, + [1255] = { + [sym_file_descriptor] = ACTIONS(2214), + [sym__concat] = ACTIONS(2214), + [sym_variable_name] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2216), + [anon_sym_SEMI_SEMI] = ACTIONS(2216), + [anon_sym_PIPE_AMP] = ACTIONS(2216), + [anon_sym_AMP_AMP] = ACTIONS(2216), + [anon_sym_PIPE_PIPE] = ACTIONS(2216), + [anon_sym_LT] = ACTIONS(2216), + [anon_sym_GT] = ACTIONS(2216), + [anon_sym_GT_GT] = ACTIONS(2216), + [anon_sym_AMP_GT] = ACTIONS(2216), + [anon_sym_AMP_GT_GT] = ACTIONS(2216), + [anon_sym_LT_AMP] = ACTIONS(2216), + [anon_sym_GT_AMP] = ACTIONS(2216), + [sym__special_characters] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2216), + [sym_raw_string] = ACTIONS(2216), + [anon_sym_DOLLAR] = ACTIONS(2216), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2216), + [anon_sym_BQUOTE] = ACTIONS(2216), + [anon_sym_LT_LPAREN] = ACTIONS(2216), + [anon_sym_GT_LPAREN] = ACTIONS(2216), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2216), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_LF] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2216), + }, + [1256] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3918), + [sym_comment] = ACTIONS(48), + }, + [1257] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3920), + [sym_comment] = ACTIONS(48), + }, + [1258] = { + [anon_sym_RBRACE] = ACTIONS(3920), + [sym_comment] = ACTIONS(48), + }, + [1259] = { + [sym_concatenation] = STATE(1738), + [sym_string] = STATE(1737), + [sym_simple_expansion] = STATE(1737), + [sym_expansion] = STATE(1737), + [sym_command_substitution] = STATE(1737), + [sym_process_substitution] = STATE(1737), + [anon_sym_RBRACE] = ACTIONS(3916), + [sym__special_characters] = ACTIONS(3922), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3924), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3926), + }, + [1260] = { + [sym_file_descriptor] = ACTIONS(2228), + [sym__concat] = ACTIONS(2228), + [sym_variable_name] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2230), + [anon_sym_SEMI_SEMI] = ACTIONS(2230), + [anon_sym_PIPE_AMP] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2230), + [anon_sym_PIPE_PIPE] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2230), + [anon_sym_GT_GT] = ACTIONS(2230), + [anon_sym_AMP_GT] = ACTIONS(2230), + [anon_sym_AMP_GT_GT] = ACTIONS(2230), + [anon_sym_LT_AMP] = ACTIONS(2230), + [anon_sym_GT_AMP] = ACTIONS(2230), + [sym__special_characters] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [sym_raw_string] = ACTIONS(2230), + [anon_sym_DOLLAR] = ACTIONS(2230), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2230), + [anon_sym_BQUOTE] = ACTIONS(2230), + [anon_sym_LT_LPAREN] = ACTIONS(2230), + [anon_sym_GT_LPAREN] = ACTIONS(2230), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_LF] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2230), + }, + [1261] = { + [sym_concatenation] = STATE(1742), + [sym_string] = STATE(1741), + [sym_simple_expansion] = STATE(1741), + [sym_expansion] = STATE(1741), + [sym_command_substitution] = STATE(1741), + [sym_process_substitution] = STATE(1741), + [anon_sym_RBRACE] = ACTIONS(3928), + [sym__special_characters] = ACTIONS(3930), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3932), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3934), + }, + [1262] = { + [sym_file_descriptor] = ACTIONS(2240), + [sym__concat] = ACTIONS(2240), + [sym_variable_name] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_SEMI_SEMI] = ACTIONS(2242), + [anon_sym_PIPE_AMP] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2242), + [anon_sym_GT_GT] = ACTIONS(2242), + [anon_sym_AMP_GT] = ACTIONS(2242), + [anon_sym_AMP_GT_GT] = ACTIONS(2242), + [anon_sym_LT_AMP] = ACTIONS(2242), + [anon_sym_GT_AMP] = ACTIONS(2242), + [sym__special_characters] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym_raw_string] = ACTIONS(2242), + [anon_sym_DOLLAR] = ACTIONS(2242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2242), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2242), + [anon_sym_BQUOTE] = ACTIONS(2242), + [anon_sym_LT_LPAREN] = ACTIONS(2242), + [anon_sym_GT_LPAREN] = ACTIONS(2242), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_LF] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + }, + [1263] = { + [sym_concatenation] = STATE(1746), + [sym_string] = STATE(1745), + [sym_simple_expansion] = STATE(1745), + [sym_expansion] = STATE(1745), + [sym_command_substitution] = STATE(1745), + [sym_process_substitution] = STATE(1745), + [anon_sym_RBRACE] = ACTIONS(3936), + [sym__special_characters] = ACTIONS(3938), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3940), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3942), + }, + [1264] = { + [sym_file_descriptor] = ACTIONS(2252), + [sym__concat] = ACTIONS(2252), + [sym_variable_name] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_SEMI_SEMI] = ACTIONS(2254), + [anon_sym_PIPE_AMP] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_GT_GT] = ACTIONS(2254), + [anon_sym_AMP_GT] = ACTIONS(2254), + [anon_sym_AMP_GT_GT] = ACTIONS(2254), + [anon_sym_LT_AMP] = ACTIONS(2254), + [anon_sym_GT_AMP] = ACTIONS(2254), + [sym__special_characters] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2254), + [sym_raw_string] = ACTIONS(2254), + [anon_sym_DOLLAR] = ACTIONS(2254), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2254), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2254), + [anon_sym_BQUOTE] = ACTIONS(2254), + [anon_sym_LT_LPAREN] = ACTIONS(2254), + [anon_sym_GT_LPAREN] = ACTIONS(2254), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LF] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + }, + [1265] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3944), + [sym_comment] = ACTIONS(48), + }, + [1266] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3946), + [sym_comment] = ACTIONS(48), + }, + [1267] = { + [anon_sym_RBRACE] = ACTIONS(3946), + [sym_comment] = ACTIONS(48), + }, + [1268] = { + [anon_sym_RBRACE] = ACTIONS(3948), + [anon_sym_EQ] = ACTIONS(3948), + [anon_sym_PLUS_EQ] = ACTIONS(3948), + [anon_sym_COLON] = ACTIONS(3950), + [anon_sym_COLON_QMARK] = ACTIONS(3948), + [anon_sym_COLON_DASH] = ACTIONS(3948), + [anon_sym_PERCENT] = ACTIONS(3948), + [anon_sym_SLASH] = ACTIONS(3948), + [anon_sym_DASH] = ACTIONS(3948), + [sym_comment] = ACTIONS(48), + }, + [1269] = { + [anon_sym_RBRACE] = ACTIONS(3952), + [anon_sym_EQ] = ACTIONS(3952), + [anon_sym_PLUS_EQ] = ACTIONS(3952), + [anon_sym_COLON] = ACTIONS(3954), + [anon_sym_COLON_QMARK] = ACTIONS(3952), + [anon_sym_COLON_DASH] = ACTIONS(3952), + [anon_sym_PERCENT] = ACTIONS(3952), + [anon_sym_SLASH] = ACTIONS(3952), + [anon_sym_DASH] = ACTIONS(3952), + [sym_comment] = ACTIONS(48), + }, + [1270] = { + [sym__concat] = ACTIONS(2176), + [anon_sym_RBRACK] = ACTIONS(2176), + [sym_comment] = ACTIONS(48), + }, + [1271] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3956), + [sym_comment] = ACTIONS(48), + }, + [1272] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3958), + [sym_comment] = ACTIONS(48), + }, + [1273] = { + [anon_sym_RBRACE] = ACTIONS(3958), + [sym_comment] = ACTIONS(48), + }, + [1274] = { + [sym__concat] = ACTIONS(2214), + [anon_sym_RBRACK] = ACTIONS(2214), + [sym_comment] = ACTIONS(48), + }, + [1275] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3960), + [sym_comment] = ACTIONS(48), + }, + [1276] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3962), + [sym_comment] = ACTIONS(48), + }, + [1277] = { + [anon_sym_RBRACE] = ACTIONS(3962), + [sym_comment] = ACTIONS(48), + }, + [1278] = { + [sym_concatenation] = STATE(1755), + [sym_string] = STATE(1754), + [sym_simple_expansion] = STATE(1754), + [sym_expansion] = STATE(1754), + [sym_command_substitution] = STATE(1754), + [sym_process_substitution] = STATE(1754), + [anon_sym_RBRACE] = ACTIONS(3958), + [sym__special_characters] = ACTIONS(3964), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3966), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3968), + }, + [1279] = { + [sym__concat] = ACTIONS(2228), + [anon_sym_RBRACK] = ACTIONS(2228), + [sym_comment] = ACTIONS(48), + }, + [1280] = { + [sym_concatenation] = STATE(1759), + [sym_string] = STATE(1758), + [sym_simple_expansion] = STATE(1758), + [sym_expansion] = STATE(1758), + [sym_command_substitution] = STATE(1758), + [sym_process_substitution] = STATE(1758), + [anon_sym_RBRACE] = ACTIONS(3970), + [sym__special_characters] = ACTIONS(3972), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3974), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3976), + }, + [1281] = { + [sym__concat] = ACTIONS(2240), + [anon_sym_RBRACK] = ACTIONS(2240), + [sym_comment] = ACTIONS(48), + }, + [1282] = { + [sym_concatenation] = STATE(1763), + [sym_string] = STATE(1762), + [sym_simple_expansion] = STATE(1762), + [sym_expansion] = STATE(1762), + [sym_command_substitution] = STATE(1762), + [sym_process_substitution] = STATE(1762), + [anon_sym_RBRACE] = ACTIONS(3978), + [sym__special_characters] = ACTIONS(3980), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3982), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3984), + }, + [1283] = { + [sym__concat] = ACTIONS(2252), + [anon_sym_RBRACK] = ACTIONS(2252), + [sym_comment] = ACTIONS(48), + }, + [1284] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3986), + [sym_comment] = ACTIONS(48), + }, + [1285] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(3988), + [sym_comment] = ACTIONS(48), + }, + [1286] = { + [anon_sym_RBRACE] = ACTIONS(3988), + [sym_comment] = ACTIONS(48), + }, + [1287] = { + [sym__concat] = ACTIONS(1157), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [sym__special_characters] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_raw_string] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), + [anon_sym_BQUOTE] = ACTIONS(1159), + [anon_sym_LT_LPAREN] = ACTIONS(1159), + [anon_sym_GT_LPAREN] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [1288] = { + [aux_sym_concatenation_repeat1] = STATE(1288), + [sym__concat] = ACTIONS(3990), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [sym__special_characters] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_raw_string] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), + [anon_sym_BQUOTE] = ACTIONS(1159), + [anon_sym_LT_LPAREN] = ACTIONS(1159), + [anon_sym_GT_LPAREN] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [1289] = { + [sym__concat] = ACTIONS(1196), + [anon_sym_SEMI_SEMI] = ACTIONS(1198), + [sym__special_characters] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_raw_string] = ACTIONS(1198), + [anon_sym_DOLLAR] = ACTIONS(1198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), + [anon_sym_BQUOTE] = ACTIONS(1198), + [anon_sym_LT_LPAREN] = ACTIONS(1198), + [anon_sym_GT_LPAREN] = ACTIONS(1198), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + }, + [1290] = { + [sym_concatenation] = STATE(1769), + [sym_string] = STATE(1768), + [sym_simple_expansion] = STATE(1768), + [sym_expansion] = STATE(1768), + [sym_command_substitution] = STATE(1768), + [sym_process_substitution] = STATE(1768), + [anon_sym_RBRACE] = ACTIONS(3993), + [sym__special_characters] = ACTIONS(3995), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(3997), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3999), + }, + [1291] = { + [sym__concat] = ACTIONS(1241), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [sym__special_characters] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1243), + [sym_raw_string] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), + [anon_sym_LT_LPAREN] = ACTIONS(1243), + [anon_sym_GT_LPAREN] = ACTIONS(1243), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1243), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1243), + }, + [1292] = { + [sym_concatenation] = STATE(1773), + [sym_string] = STATE(1772), + [sym_simple_expansion] = STATE(1772), + [sym_expansion] = STATE(1772), + [sym_command_substitution] = STATE(1772), + [sym_process_substitution] = STATE(1772), + [anon_sym_RBRACE] = ACTIONS(4001), + [sym__special_characters] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4005), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4007), + }, + [1293] = { + [anon_sym_EQ] = ACTIONS(4009), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1294] = { + [anon_sym_RBRACE] = ACTIONS(4011), + [anon_sym_EQ] = ACTIONS(4013), + [anon_sym_COLON] = ACTIONS(4015), + [anon_sym_COLON_QMARK] = ACTIONS(4013), + [anon_sym_COLON_DASH] = ACTIONS(4013), + [anon_sym_PERCENT] = ACTIONS(4013), + [anon_sym_SLASH] = ACTIONS(4013), + [anon_sym_DASH] = ACTIONS(4013), + [sym_comment] = ACTIONS(48), + }, + [1295] = { + [anon_sym_RBRACE] = ACTIONS(4017), + [anon_sym_EQ] = ACTIONS(4019), + [anon_sym_COLON] = ACTIONS(4021), + [anon_sym_COLON_QMARK] = ACTIONS(4019), + [anon_sym_COLON_DASH] = ACTIONS(4019), + [anon_sym_PERCENT] = ACTIONS(4019), + [anon_sym_SLASH] = ACTIONS(4019), + [anon_sym_DASH] = ACTIONS(4019), + [sym_comment] = ACTIONS(48), + }, + [1296] = { + [anon_sym_RBRACE] = ACTIONS(3993), + [anon_sym_EQ] = ACTIONS(4009), + [anon_sym_COLON] = ACTIONS(4023), + [anon_sym_COLON_QMARK] = ACTIONS(4009), + [anon_sym_COLON_DASH] = ACTIONS(4009), + [anon_sym_PERCENT] = ACTIONS(4009), + [anon_sym_SLASH] = ACTIONS(4009), + [anon_sym_DASH] = ACTIONS(4009), + [sym_comment] = ACTIONS(48), + }, + [1297] = { + [sym__concat] = ACTIONS(1269), + [anon_sym_SEMI_SEMI] = ACTIONS(1271), + [sym__special_characters] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym_raw_string] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1271), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1271), + [anon_sym_LT_LPAREN] = ACTIONS(1271), + [anon_sym_GT_LPAREN] = ACTIONS(1271), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_LF] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + }, + [1298] = { + [sym_concatenation] = STATE(1782), + [sym_string] = STATE(1781), + [sym_simple_expansion] = STATE(1781), + [sym_expansion] = STATE(1781), + [sym_command_substitution] = STATE(1781), + [sym_process_substitution] = STATE(1781), + [anon_sym_RBRACE] = ACTIONS(4025), + [sym__special_characters] = ACTIONS(4027), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4029), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4031), + }, + [1299] = { + [sym__concat] = ACTIONS(1281), + [anon_sym_SEMI_SEMI] = ACTIONS(1283), + [sym__special_characters] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1283), + [sym_raw_string] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1283), + [anon_sym_BQUOTE] = ACTIONS(1283), + [anon_sym_LT_LPAREN] = ACTIONS(1283), + [anon_sym_GT_LPAREN] = ACTIONS(1283), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + }, + [1300] = { + [sym__concat] = ACTIONS(1379), + [anon_sym_SEMI_SEMI] = ACTIONS(1381), + [sym__special_characters] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1381), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1381), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1381), + [anon_sym_BQUOTE] = ACTIONS(1381), + [anon_sym_LT_LPAREN] = ACTIONS(1381), + [anon_sym_GT_LPAREN] = ACTIONS(1381), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_LF] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + }, + [1301] = { + [sym__concat] = ACTIONS(1513), + [anon_sym_SEMI_SEMI] = ACTIONS(1515), + [sym__special_characters] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [sym_raw_string] = ACTIONS(1515), + [anon_sym_DOLLAR] = ACTIONS(1515), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1515), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [anon_sym_LT_LPAREN] = ACTIONS(1515), + [anon_sym_GT_LPAREN] = ACTIONS(1515), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + }, + [1302] = { + [anon_sym_PIPE] = ACTIONS(4033), + [anon_sym_RPAREN] = ACTIONS(4033), + [anon_sym_SEMI_SEMI] = ACTIONS(4033), + [anon_sym_PIPE_AMP] = ACTIONS(4033), + [anon_sym_AMP_AMP] = ACTIONS(4033), + [anon_sym_PIPE_PIPE] = ACTIONS(4033), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4033), + [anon_sym_LF] = ACTIONS(4033), + [anon_sym_AMP] = ACTIONS(4033), + }, + [1303] = { + [sym__terminated_statement] = STATE(472), + [sym_for_statement] = STATE(473), + [sym_while_statement] = STATE(473), + [sym_if_statement] = STATE(473), + [sym_case_statement] = STATE(473), + [sym_function_definition] = STATE(473), + [sym_subshell] = STATE(473), + [sym_pipeline] = STATE(473), + [sym_list] = STATE(473), + [sym_command] = STATE(473), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(476), + [sym_declaration_command] = STATE(473), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(1783), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_fi] = ACTIONS(4035), + [anon_sym_elif] = ACTIONS(4035), + [anon_sym_else] = ACTIONS(4035), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), + }, + [1304] = { + [sym_file_descriptor] = ACTIONS(684), + [sym_variable_name] = ACTIONS(684), + [anon_sym_for] = ACTIONS(686), + [anon_sym_while] = ACTIONS(686), + [anon_sym_if] = ACTIONS(686), + [anon_sym_fi] = ACTIONS(686), + [anon_sym_case] = ACTIONS(686), + [anon_sym_function] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(684), + [anon_sym_declare] = ACTIONS(686), + [anon_sym_typeset] = ACTIONS(686), + [anon_sym_export] = ACTIONS(686), + [anon_sym_readonly] = ACTIONS(686), + [anon_sym_local] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(684), + [anon_sym_AMP_GT] = ACTIONS(686), + [anon_sym_AMP_GT_GT] = ACTIONS(684), + [anon_sym_LT_AMP] = ACTIONS(684), + [anon_sym_GT_AMP] = ACTIONS(684), + [sym__special_characters] = ACTIONS(686), + [anon_sym_DQUOTE] = ACTIONS(684), + [sym_raw_string] = ACTIONS(684), + [anon_sym_DOLLAR] = ACTIONS(686), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(684), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(684), + [anon_sym_BQUOTE] = ACTIONS(684), + [anon_sym_LT_LPAREN] = ACTIONS(684), + [anon_sym_GT_LPAREN] = ACTIONS(684), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(688), + }, + [1305] = { + [sym__terminated_statement] = STATE(838), + [sym_for_statement] = STATE(839), + [sym_while_statement] = STATE(839), + [sym_if_statement] = STATE(839), + [sym_case_statement] = STATE(839), + [sym_function_definition] = STATE(839), + [sym_subshell] = STATE(839), + [sym_pipeline] = STATE(839), + [sym_list] = STATE(839), + [sym_command] = STATE(839), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(840), + [sym_declaration_command] = STATE(839), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(1305), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(736), + [sym_variable_name] = ACTIONS(739), + [anon_sym_for] = ACTIONS(744), + [anon_sym_while] = ACTIONS(747), + [anon_sym_if] = ACTIONS(750), + [anon_sym_fi] = ACTIONS(2957), + [anon_sym_case] = ACTIONS(753), + [anon_sym_function] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_declare] = ACTIONS(762), + [anon_sym_typeset] = ACTIONS(762), + [anon_sym_export] = ACTIONS(762), + [anon_sym_readonly] = ACTIONS(762), + [anon_sym_local] = ACTIONS(762), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(768), + [anon_sym_AMP_GT] = ACTIONS(765), + [anon_sym_AMP_GT_GT] = ACTIONS(768), + [anon_sym_LT_AMP] = ACTIONS(768), + [anon_sym_GT_AMP] = ACTIONS(768), + [sym__special_characters] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(774), + [sym_raw_string] = ACTIONS(777), + [anon_sym_DOLLAR] = ACTIONS(780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(786), + [anon_sym_BQUOTE] = ACTIONS(789), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(795), + }, + [1306] = { + [anon_sym_PIPE] = ACTIONS(4037), + [anon_sym_RPAREN] = ACTIONS(4037), + [anon_sym_SEMI_SEMI] = ACTIONS(4037), + [anon_sym_PIPE_AMP] = ACTIONS(4037), + [anon_sym_AMP_AMP] = ACTIONS(4037), + [anon_sym_PIPE_PIPE] = ACTIONS(4037), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4037), + [anon_sym_LF] = ACTIONS(4037), + [anon_sym_AMP] = ACTIONS(4037), + }, + [1307] = { + [anon_sym_fi] = ACTIONS(4039), + [sym_comment] = ACTIONS(48), + }, + [1308] = { + [sym_string] = STATE(1785), + [sym_simple_expansion] = STATE(1785), + [sym_expansion] = STATE(1785), + [sym_command_substitution] = STATE(1785), + [sym_process_substitution] = STATE(1785), + [sym__special_characters] = ACTIONS(4041), + [anon_sym_DQUOTE] = ACTIONS(1807), + [sym_raw_string] = ACTIONS(4043), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1815), + [anon_sym_BQUOTE] = ACTIONS(1817), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4041), + }, + [1309] = { + [sym_concatenation] = STATE(1788), + [sym_string] = STATE(1787), + [sym_simple_expansion] = STATE(1787), + [sym_expansion] = STATE(1787), + [sym_command_substitution] = STATE(1787), + [sym_process_substitution] = STATE(1787), + [sym__special_characters] = ACTIONS(4045), + [anon_sym_DQUOTE] = ACTIONS(1807), + [sym_raw_string] = ACTIONS(4047), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1815), + [anon_sym_BQUOTE] = ACTIONS(1817), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4049), + }, + [1310] = { + [sym__terminated_statement] = STATE(22), + [sym_for_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_function_definition] = STATE(23), + [sym_subshell] = STATE(23), + [sym_pipeline] = STATE(23), + [sym_list] = STATE(23), + [sym_command] = STATE(23), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(25), + [sym_declaration_command] = STATE(23), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(1790), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_SEMI_SEMI] = ACTIONS(4051), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), + }, + [1311] = { + [aux_sym_case_item_repeat1] = STATE(1792), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_RPAREN] = ACTIONS(4053), + [sym_comment] = ACTIONS(48), + }, + [1312] = { + [aux_sym_concatenation_repeat1] = STATE(1793), + [sym__concat] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(478), + [anon_sym_RPAREN] = ACTIONS(478), + [sym_comment] = ACTIONS(48), + }, + [1313] = { + [sym__concat] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(482), + [anon_sym_RPAREN] = ACTIONS(482), + [sym_comment] = ACTIONS(48), + }, + [1314] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(4055), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [1315] = { + [sym__terminated_statement] = STATE(22), + [sym_for_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_function_definition] = STATE(23), + [sym_subshell] = STATE(23), + [sym_pipeline] = STATE(23), + [sym_list] = STATE(23), + [sym_command] = STATE(23), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(25), + [sym_declaration_command] = STATE(23), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(1796), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_SEMI_SEMI] = ACTIONS(4057), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), + }, + [1316] = { + [aux_sym_case_item_repeat1] = STATE(1792), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_RPAREN] = ACTIONS(4059), + [sym_comment] = ACTIONS(48), + }, + [1317] = { + [sym__concat] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_RPAREN] = ACTIONS(510), + [sym_comment] = ACTIONS(48), + }, + [1318] = { + [sym__concat] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(514), + [anon_sym_RPAREN] = ACTIONS(514), + [sym_comment] = ACTIONS(48), + }, + [1319] = { + [anon_sym_EQ] = ACTIONS(4061), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1320] = { + [anon_sym_RBRACE] = ACTIONS(4063), + [anon_sym_EQ] = ACTIONS(4065), + [anon_sym_COLON] = ACTIONS(4067), + [anon_sym_COLON_QMARK] = ACTIONS(4065), + [anon_sym_COLON_DASH] = ACTIONS(4065), + [anon_sym_PERCENT] = ACTIONS(4065), + [anon_sym_SLASH] = ACTIONS(4065), + [anon_sym_DASH] = ACTIONS(4065), + [sym_comment] = ACTIONS(48), + }, + [1321] = { + [sym_subscript] = STATE(1804), + [sym_variable_name] = ACTIONS(4069), + [anon_sym_DOLLAR] = ACTIONS(4071), + [anon_sym_DASH] = ACTIONS(4071), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4073), + [anon_sym_STAR] = ACTIONS(4071), + [anon_sym_AT] = ACTIONS(4071), + [anon_sym_QMARK] = ACTIONS(4071), + [anon_sym_0] = ACTIONS(4075), + [anon_sym__] = ACTIONS(4075), + }, + [1322] = { + [anon_sym_RBRACE] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(4079), + [anon_sym_COLON] = ACTIONS(4081), + [anon_sym_COLON_QMARK] = ACTIONS(4079), + [anon_sym_COLON_DASH] = ACTIONS(4079), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_SLASH] = ACTIONS(4079), + [anon_sym_DASH] = ACTIONS(4079), + [sym_comment] = ACTIONS(48), + }, + [1323] = { + [anon_sym_RBRACE] = ACTIONS(4083), + [anon_sym_EQ] = ACTIONS(4061), + [anon_sym_COLON] = ACTIONS(4085), + [anon_sym_COLON_QMARK] = ACTIONS(4061), + [anon_sym_COLON_DASH] = ACTIONS(4061), + [anon_sym_PERCENT] = ACTIONS(4061), + [anon_sym_SLASH] = ACTIONS(4061), + [anon_sym_DASH] = ACTIONS(4061), + [sym_comment] = ACTIONS(48), + }, + [1324] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(4087), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1325] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(4087), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1326] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(4087), + [sym_comment] = ACTIONS(48), + }, + [1327] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(4087), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1328] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(4089), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1329] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(4089), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1330] = { + [anon_sym_PIPE] = ACTIONS(4091), + [anon_sym_RPAREN] = ACTIONS(4091), + [anon_sym_SEMI_SEMI] = ACTIONS(4091), + [anon_sym_PIPE_AMP] = ACTIONS(4091), + [anon_sym_AMP_AMP] = ACTIONS(4091), + [anon_sym_PIPE_PIPE] = ACTIONS(4091), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4091), + [anon_sym_LF] = ACTIONS(4091), + [anon_sym_AMP] = ACTIONS(4091), + }, + [1331] = { + [sym_case_item] = STATE(857), + [sym_concatenation] = STATE(858), + [sym_string] = STATE(851), + [sym_simple_expansion] = STATE(851), + [sym_expansion] = STATE(851), + [sym_command_substitution] = STATE(851), + [sym_process_substitution] = STATE(851), + [aux_sym_case_statement_repeat1] = STATE(1331), + [anon_sym_esac] = ACTIONS(4093), + [sym__special_characters] = ACTIONS(4095), + [anon_sym_DQUOTE] = ACTIONS(4098), + [sym_raw_string] = ACTIONS(4101), + [anon_sym_DOLLAR] = ACTIONS(4104), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4107), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4110), + [anon_sym_BQUOTE] = ACTIONS(4113), + [anon_sym_LT_LPAREN] = ACTIONS(4116), + [anon_sym_GT_LPAREN] = ACTIONS(4116), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4119), + }, + [1332] = { + [sym_case_item] = STATE(857), + [sym_concatenation] = STATE(858), + [sym_string] = STATE(851), + [sym_simple_expansion] = STATE(851), + [sym_expansion] = STATE(851), + [sym_command_substitution] = STATE(851), + [sym_process_substitution] = STATE(851), + [aux_sym_case_statement_repeat1] = STATE(1331), + [anon_sym_esac] = ACTIONS(4122), + [sym__special_characters] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1807), + [sym_raw_string] = ACTIONS(1809), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1815), + [anon_sym_BQUOTE] = ACTIONS(1817), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1821), + }, + [1333] = { + [anon_sym_PIPE] = ACTIONS(4124), + [anon_sym_RPAREN] = ACTIONS(4124), + [anon_sym_SEMI_SEMI] = ACTIONS(4124), + [anon_sym_PIPE_AMP] = ACTIONS(4124), + [anon_sym_AMP_AMP] = ACTIONS(4124), + [anon_sym_PIPE_PIPE] = ACTIONS(4124), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4124), + [anon_sym_LF] = ACTIONS(4124), + [anon_sym_AMP] = ACTIONS(4124), + }, + [1334] = { + [sym_case_item] = STATE(857), + [sym_concatenation] = STATE(858), + [sym_string] = STATE(851), + [sym_simple_expansion] = STATE(851), + [sym_expansion] = STATE(851), + [sym_command_substitution] = STATE(851), + [sym_process_substitution] = STATE(851), + [aux_sym_case_statement_repeat1] = STATE(1331), + [anon_sym_esac] = ACTIONS(4126), + [sym__special_characters] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1807), + [sym_raw_string] = ACTIONS(1809), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1815), + [anon_sym_BQUOTE] = ACTIONS(1817), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1821), + }, + [1335] = { + [sym__concat] = ACTIONS(3353), + [anon_sym_in] = ACTIONS(3355), + [anon_sym_SEMI_SEMI] = ACTIONS(3355), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_LF] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3355), + }, + [1336] = { + [sym__concat] = ACTIONS(3359), + [anon_sym_in] = ACTIONS(3361), + [anon_sym_SEMI_SEMI] = ACTIONS(3361), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_LF] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3361), + }, + [1337] = { + [sym__concat] = ACTIONS(3401), + [anon_sym_in] = ACTIONS(3403), + [anon_sym_SEMI_SEMI] = ACTIONS(3403), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_LF] = ACTIONS(3403), + [anon_sym_AMP] = ACTIONS(3403), + }, + [1338] = { + [sym__concat] = ACTIONS(3405), + [anon_sym_in] = ACTIONS(3407), + [anon_sym_SEMI_SEMI] = ACTIONS(3407), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_LF] = ACTIONS(3407), + [anon_sym_AMP] = ACTIONS(3407), + }, + [1339] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4128), + [sym_comment] = ACTIONS(48), + }, + [1340] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4130), + [sym_comment] = ACTIONS(48), + }, + [1341] = { + [anon_sym_RBRACE] = ACTIONS(4130), + [sym_comment] = ACTIONS(48), + }, + [1342] = { + [sym__concat] = ACTIONS(3413), + [anon_sym_in] = ACTIONS(3415), + [anon_sym_SEMI_SEMI] = ACTIONS(3415), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_LF] = ACTIONS(3415), + [anon_sym_AMP] = ACTIONS(3415), + }, + [1343] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4132), + [sym_comment] = ACTIONS(48), + }, + [1344] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4134), + [sym_comment] = ACTIONS(48), + }, + [1345] = { + [anon_sym_RBRACE] = ACTIONS(4134), + [sym_comment] = ACTIONS(48), + }, + [1346] = { + [sym__concat] = ACTIONS(3421), + [anon_sym_in] = ACTIONS(3423), + [anon_sym_SEMI_SEMI] = ACTIONS(3423), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_LF] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3423), + }, + [1347] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4136), + [sym_comment] = ACTIONS(48), + }, + [1348] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4138), + [sym_comment] = ACTIONS(48), + }, + [1349] = { + [anon_sym_RBRACE] = ACTIONS(4138), + [sym_comment] = ACTIONS(48), + }, + [1350] = { + [sym__concat] = ACTIONS(3429), + [anon_sym_in] = ACTIONS(3431), + [anon_sym_SEMI_SEMI] = ACTIONS(3431), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_LF] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + }, + [1351] = { + [sym__concat] = ACTIONS(3433), + [anon_sym_in] = ACTIONS(3435), + [anon_sym_SEMI_SEMI] = ACTIONS(3435), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_LF] = ACTIONS(3435), + [anon_sym_AMP] = ACTIONS(3435), + }, + [1352] = { + [anon_sym_PIPE] = ACTIONS(4140), + [anon_sym_RPAREN] = ACTIONS(4140), + [anon_sym_SEMI_SEMI] = ACTIONS(4140), + [anon_sym_PIPE_AMP] = ACTIONS(4140), + [anon_sym_AMP_AMP] = ACTIONS(4140), + [anon_sym_PIPE_PIPE] = ACTIONS(4140), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4140), + [anon_sym_LF] = ACTIONS(4140), + [anon_sym_AMP] = ACTIONS(4140), + }, + [1353] = { + [aux_sym_concatenation_repeat1] = STATE(1357), + [sym__concat] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(2660), + [anon_sym_SEMI_SEMI] = ACTIONS(2660), + [anon_sym_PIPE_AMP] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_PIPE_PIPE] = ACTIONS(2660), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2660), + [anon_sym_LF] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2660), + }, + [1354] = { + [aux_sym_concatenation_repeat1] = STATE(1357), + [sym__concat] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_SEMI_SEMI] = ACTIONS(2662), + [anon_sym_PIPE_AMP] = ACTIONS(2662), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_PIPE_PIPE] = ACTIONS(2662), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_LF] = ACTIONS(2662), + [anon_sym_AMP] = ACTIONS(2662), + }, + [1355] = { + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_SEMI_SEMI] = ACTIONS(2662), + [anon_sym_PIPE_AMP] = ACTIONS(2662), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_PIPE_PIPE] = ACTIONS(2662), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_LF] = ACTIONS(2662), + [anon_sym_AMP] = ACTIONS(2662), + }, + [1356] = { + [sym_string] = STATE(1818), + [sym_simple_expansion] = STATE(1818), + [sym_expansion] = STATE(1818), + [sym_command_substitution] = STATE(1818), + [sym_process_substitution] = STATE(1818), + [sym__special_characters] = ACTIONS(4142), + [anon_sym_DQUOTE] = ACTIONS(1886), + [sym_raw_string] = ACTIONS(4144), + [anon_sym_DOLLAR] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1894), + [anon_sym_BQUOTE] = ACTIONS(1896), + [anon_sym_LT_LPAREN] = ACTIONS(1898), + [anon_sym_GT_LPAREN] = ACTIONS(1898), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4142), + }, + [1357] = { + [aux_sym_concatenation_repeat1] = STATE(1819), + [sym__concat] = ACTIONS(3063), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_SEMI_SEMI] = ACTIONS(480), + [anon_sym_PIPE_AMP] = ACTIONS(480), + [anon_sym_AMP_AMP] = ACTIONS(480), + [anon_sym_PIPE_PIPE] = ACTIONS(480), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(480), + [anon_sym_LF] = ACTIONS(480), + [anon_sym_AMP] = ACTIONS(480), + }, + [1358] = { + [sym__concat] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(484), + [anon_sym_SEMI_SEMI] = ACTIONS(484), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(484), + [anon_sym_PIPE_PIPE] = ACTIONS(484), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(484), + [anon_sym_LF] = ACTIONS(484), + [anon_sym_AMP] = ACTIONS(484), + }, + [1359] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(4146), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [1360] = { + [sym__concat] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(512), + [anon_sym_SEMI_SEMI] = ACTIONS(512), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(512), + [anon_sym_PIPE_PIPE] = ACTIONS(512), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_LF] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(512), + }, + [1361] = { + [sym__concat] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_SEMI_SEMI] = ACTIONS(516), + [anon_sym_PIPE_AMP] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(516), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_LF] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(516), + }, + [1362] = { + [anon_sym_EQ] = ACTIONS(4148), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1363] = { + [anon_sym_RBRACE] = ACTIONS(4150), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_COLON] = ACTIONS(4154), + [anon_sym_COLON_QMARK] = ACTIONS(4152), + [anon_sym_COLON_DASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [sym_comment] = ACTIONS(48), + }, + [1364] = { + [sym_subscript] = STATE(1827), + [sym_variable_name] = ACTIONS(4156), + [anon_sym_DOLLAR] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4158), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_AT] = ACTIONS(4158), + [anon_sym_QMARK] = ACTIONS(4158), + [anon_sym_0] = ACTIONS(4162), + [anon_sym__] = ACTIONS(4162), + }, + [1365] = { + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_COLON] = ACTIONS(4168), + [anon_sym_COLON_QMARK] = ACTIONS(4166), + [anon_sym_COLON_DASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [sym_comment] = ACTIONS(48), + }, + [1366] = { + [anon_sym_RBRACE] = ACTIONS(4170), + [anon_sym_EQ] = ACTIONS(4148), + [anon_sym_COLON] = ACTIONS(4172), + [anon_sym_COLON_QMARK] = ACTIONS(4148), + [anon_sym_COLON_DASH] = ACTIONS(4148), + [anon_sym_PERCENT] = ACTIONS(4148), + [anon_sym_SLASH] = ACTIONS(4148), + [anon_sym_DASH] = ACTIONS(4148), + [sym_comment] = ACTIONS(48), + }, + [1367] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(4174), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1368] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(4174), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1369] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(4174), + [sym_comment] = ACTIONS(48), + }, + [1370] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(4174), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1371] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(4176), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1372] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(4176), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1373] = { + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(1157), + [sym_variable_name] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1159), + [anon_sym_AMP_GT] = ACTIONS(1159), + [anon_sym_AMP_GT_GT] = ACTIONS(1159), + [anon_sym_LT_AMP] = ACTIONS(1159), + [anon_sym_GT_AMP] = ACTIONS(1159), + [sym__special_characters] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_raw_string] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), + [anon_sym_BQUOTE] = ACTIONS(1159), + [anon_sym_LT_LPAREN] = ACTIONS(1159), + [anon_sym_GT_LPAREN] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [1374] = { + [aux_sym_concatenation_repeat1] = STATE(1374), + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(4178), + [sym_variable_name] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1159), + [anon_sym_AMP_GT] = ACTIONS(1159), + [anon_sym_AMP_GT_GT] = ACTIONS(1159), + [anon_sym_LT_AMP] = ACTIONS(1159), + [anon_sym_GT_AMP] = ACTIONS(1159), + [sym__special_characters] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1159), + [sym_raw_string] = ACTIONS(1159), + [anon_sym_DOLLAR] = ACTIONS(1159), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1159), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1159), + [anon_sym_BQUOTE] = ACTIONS(1159), + [anon_sym_LT_LPAREN] = ACTIONS(1159), + [anon_sym_GT_LPAREN] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [1375] = { + [sym_file_descriptor] = ACTIONS(1196), + [sym__concat] = ACTIONS(1196), + [sym_variable_name] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1198), + [anon_sym_RPAREN] = ACTIONS(1198), + [anon_sym_SEMI_SEMI] = ACTIONS(1198), + [anon_sym_PIPE_AMP] = ACTIONS(1198), + [anon_sym_AMP_AMP] = ACTIONS(1198), + [anon_sym_PIPE_PIPE] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1198), + [anon_sym_GT_GT] = ACTIONS(1198), + [anon_sym_AMP_GT] = ACTIONS(1198), + [anon_sym_AMP_GT_GT] = ACTIONS(1198), + [anon_sym_LT_AMP] = ACTIONS(1198), + [anon_sym_GT_AMP] = ACTIONS(1198), + [sym__special_characters] = ACTIONS(1198), + [anon_sym_DQUOTE] = ACTIONS(1198), + [sym_raw_string] = ACTIONS(1198), + [anon_sym_DOLLAR] = ACTIONS(1198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1198), + [anon_sym_BQUOTE] = ACTIONS(1198), + [anon_sym_LT_LPAREN] = ACTIONS(1198), + [anon_sym_GT_LPAREN] = ACTIONS(1198), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + }, + [1376] = { + [sym_concatenation] = STATE(1836), + [sym_string] = STATE(1835), + [sym_simple_expansion] = STATE(1835), + [sym_expansion] = STATE(1835), + [sym_command_substitution] = STATE(1835), + [sym_process_substitution] = STATE(1835), + [anon_sym_RBRACE] = ACTIONS(4181), + [sym__special_characters] = ACTIONS(4183), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4185), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4187), + }, + [1377] = { + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(1241), + [sym_variable_name] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_RPAREN] = ACTIONS(1243), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1243), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [sym__special_characters] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1243), + [sym_raw_string] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1243), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), + [anon_sym_BQUOTE] = ACTIONS(1243), + [anon_sym_LT_LPAREN] = ACTIONS(1243), + [anon_sym_GT_LPAREN] = ACTIONS(1243), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1243), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1243), + }, + [1378] = { + [sym_concatenation] = STATE(1840), + [sym_string] = STATE(1839), + [sym_simple_expansion] = STATE(1839), + [sym_expansion] = STATE(1839), + [sym_command_substitution] = STATE(1839), + [sym_process_substitution] = STATE(1839), + [anon_sym_RBRACE] = ACTIONS(4189), + [sym__special_characters] = ACTIONS(4191), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4193), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4195), + }, + [1379] = { + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1380] = { + [anon_sym_RBRACE] = ACTIONS(4199), + [anon_sym_EQ] = ACTIONS(4201), + [anon_sym_COLON] = ACTIONS(4203), + [anon_sym_COLON_QMARK] = ACTIONS(4201), + [anon_sym_COLON_DASH] = ACTIONS(4201), + [anon_sym_PERCENT] = ACTIONS(4201), + [anon_sym_SLASH] = ACTIONS(4201), + [anon_sym_DASH] = ACTIONS(4201), + [sym_comment] = ACTIONS(48), + }, + [1381] = { + [anon_sym_RBRACE] = ACTIONS(4205), + [anon_sym_EQ] = ACTIONS(4207), + [anon_sym_COLON] = ACTIONS(4209), + [anon_sym_COLON_QMARK] = ACTIONS(4207), + [anon_sym_COLON_DASH] = ACTIONS(4207), + [anon_sym_PERCENT] = ACTIONS(4207), + [anon_sym_SLASH] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), + [sym_comment] = ACTIONS(48), + }, + [1382] = { + [anon_sym_RBRACE] = ACTIONS(4181), + [anon_sym_EQ] = ACTIONS(4197), + [anon_sym_COLON] = ACTIONS(4211), + [anon_sym_COLON_QMARK] = ACTIONS(4197), + [anon_sym_COLON_DASH] = ACTIONS(4197), + [anon_sym_PERCENT] = ACTIONS(4197), + [anon_sym_SLASH] = ACTIONS(4197), + [anon_sym_DASH] = ACTIONS(4197), + [sym_comment] = ACTIONS(48), + }, + [1383] = { + [sym_file_descriptor] = ACTIONS(1269), + [sym__concat] = ACTIONS(1269), + [sym_variable_name] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_RPAREN] = ACTIONS(1271), + [anon_sym_SEMI_SEMI] = ACTIONS(1271), + [anon_sym_PIPE_AMP] = ACTIONS(1271), + [anon_sym_AMP_AMP] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_AMP_GT] = ACTIONS(1271), + [anon_sym_AMP_GT_GT] = ACTIONS(1271), + [anon_sym_LT_AMP] = ACTIONS(1271), + [anon_sym_GT_AMP] = ACTIONS(1271), + [sym__special_characters] = ACTIONS(1271), + [anon_sym_DQUOTE] = ACTIONS(1271), + [sym_raw_string] = ACTIONS(1271), + [anon_sym_DOLLAR] = ACTIONS(1271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1271), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1271), + [anon_sym_LT_LPAREN] = ACTIONS(1271), + [anon_sym_GT_LPAREN] = ACTIONS(1271), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_LF] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + }, + [1384] = { + [sym_concatenation] = STATE(1849), + [sym_string] = STATE(1848), + [sym_simple_expansion] = STATE(1848), + [sym_expansion] = STATE(1848), + [sym_command_substitution] = STATE(1848), + [sym_process_substitution] = STATE(1848), + [anon_sym_RBRACE] = ACTIONS(4213), + [sym__special_characters] = ACTIONS(4215), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4217), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4219), + }, + [1385] = { + [sym_file_descriptor] = ACTIONS(1281), + [sym__concat] = ACTIONS(1281), + [sym_variable_name] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_RPAREN] = ACTIONS(1283), + [anon_sym_SEMI_SEMI] = ACTIONS(1283), + [anon_sym_PIPE_AMP] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1283), + [anon_sym_PIPE_PIPE] = ACTIONS(1283), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_AMP_GT] = ACTIONS(1283), + [anon_sym_AMP_GT_GT] = ACTIONS(1283), + [anon_sym_LT_AMP] = ACTIONS(1283), + [anon_sym_GT_AMP] = ACTIONS(1283), + [sym__special_characters] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1283), + [sym_raw_string] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1283), + [anon_sym_BQUOTE] = ACTIONS(1283), + [anon_sym_LT_LPAREN] = ACTIONS(1283), + [anon_sym_GT_LPAREN] = ACTIONS(1283), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + }, + [1386] = { + [sym_file_descriptor] = ACTIONS(1379), + [sym__concat] = ACTIONS(1379), + [sym_variable_name] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_RPAREN] = ACTIONS(1381), + [anon_sym_SEMI_SEMI] = ACTIONS(1381), + [anon_sym_PIPE_AMP] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [anon_sym_PIPE_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(1381), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_GT_GT] = ACTIONS(1381), + [anon_sym_AMP_GT] = ACTIONS(1381), + [anon_sym_AMP_GT_GT] = ACTIONS(1381), + [anon_sym_LT_AMP] = ACTIONS(1381), + [anon_sym_GT_AMP] = ACTIONS(1381), + [sym__special_characters] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1381), + [sym_raw_string] = ACTIONS(1381), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1381), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1381), + [anon_sym_BQUOTE] = ACTIONS(1381), + [anon_sym_LT_LPAREN] = ACTIONS(1381), + [anon_sym_GT_LPAREN] = ACTIONS(1381), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_LF] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + }, + [1387] = { + [sym_file_descriptor] = ACTIONS(1513), + [sym__concat] = ACTIONS(1513), + [sym_variable_name] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_SEMI_SEMI] = ACTIONS(1515), + [anon_sym_PIPE_AMP] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE_PIPE] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1515), + [anon_sym_GT] = ACTIONS(1515), + [anon_sym_GT_GT] = ACTIONS(1515), + [anon_sym_AMP_GT] = ACTIONS(1515), + [anon_sym_AMP_GT_GT] = ACTIONS(1515), + [anon_sym_LT_AMP] = ACTIONS(1515), + [anon_sym_GT_AMP] = ACTIONS(1515), + [sym__special_characters] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [sym_raw_string] = ACTIONS(1515), + [anon_sym_DOLLAR] = ACTIONS(1515), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1515), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [anon_sym_LT_LPAREN] = ACTIONS(1515), + [anon_sym_GT_LPAREN] = ACTIONS(1515), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + }, + [1388] = { + [sym_file_redirect] = STATE(1352), + [sym_file_descriptor] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(3048), + [anon_sym_RPAREN] = ACTIONS(3048), + [anon_sym_SEMI_SEMI] = ACTIONS(3048), + [anon_sym_PIPE_AMP] = ACTIONS(3048), + [anon_sym_AMP_AMP] = ACTIONS(3048), + [anon_sym_PIPE_PIPE] = ACTIONS(3048), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_GT] = ACTIONS(1928), + [anon_sym_GT_GT] = ACTIONS(1928), + [anon_sym_AMP_GT] = ACTIONS(1928), + [anon_sym_AMP_GT_GT] = ACTIONS(1928), + [anon_sym_LT_AMP] = ACTIONS(1928), + [anon_sym_GT_AMP] = ACTIONS(1928), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3048), + [anon_sym_LF] = ACTIONS(3048), + [anon_sym_AMP] = ACTIONS(3048), + }, + [1389] = { + [sym_concatenation] = STATE(1355), + [sym_string] = STATE(1851), + [sym_simple_expansion] = STATE(1851), + [sym_expansion] = STATE(1851), + [sym_command_substitution] = STATE(1851), + [sym_process_substitution] = STATE(1851), + [sym__special_characters] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym_raw_string] = ACTIONS(4223), + [anon_sym_DOLLAR] = ACTIONS(3129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3133), + [anon_sym_BQUOTE] = ACTIONS(3135), + [anon_sym_LT_LPAREN] = ACTIONS(3137), + [anon_sym_GT_LPAREN] = ACTIONS(3137), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4225), + }, + [1390] = { + [aux_sym_concatenation_repeat1] = STATE(1853), + [sym__concat] = ACTIONS(4227), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_RPAREN] = ACTIONS(1529), + [anon_sym_SEMI_SEMI] = ACTIONS(1529), + [anon_sym_PIPE_AMP] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1529), + [anon_sym_PIPE_PIPE] = ACTIONS(1529), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1529), + [anon_sym_LF] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1529), + }, + [1391] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(1855), + [anon_sym_DQUOTE] = ACTIONS(4229), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [1392] = { + [aux_sym_concatenation_repeat1] = STATE(1853), + [sym__concat] = ACTIONS(4227), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_RPAREN] = ACTIONS(1533), + [anon_sym_SEMI_SEMI] = ACTIONS(1533), + [anon_sym_PIPE_AMP] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1533), + [anon_sym_PIPE_PIPE] = ACTIONS(1533), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_LF] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + }, + [1393] = { + [anon_sym_DOLLAR] = ACTIONS(4231), + [anon_sym_DASH] = ACTIONS(4231), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4233), + [anon_sym_STAR] = ACTIONS(4231), + [anon_sym_AT] = ACTIONS(4231), + [anon_sym_QMARK] = ACTIONS(4231), + [anon_sym_0] = ACTIONS(4235), + [anon_sym__] = ACTIONS(4235), + }, + [1394] = { + [sym_subscript] = STATE(1862), + [sym_variable_name] = ACTIONS(4237), + [anon_sym_DOLLAR] = ACTIONS(4239), + [anon_sym_POUND] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4239), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4243), + [anon_sym_STAR] = ACTIONS(4239), + [anon_sym_AT] = ACTIONS(4239), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_0] = ACTIONS(4245), + [anon_sym__] = ACTIONS(4245), + }, + [1395] = { + [sym_for_statement] = STATE(1863), + [sym_while_statement] = STATE(1863), + [sym_if_statement] = STATE(1863), + [sym_case_statement] = STATE(1863), + [sym_function_definition] = STATE(1863), + [sym_subshell] = STATE(1863), + [sym_pipeline] = STATE(1863), + [sym_list] = STATE(1863), + [sym_command] = STATE(1863), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1864), + [sym_declaration_command] = STATE(1863), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [1396] = { + [sym_for_statement] = STATE(1865), + [sym_while_statement] = STATE(1865), + [sym_if_statement] = STATE(1865), + [sym_case_statement] = STATE(1865), + [sym_function_definition] = STATE(1865), + [sym_subshell] = STATE(1865), + [sym_pipeline] = STATE(1865), + [sym_list] = STATE(1865), + [sym_command] = STATE(1865), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(1866), + [sym_declaration_command] = STATE(1865), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), + }, + [1397] = { + [sym_for_statement] = STATE(1867), + [sym_while_statement] = STATE(1867), + [sym_if_statement] = STATE(1867), + [sym_case_statement] = STATE(1867), + [sym_function_definition] = STATE(1867), + [sym_subshell] = STATE(1867), + [sym_pipeline] = STATE(1867), + [sym_list] = STATE(1867), + [sym_command] = STATE(1867), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1868), + [sym_declaration_command] = STATE(1867), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [1398] = { + [sym_string] = STATE(1869), + [sym_simple_expansion] = STATE(1869), + [sym_expansion] = STATE(1869), + [sym_command_substitution] = STATE(1869), + [sym_process_substitution] = STATE(1869), + [sym__special_characters] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(1932), + [sym_raw_string] = ACTIONS(4249), + [anon_sym_DOLLAR] = ACTIONS(1936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1938), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1942), + [anon_sym_LT_LPAREN] = ACTIONS(1944), + [anon_sym_GT_LPAREN] = ACTIONS(1944), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4247), + }, + [1399] = { + [aux_sym_concatenation_repeat1] = STATE(1870), + [sym__concat] = ACTIONS(3141), + [sym_variable_name] = ACTIONS(478), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(480), + [anon_sym_SEMI_SEMI] = ACTIONS(480), + [anon_sym_PIPE_AMP] = ACTIONS(480), + [anon_sym_AMP_AMP] = ACTIONS(480), + [anon_sym_PIPE_PIPE] = ACTIONS(480), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(480), + [sym_word] = ACTIONS(480), + [anon_sym_SEMI] = ACTIONS(480), + [anon_sym_LF] = ACTIONS(480), + [anon_sym_AMP] = ACTIONS(480), + }, + [1400] = { + [sym__concat] = ACTIONS(482), + [sym_variable_name] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(484), + [anon_sym_RPAREN] = ACTIONS(484), + [anon_sym_SEMI_SEMI] = ACTIONS(484), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(484), + [anon_sym_PIPE_PIPE] = ACTIONS(484), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(484), + [sym_word] = ACTIONS(484), + [anon_sym_SEMI] = ACTIONS(484), + [anon_sym_LF] = ACTIONS(484), + [anon_sym_AMP] = ACTIONS(484), + }, + [1401] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(4251), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [1402] = { + [sym__concat] = ACTIONS(510), + [sym_variable_name] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(512), + [anon_sym_RPAREN] = ACTIONS(512), + [anon_sym_SEMI_SEMI] = ACTIONS(512), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(512), + [anon_sym_PIPE_PIPE] = ACTIONS(512), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(512), + [sym_word] = ACTIONS(512), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_LF] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(512), + }, + [1403] = { + [sym__concat] = ACTIONS(514), + [sym_variable_name] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(516), + [anon_sym_SEMI_SEMI] = ACTIONS(516), + [anon_sym_PIPE_AMP] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(516), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(516), + [sym_word] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_LF] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(516), + }, + [1404] = { + [anon_sym_EQ] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1405] = { + [anon_sym_RBRACE] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(4257), + [anon_sym_COLON] = ACTIONS(4259), + [anon_sym_COLON_QMARK] = ACTIONS(4257), + [anon_sym_COLON_DASH] = ACTIONS(4257), + [anon_sym_PERCENT] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [sym_comment] = ACTIONS(48), + }, + [1406] = { + [sym_subscript] = STATE(1878), + [sym_variable_name] = ACTIONS(4261), + [anon_sym_DOLLAR] = ACTIONS(4263), + [anon_sym_DASH] = ACTIONS(4263), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4265), + [anon_sym_STAR] = ACTIONS(4263), + [anon_sym_AT] = ACTIONS(4263), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_0] = ACTIONS(4267), + [anon_sym__] = ACTIONS(4267), + }, + [1407] = { + [anon_sym_RBRACE] = ACTIONS(4269), + [anon_sym_EQ] = ACTIONS(4271), + [anon_sym_COLON] = ACTIONS(4273), + [anon_sym_COLON_QMARK] = ACTIONS(4271), + [anon_sym_COLON_DASH] = ACTIONS(4271), + [anon_sym_PERCENT] = ACTIONS(4271), + [anon_sym_SLASH] = ACTIONS(4271), + [anon_sym_DASH] = ACTIONS(4271), + [sym_comment] = ACTIONS(48), + }, + [1408] = { + [anon_sym_RBRACE] = ACTIONS(4275), + [anon_sym_EQ] = ACTIONS(4253), + [anon_sym_COLON] = ACTIONS(4277), + [anon_sym_COLON_QMARK] = ACTIONS(4253), + [anon_sym_COLON_DASH] = ACTIONS(4253), + [anon_sym_PERCENT] = ACTIONS(4253), + [anon_sym_SLASH] = ACTIONS(4253), + [anon_sym_DASH] = ACTIONS(4253), + [sym_comment] = ACTIONS(48), + }, + [1409] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(4279), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1410] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(4279), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1411] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(4279), + [sym_comment] = ACTIONS(48), + }, + [1412] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(4279), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1413] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(4281), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1414] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(4281), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1415] = { + [sym_file_descriptor] = ACTIONS(3353), + [sym__concat] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(3355), + [anon_sym_RPAREN] = ACTIONS(3355), + [anon_sym_SEMI_SEMI] = ACTIONS(3355), + [anon_sym_PIPE_AMP] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_LT] = ACTIONS(3355), + [anon_sym_GT] = ACTIONS(3355), + [anon_sym_GT_GT] = ACTIONS(3355), + [anon_sym_AMP_GT] = ACTIONS(3355), + [anon_sym_AMP_GT_GT] = ACTIONS(3355), + [anon_sym_LT_AMP] = ACTIONS(3355), + [anon_sym_GT_AMP] = ACTIONS(3355), + [anon_sym_LT_LT] = ACTIONS(3355), + [anon_sym_LT_LT_DASH] = ACTIONS(3355), + [anon_sym_LT_LT_LT] = ACTIONS(3355), + [sym__special_characters] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [sym_raw_string] = ACTIONS(3355), + [anon_sym_DOLLAR] = ACTIONS(3355), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3355), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3355), + [anon_sym_BQUOTE] = ACTIONS(3355), + [anon_sym_LT_LPAREN] = ACTIONS(3355), + [anon_sym_GT_LPAREN] = ACTIONS(3355), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_LF] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3355), + }, + [1416] = { + [sym_file_descriptor] = ACTIONS(3359), + [sym__concat] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3361), + [anon_sym_RPAREN] = ACTIONS(3361), + [anon_sym_SEMI_SEMI] = ACTIONS(3361), + [anon_sym_PIPE_AMP] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_GT] = ACTIONS(3361), + [anon_sym_GT_GT] = ACTIONS(3361), + [anon_sym_AMP_GT] = ACTIONS(3361), + [anon_sym_AMP_GT_GT] = ACTIONS(3361), + [anon_sym_LT_AMP] = ACTIONS(3361), + [anon_sym_GT_AMP] = ACTIONS(3361), + [anon_sym_LT_LT] = ACTIONS(3361), + [anon_sym_LT_LT_DASH] = ACTIONS(3361), + [anon_sym_LT_LT_LT] = ACTIONS(3361), + [sym__special_characters] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [sym_raw_string] = ACTIONS(3361), + [anon_sym_DOLLAR] = ACTIONS(3361), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3361), + [anon_sym_BQUOTE] = ACTIONS(3361), + [anon_sym_LT_LPAREN] = ACTIONS(3361), + [anon_sym_GT_LPAREN] = ACTIONS(3361), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_LF] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3361), + }, + [1417] = { + [sym_file_descriptor] = ACTIONS(3401), + [sym__concat] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(3403), + [anon_sym_RPAREN] = ACTIONS(3403), + [anon_sym_SEMI_SEMI] = ACTIONS(3403), + [anon_sym_PIPE_AMP] = ACTIONS(3403), + [anon_sym_AMP_AMP] = ACTIONS(3403), + [anon_sym_PIPE_PIPE] = ACTIONS(3403), + [anon_sym_LT] = ACTIONS(3403), + [anon_sym_GT] = ACTIONS(3403), + [anon_sym_GT_GT] = ACTIONS(3403), + [anon_sym_AMP_GT] = ACTIONS(3403), + [anon_sym_AMP_GT_GT] = ACTIONS(3403), + [anon_sym_LT_AMP] = ACTIONS(3403), + [anon_sym_GT_AMP] = ACTIONS(3403), + [anon_sym_LT_LT] = ACTIONS(3403), + [anon_sym_LT_LT_DASH] = ACTIONS(3403), + [anon_sym_LT_LT_LT] = ACTIONS(3403), + [sym__special_characters] = ACTIONS(3403), + [anon_sym_DQUOTE] = ACTIONS(3403), + [sym_raw_string] = ACTIONS(3403), + [anon_sym_DOLLAR] = ACTIONS(3403), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3403), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3403), + [anon_sym_BQUOTE] = ACTIONS(3403), + [anon_sym_LT_LPAREN] = ACTIONS(3403), + [anon_sym_GT_LPAREN] = ACTIONS(3403), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_LF] = ACTIONS(3403), + [anon_sym_AMP] = ACTIONS(3403), + }, + [1418] = { + [sym_file_descriptor] = ACTIONS(3405), + [sym__concat] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(3407), + [anon_sym_RPAREN] = ACTIONS(3407), + [anon_sym_SEMI_SEMI] = ACTIONS(3407), + [anon_sym_PIPE_AMP] = ACTIONS(3407), + [anon_sym_AMP_AMP] = ACTIONS(3407), + [anon_sym_PIPE_PIPE] = ACTIONS(3407), + [anon_sym_LT] = ACTIONS(3407), + [anon_sym_GT] = ACTIONS(3407), + [anon_sym_GT_GT] = ACTIONS(3407), + [anon_sym_AMP_GT] = ACTIONS(3407), + [anon_sym_AMP_GT_GT] = ACTIONS(3407), + [anon_sym_LT_AMP] = ACTIONS(3407), + [anon_sym_GT_AMP] = ACTIONS(3407), + [anon_sym_LT_LT] = ACTIONS(3407), + [anon_sym_LT_LT_DASH] = ACTIONS(3407), + [anon_sym_LT_LT_LT] = ACTIONS(3407), + [sym__special_characters] = ACTIONS(3407), + [anon_sym_DQUOTE] = ACTIONS(3407), + [sym_raw_string] = ACTIONS(3407), + [anon_sym_DOLLAR] = ACTIONS(3407), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3407), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3407), + [anon_sym_BQUOTE] = ACTIONS(3407), + [anon_sym_LT_LPAREN] = ACTIONS(3407), + [anon_sym_GT_LPAREN] = ACTIONS(3407), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3407), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_LF] = ACTIONS(3407), + [anon_sym_AMP] = ACTIONS(3407), + }, + [1419] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4283), + [sym_comment] = ACTIONS(48), + }, + [1420] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4285), + [sym_comment] = ACTIONS(48), + }, + [1421] = { + [anon_sym_RBRACE] = ACTIONS(4285), + [sym_comment] = ACTIONS(48), + }, + [1422] = { + [sym_file_descriptor] = ACTIONS(3413), + [sym__concat] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(3415), + [anon_sym_RPAREN] = ACTIONS(3415), + [anon_sym_SEMI_SEMI] = ACTIONS(3415), + [anon_sym_PIPE_AMP] = ACTIONS(3415), + [anon_sym_AMP_AMP] = ACTIONS(3415), + [anon_sym_PIPE_PIPE] = ACTIONS(3415), + [anon_sym_LT] = ACTIONS(3415), + [anon_sym_GT] = ACTIONS(3415), + [anon_sym_GT_GT] = ACTIONS(3415), + [anon_sym_AMP_GT] = ACTIONS(3415), + [anon_sym_AMP_GT_GT] = ACTIONS(3415), + [anon_sym_LT_AMP] = ACTIONS(3415), + [anon_sym_GT_AMP] = ACTIONS(3415), + [anon_sym_LT_LT] = ACTIONS(3415), + [anon_sym_LT_LT_DASH] = ACTIONS(3415), + [anon_sym_LT_LT_LT] = ACTIONS(3415), + [sym__special_characters] = ACTIONS(3415), + [anon_sym_DQUOTE] = ACTIONS(3415), + [sym_raw_string] = ACTIONS(3415), + [anon_sym_DOLLAR] = ACTIONS(3415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3415), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3415), + [anon_sym_BQUOTE] = ACTIONS(3415), + [anon_sym_LT_LPAREN] = ACTIONS(3415), + [anon_sym_GT_LPAREN] = ACTIONS(3415), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_LF] = ACTIONS(3415), + [anon_sym_AMP] = ACTIONS(3415), + }, + [1423] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4287), + [sym_comment] = ACTIONS(48), + }, + [1424] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4289), + [sym_comment] = ACTIONS(48), + }, + [1425] = { + [anon_sym_RBRACE] = ACTIONS(4289), + [sym_comment] = ACTIONS(48), + }, + [1426] = { + [sym_file_descriptor] = ACTIONS(3421), + [sym__concat] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(3423), + [anon_sym_RPAREN] = ACTIONS(3423), + [anon_sym_SEMI_SEMI] = ACTIONS(3423), + [anon_sym_PIPE_AMP] = ACTIONS(3423), + [anon_sym_AMP_AMP] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3423), + [anon_sym_GT] = ACTIONS(3423), + [anon_sym_GT_GT] = ACTIONS(3423), + [anon_sym_AMP_GT] = ACTIONS(3423), + [anon_sym_AMP_GT_GT] = ACTIONS(3423), + [anon_sym_LT_AMP] = ACTIONS(3423), + [anon_sym_GT_AMP] = ACTIONS(3423), + [anon_sym_LT_LT] = ACTIONS(3423), + [anon_sym_LT_LT_DASH] = ACTIONS(3423), + [anon_sym_LT_LT_LT] = ACTIONS(3423), + [sym__special_characters] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_raw_string] = ACTIONS(3423), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3423), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3423), + [anon_sym_BQUOTE] = ACTIONS(3423), + [anon_sym_LT_LPAREN] = ACTIONS(3423), + [anon_sym_GT_LPAREN] = ACTIONS(3423), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_LF] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3423), + }, + [1427] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4291), + [sym_comment] = ACTIONS(48), + }, + [1428] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4293), + [sym_comment] = ACTIONS(48), + }, + [1429] = { + [anon_sym_RBRACE] = ACTIONS(4293), + [sym_comment] = ACTIONS(48), + }, + [1430] = { + [sym_file_descriptor] = ACTIONS(3429), + [sym__concat] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_RPAREN] = ACTIONS(3431), + [anon_sym_SEMI_SEMI] = ACTIONS(3431), + [anon_sym_PIPE_AMP] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_PIPE_PIPE] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_AMP_GT] = ACTIONS(3431), + [anon_sym_AMP_GT_GT] = ACTIONS(3431), + [anon_sym_LT_AMP] = ACTIONS(3431), + [anon_sym_GT_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_LT_LT_DASH] = ACTIONS(3431), + [anon_sym_LT_LT_LT] = ACTIONS(3431), + [sym__special_characters] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym_raw_string] = ACTIONS(3431), + [anon_sym_DOLLAR] = ACTIONS(3431), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3431), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3431), + [anon_sym_BQUOTE] = ACTIONS(3431), + [anon_sym_LT_LPAREN] = ACTIONS(3431), + [anon_sym_GT_LPAREN] = ACTIONS(3431), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_LF] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + }, + [1431] = { + [sym_file_descriptor] = ACTIONS(3433), + [sym__concat] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(3435), + [anon_sym_RPAREN] = ACTIONS(3435), + [anon_sym_SEMI_SEMI] = ACTIONS(3435), + [anon_sym_PIPE_AMP] = ACTIONS(3435), + [anon_sym_AMP_AMP] = ACTIONS(3435), + [anon_sym_PIPE_PIPE] = ACTIONS(3435), + [anon_sym_LT] = ACTIONS(3435), + [anon_sym_GT] = ACTIONS(3435), + [anon_sym_GT_GT] = ACTIONS(3435), + [anon_sym_AMP_GT] = ACTIONS(3435), + [anon_sym_AMP_GT_GT] = ACTIONS(3435), + [anon_sym_LT_AMP] = ACTIONS(3435), + [anon_sym_GT_AMP] = ACTIONS(3435), + [anon_sym_LT_LT] = ACTIONS(3435), + [anon_sym_LT_LT_DASH] = ACTIONS(3435), + [anon_sym_LT_LT_LT] = ACTIONS(3435), + [sym__special_characters] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(3435), + [sym_raw_string] = ACTIONS(3435), + [anon_sym_DOLLAR] = ACTIONS(3435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3435), + [anon_sym_BQUOTE] = ACTIONS(3435), + [anon_sym_LT_LPAREN] = ACTIONS(3435), + [anon_sym_GT_LPAREN] = ACTIONS(3435), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3435), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_LF] = ACTIONS(3435), + [anon_sym_AMP] = ACTIONS(3435), + }, + [1432] = { + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1159), + [anon_sym_AMP_GT] = ACTIONS(1159), + [anon_sym_AMP_GT_GT] = ACTIONS(1159), + [anon_sym_LT_AMP] = ACTIONS(1159), + [anon_sym_GT_AMP] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_LT_LT_DASH] = ACTIONS(1159), + [anon_sym_LT_LT_LT] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [1433] = { + [aux_sym_concatenation_repeat1] = STATE(1433), + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(4295), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [anon_sym_LT] = ACTIONS(1159), + [anon_sym_GT] = ACTIONS(1159), + [anon_sym_GT_GT] = ACTIONS(1159), + [anon_sym_AMP_GT] = ACTIONS(1159), + [anon_sym_AMP_GT_GT] = ACTIONS(1159), + [anon_sym_LT_AMP] = ACTIONS(1159), + [anon_sym_GT_AMP] = ACTIONS(1159), + [anon_sym_LT_LT] = ACTIONS(1159), + [anon_sym_LT_LT_DASH] = ACTIONS(1159), + [anon_sym_LT_LT_LT] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [1434] = { + [sym_file_descriptor] = ACTIONS(1196), + [sym__concat] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1198), + [anon_sym_RPAREN] = ACTIONS(1198), + [anon_sym_SEMI_SEMI] = ACTIONS(1198), + [anon_sym_PIPE_AMP] = ACTIONS(1198), + [anon_sym_AMP_AMP] = ACTIONS(1198), + [anon_sym_PIPE_PIPE] = ACTIONS(1198), + [anon_sym_LT] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1198), + [anon_sym_GT_GT] = ACTIONS(1198), + [anon_sym_AMP_GT] = ACTIONS(1198), + [anon_sym_AMP_GT_GT] = ACTIONS(1198), + [anon_sym_LT_AMP] = ACTIONS(1198), + [anon_sym_GT_AMP] = ACTIONS(1198), + [anon_sym_LT_LT] = ACTIONS(1198), + [anon_sym_LT_LT_DASH] = ACTIONS(1198), + [anon_sym_LT_LT_LT] = ACTIONS(1198), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + }, + [1435] = { + [sym_concatenation] = STATE(1893), + [sym_string] = STATE(1892), + [sym_simple_expansion] = STATE(1892), + [sym_expansion] = STATE(1892), + [sym_command_substitution] = STATE(1892), + [sym_process_substitution] = STATE(1892), + [anon_sym_RBRACE] = ACTIONS(4298), + [sym__special_characters] = ACTIONS(4300), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4302), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4304), + }, + [1436] = { + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_RPAREN] = ACTIONS(1243), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_AMP_GT] = ACTIONS(1243), + [anon_sym_AMP_GT_GT] = ACTIONS(1243), + [anon_sym_LT_AMP] = ACTIONS(1243), + [anon_sym_GT_AMP] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1243), + [anon_sym_LT_LT_DASH] = ACTIONS(1243), + [anon_sym_LT_LT_LT] = ACTIONS(1243), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1243), + }, + [1437] = { + [sym_concatenation] = STATE(1897), + [sym_string] = STATE(1896), + [sym_simple_expansion] = STATE(1896), + [sym_expansion] = STATE(1896), + [sym_command_substitution] = STATE(1896), + [sym_process_substitution] = STATE(1896), + [anon_sym_RBRACE] = ACTIONS(4306), + [sym__special_characters] = ACTIONS(4308), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4310), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4312), + }, + [1438] = { + [anon_sym_EQ] = ACTIONS(4314), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1439] = { + [anon_sym_RBRACE] = ACTIONS(4316), + [anon_sym_EQ] = ACTIONS(4318), + [anon_sym_COLON] = ACTIONS(4320), + [anon_sym_COLON_QMARK] = ACTIONS(4318), + [anon_sym_COLON_DASH] = ACTIONS(4318), + [anon_sym_PERCENT] = ACTIONS(4318), + [anon_sym_SLASH] = ACTIONS(4318), + [anon_sym_DASH] = ACTIONS(4318), + [sym_comment] = ACTIONS(48), + }, + [1440] = { + [anon_sym_RBRACE] = ACTIONS(4322), + [anon_sym_EQ] = ACTIONS(4324), + [anon_sym_COLON] = ACTIONS(4326), + [anon_sym_COLON_QMARK] = ACTIONS(4324), + [anon_sym_COLON_DASH] = ACTIONS(4324), + [anon_sym_PERCENT] = ACTIONS(4324), + [anon_sym_SLASH] = ACTIONS(4324), + [anon_sym_DASH] = ACTIONS(4324), + [sym_comment] = ACTIONS(48), + }, + [1441] = { + [anon_sym_RBRACE] = ACTIONS(4298), + [anon_sym_EQ] = ACTIONS(4314), + [anon_sym_COLON] = ACTIONS(4328), + [anon_sym_COLON_QMARK] = ACTIONS(4314), + [anon_sym_COLON_DASH] = ACTIONS(4314), + [anon_sym_PERCENT] = ACTIONS(4314), + [anon_sym_SLASH] = ACTIONS(4314), + [anon_sym_DASH] = ACTIONS(4314), + [sym_comment] = ACTIONS(48), + }, + [1442] = { + [sym_file_descriptor] = ACTIONS(1269), + [sym__concat] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_RPAREN] = ACTIONS(1271), + [anon_sym_SEMI_SEMI] = ACTIONS(1271), + [anon_sym_PIPE_AMP] = ACTIONS(1271), + [anon_sym_AMP_AMP] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_AMP_GT] = ACTIONS(1271), + [anon_sym_AMP_GT_GT] = ACTIONS(1271), + [anon_sym_LT_AMP] = ACTIONS(1271), + [anon_sym_GT_AMP] = ACTIONS(1271), + [anon_sym_LT_LT] = ACTIONS(1271), + [anon_sym_LT_LT_DASH] = ACTIONS(1271), + [anon_sym_LT_LT_LT] = ACTIONS(1271), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_LF] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + }, + [1443] = { + [sym_concatenation] = STATE(1906), + [sym_string] = STATE(1905), + [sym_simple_expansion] = STATE(1905), + [sym_expansion] = STATE(1905), + [sym_command_substitution] = STATE(1905), + [sym_process_substitution] = STATE(1905), + [anon_sym_RBRACE] = ACTIONS(4330), + [sym__special_characters] = ACTIONS(4332), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4334), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4336), + }, + [1444] = { + [sym_file_descriptor] = ACTIONS(1281), + [sym__concat] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_RPAREN] = ACTIONS(1283), + [anon_sym_SEMI_SEMI] = ACTIONS(1283), + [anon_sym_PIPE_AMP] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1283), + [anon_sym_PIPE_PIPE] = ACTIONS(1283), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_AMP_GT] = ACTIONS(1283), + [anon_sym_AMP_GT_GT] = ACTIONS(1283), + [anon_sym_LT_AMP] = ACTIONS(1283), + [anon_sym_GT_AMP] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(1283), + [anon_sym_LT_LT_DASH] = ACTIONS(1283), + [anon_sym_LT_LT_LT] = ACTIONS(1283), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + }, + [1445] = { + [sym_file_descriptor] = ACTIONS(1379), + [sym__concat] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_RPAREN] = ACTIONS(1381), + [anon_sym_SEMI_SEMI] = ACTIONS(1381), + [anon_sym_PIPE_AMP] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [anon_sym_PIPE_PIPE] = ACTIONS(1381), + [anon_sym_LT] = ACTIONS(1381), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_GT_GT] = ACTIONS(1381), + [anon_sym_AMP_GT] = ACTIONS(1381), + [anon_sym_AMP_GT_GT] = ACTIONS(1381), + [anon_sym_LT_AMP] = ACTIONS(1381), + [anon_sym_GT_AMP] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1381), + [anon_sym_LT_LT_DASH] = ACTIONS(1381), + [anon_sym_LT_LT_LT] = ACTIONS(1381), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_LF] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + }, + [1446] = { + [sym_file_descriptor] = ACTIONS(1513), + [sym__concat] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_SEMI_SEMI] = ACTIONS(1515), + [anon_sym_PIPE_AMP] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE_PIPE] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1515), + [anon_sym_GT] = ACTIONS(1515), + [anon_sym_GT_GT] = ACTIONS(1515), + [anon_sym_AMP_GT] = ACTIONS(1515), + [anon_sym_AMP_GT_GT] = ACTIONS(1515), + [anon_sym_LT_AMP] = ACTIONS(1515), + [anon_sym_GT_AMP] = ACTIONS(1515), + [anon_sym_LT_LT] = ACTIONS(1515), + [anon_sym_LT_LT_DASH] = ACTIONS(1515), + [anon_sym_LT_LT_LT] = ACTIONS(1515), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + }, + [1447] = { + [sym_variable_name] = ACTIONS(2766), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_RPAREN] = ACTIONS(2768), + [anon_sym_SEMI_SEMI] = ACTIONS(2768), + [anon_sym_PIPE_AMP] = ACTIONS(2768), + [anon_sym_AMP_AMP] = ACTIONS(2768), + [anon_sym_PIPE_PIPE] = ACTIONS(2768), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2768), + [sym_word] = ACTIONS(2768), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym_LF] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), + }, + [1448] = { + [sym__concat] = ACTIONS(1157), + [sym_variable_name] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1159), + [sym_word] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [1449] = { + [aux_sym_concatenation_repeat1] = STATE(1449), + [sym__concat] = ACTIONS(4338), + [sym_variable_name] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1159), + [sym_word] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [1450] = { + [sym__concat] = ACTIONS(1196), + [sym_variable_name] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1198), + [anon_sym_SEMI_SEMI] = ACTIONS(1198), + [anon_sym_PIPE_AMP] = ACTIONS(1198), + [anon_sym_AMP_AMP] = ACTIONS(1198), + [anon_sym_PIPE_PIPE] = ACTIONS(1198), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1198), + [sym_word] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + }, + [1451] = { + [sym_concatenation] = STATE(1910), + [sym_string] = STATE(1909), + [sym_simple_expansion] = STATE(1909), + [sym_expansion] = STATE(1909), + [sym_command_substitution] = STATE(1909), + [sym_process_substitution] = STATE(1909), + [anon_sym_RBRACE] = ACTIONS(4341), + [sym__special_characters] = ACTIONS(4343), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4345), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4347), + }, + [1452] = { + [sym__concat] = ACTIONS(1241), + [sym_variable_name] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1243), + [sym_word] = ACTIONS(1243), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1243), + }, + [1453] = { + [sym_concatenation] = STATE(1914), + [sym_string] = STATE(1913), + [sym_simple_expansion] = STATE(1913), + [sym_expansion] = STATE(1913), + [sym_command_substitution] = STATE(1913), + [sym_process_substitution] = STATE(1913), + [anon_sym_RBRACE] = ACTIONS(4349), + [sym__special_characters] = ACTIONS(4351), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4353), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4355), + }, [1454] = { - [sym_file_descriptor] = ACTIONS(2730), - [sym_word] = ACTIONS(2730), - [sym__concat] = ACTIONS(2730), - [sym_variable_name] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_SEMI_SEMI] = ACTIONS(2732), - [anon_sym_PIPE_AMP] = ACTIONS(2732), - [anon_sym_AMP_AMP] = ACTIONS(2732), - [anon_sym_PIPE_PIPE] = ACTIONS(2732), - [anon_sym_LT] = ACTIONS(2732), - [anon_sym_GT] = ACTIONS(2732), - [anon_sym_GT_GT] = ACTIONS(2732), - [anon_sym_AMP_GT] = ACTIONS(2732), - [anon_sym_AMP_GT_GT] = ACTIONS(2732), - [anon_sym_LT_AMP] = ACTIONS(2732), - [anon_sym_GT_AMP] = ACTIONS(2732), - [anon_sym_DQUOTE] = ACTIONS(2732), - [sym_raw_string] = ACTIONS(2732), - [anon_sym_DOLLAR] = ACTIONS(2732), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2732), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2732), - [anon_sym_BQUOTE] = ACTIONS(2732), - [anon_sym_LT_LPAREN] = ACTIONS(2732), - [anon_sym_GT_LPAREN] = ACTIONS(2732), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_LF] = ACTIONS(2732), - [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_EQ] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), }, [1455] = { - [sym_file_descriptor] = ACTIONS(2734), - [sym_word] = ACTIONS(2734), - [sym__concat] = ACTIONS(2734), - [sym_variable_name] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_SEMI_SEMI] = ACTIONS(2736), - [anon_sym_PIPE_AMP] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_PIPE_PIPE] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_GT] = ACTIONS(2736), - [anon_sym_GT_GT] = ACTIONS(2736), - [anon_sym_AMP_GT] = ACTIONS(2736), - [anon_sym_AMP_GT_GT] = ACTIONS(2736), - [anon_sym_LT_AMP] = ACTIONS(2736), - [anon_sym_GT_AMP] = ACTIONS(2736), - [anon_sym_DQUOTE] = ACTIONS(2736), - [sym_raw_string] = ACTIONS(2736), - [anon_sym_DOLLAR] = ACTIONS(2736), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2736), - [anon_sym_BQUOTE] = ACTIONS(2736), - [anon_sym_LT_LPAREN] = ACTIONS(2736), - [anon_sym_GT_LPAREN] = ACTIONS(2736), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_LF] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), + [anon_sym_RBRACE] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4361), + [anon_sym_COLON] = ACTIONS(4363), + [anon_sym_COLON_QMARK] = ACTIONS(4361), + [anon_sym_COLON_DASH] = ACTIONS(4361), + [anon_sym_PERCENT] = ACTIONS(4361), + [anon_sym_SLASH] = ACTIONS(4361), + [anon_sym_DASH] = ACTIONS(4361), + [sym_comment] = ACTIONS(48), }, [1456] = { - [sym_file_descriptor] = ACTIONS(2738), - [sym_word] = ACTIONS(2738), - [sym__concat] = ACTIONS(2738), - [sym_variable_name] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_SEMI_SEMI] = ACTIONS(2740), - [anon_sym_PIPE_AMP] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_AMP_GT] = ACTIONS(2740), - [anon_sym_AMP_GT_GT] = ACTIONS(2740), - [anon_sym_LT_AMP] = ACTIONS(2740), - [anon_sym_GT_AMP] = ACTIONS(2740), - [anon_sym_DQUOTE] = ACTIONS(2740), - [sym_raw_string] = ACTIONS(2740), - [anon_sym_DOLLAR] = ACTIONS(2740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2740), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2740), - [anon_sym_BQUOTE] = ACTIONS(2740), - [anon_sym_LT_LPAREN] = ACTIONS(2740), - [anon_sym_GT_LPAREN] = ACTIONS(2740), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_RBRACE] = ACTIONS(4365), + [anon_sym_EQ] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4369), + [anon_sym_COLON_QMARK] = ACTIONS(4367), + [anon_sym_COLON_DASH] = ACTIONS(4367), + [anon_sym_PERCENT] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [sym_comment] = ACTIONS(48), }, [1457] = { - [anon_sym_RBRACE] = ACTIONS(3307), - [sym_comment] = ACTIONS(46), + [anon_sym_RBRACE] = ACTIONS(4341), + [anon_sym_EQ] = ACTIONS(4357), + [anon_sym_COLON] = ACTIONS(4371), + [anon_sym_COLON_QMARK] = ACTIONS(4357), + [anon_sym_COLON_DASH] = ACTIONS(4357), + [anon_sym_PERCENT] = ACTIONS(4357), + [anon_sym_SLASH] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4357), + [sym_comment] = ACTIONS(48), }, [1458] = { - [anon_sym_RBRACE] = ACTIONS(3309), - [sym_comment] = ACTIONS(46), + [sym__concat] = ACTIONS(1269), + [sym_variable_name] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_SEMI_SEMI] = ACTIONS(1271), + [anon_sym_PIPE_AMP] = ACTIONS(1271), + [anon_sym_AMP_AMP] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1271), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1271), + [sym_word] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_LF] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), }, [1459] = { - [sym__concat] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2726), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_RBRACE] = ACTIONS(2726), - [anon_sym_RBRACK] = ACTIONS(2726), - [sym_comment] = ACTIONS(46), + [sym_concatenation] = STATE(1923), + [sym_string] = STATE(1922), + [sym_simple_expansion] = STATE(1922), + [sym_expansion] = STATE(1922), + [sym_command_substitution] = STATE(1922), + [sym_process_substitution] = STATE(1922), + [anon_sym_RBRACE] = ACTIONS(4373), + [sym__special_characters] = ACTIONS(4375), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4377), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4379), }, [1460] = { - [sym__concat] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_RBRACE] = ACTIONS(2730), - [anon_sym_RBRACK] = ACTIONS(2730), - [sym_comment] = ACTIONS(46), + [sym__concat] = ACTIONS(1281), + [sym_variable_name] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_SEMI_SEMI] = ACTIONS(1283), + [anon_sym_PIPE_AMP] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1283), + [anon_sym_PIPE_PIPE] = ACTIONS(1283), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1283), + [sym_word] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), }, [1461] = { - [sym__concat] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_RPAREN] = ACTIONS(2734), - [anon_sym_RBRACE] = ACTIONS(2734), - [anon_sym_RBRACK] = ACTIONS(2734), - [sym_comment] = ACTIONS(46), + [sym__concat] = ACTIONS(1379), + [sym_variable_name] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_SEMI_SEMI] = ACTIONS(1381), + [anon_sym_PIPE_AMP] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [anon_sym_PIPE_PIPE] = ACTIONS(1381), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1381), + [sym_word] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_LF] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), }, [1462] = { - [sym__concat] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_RBRACE] = ACTIONS(2738), - [anon_sym_RBRACK] = ACTIONS(2738), - [sym_comment] = ACTIONS(46), + [sym__concat] = ACTIONS(1513), + [sym_variable_name] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_SEMI_SEMI] = ACTIONS(1515), + [anon_sym_PIPE_AMP] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE_PIPE] = ACTIONS(1515), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1515), + [sym_word] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), }, [1463] = { - [anon_sym_RBRACK] = ACTIONS(3311), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(3353), + [sym__concat] = ACTIONS(3353), + [sym_variable_name] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(4381), + [anon_sym_GT] = ACTIONS(4381), + [anon_sym_GT_GT] = ACTIONS(3353), + [anon_sym_AMP_GT] = ACTIONS(4381), + [anon_sym_AMP_GT_GT] = ACTIONS(3353), + [anon_sym_LT_AMP] = ACTIONS(3353), + [anon_sym_GT_AMP] = ACTIONS(3353), + [sym__special_characters] = ACTIONS(4381), + [anon_sym_DQUOTE] = ACTIONS(3353), + [sym_raw_string] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(4381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3353), + [anon_sym_BQUOTE] = ACTIONS(3353), + [anon_sym_LT_LPAREN] = ACTIONS(3353), + [anon_sym_GT_LPAREN] = ACTIONS(3353), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4381), }, [1464] = { - [anon_sym_RBRACK] = ACTIONS(3313), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(3359), + [sym__concat] = ACTIONS(3359), + [sym_variable_name] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(4383), + [anon_sym_GT] = ACTIONS(4383), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_AMP_GT] = ACTIONS(4383), + [anon_sym_AMP_GT_GT] = ACTIONS(3359), + [anon_sym_LT_AMP] = ACTIONS(3359), + [anon_sym_GT_AMP] = ACTIONS(3359), + [sym__special_characters] = ACTIONS(4383), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(4383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [anon_sym_LT_LPAREN] = ACTIONS(3359), + [anon_sym_GT_LPAREN] = ACTIONS(3359), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4383), }, [1465] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), + [sym_file_descriptor] = ACTIONS(3401), + [sym__concat] = ACTIONS(3401), + [sym_variable_name] = ACTIONS(3401), + [anon_sym_LT] = ACTIONS(4385), + [anon_sym_GT] = ACTIONS(4385), + [anon_sym_GT_GT] = ACTIONS(3401), + [anon_sym_AMP_GT] = ACTIONS(4385), + [anon_sym_AMP_GT_GT] = ACTIONS(3401), + [anon_sym_LT_AMP] = ACTIONS(3401), + [anon_sym_GT_AMP] = ACTIONS(3401), + [sym__special_characters] = ACTIONS(4385), + [anon_sym_DQUOTE] = ACTIONS(3401), + [sym_raw_string] = ACTIONS(3401), + [anon_sym_DOLLAR] = ACTIONS(4385), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3401), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3401), + [anon_sym_BQUOTE] = ACTIONS(3401), + [anon_sym_LT_LPAREN] = ACTIONS(3401), + [anon_sym_GT_LPAREN] = ACTIONS(3401), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4385), }, [1466] = { - [sym_word] = ACTIONS(2205), - [sym__concat] = ACTIONS(2205), - [anon_sym_SEMI_SEMI] = ACTIONS(2207), - [anon_sym_DQUOTE] = ACTIONS(2207), - [sym_raw_string] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2207), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2207), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2207), - [anon_sym_BQUOTE] = ACTIONS(2207), - [anon_sym_LT_LPAREN] = ACTIONS(2207), - [anon_sym_GT_LPAREN] = ACTIONS(2207), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2207), - [anon_sym_SEMI] = ACTIONS(2207), - [anon_sym_LF] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2207), + [sym_file_descriptor] = ACTIONS(3405), + [sym__concat] = ACTIONS(3405), + [sym_variable_name] = ACTIONS(3405), + [anon_sym_LT] = ACTIONS(4387), + [anon_sym_GT] = ACTIONS(4387), + [anon_sym_GT_GT] = ACTIONS(3405), + [anon_sym_AMP_GT] = ACTIONS(4387), + [anon_sym_AMP_GT_GT] = ACTIONS(3405), + [anon_sym_LT_AMP] = ACTIONS(3405), + [anon_sym_GT_AMP] = ACTIONS(3405), + [sym__special_characters] = ACTIONS(4387), + [anon_sym_DQUOTE] = ACTIONS(3405), + [sym_raw_string] = ACTIONS(3405), + [anon_sym_DOLLAR] = ACTIONS(4387), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3405), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3405), + [anon_sym_BQUOTE] = ACTIONS(3405), + [anon_sym_LT_LPAREN] = ACTIONS(3405), + [anon_sym_GT_LPAREN] = ACTIONS(3405), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4387), }, [1467] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4389), + [sym_comment] = ACTIONS(48), }, [1468] = { - [sym_word] = ACTIONS(2211), - [sym__concat] = ACTIONS(2211), - [anon_sym_SEMI_SEMI] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2213), - [sym_raw_string] = ACTIONS(2213), - [anon_sym_DOLLAR] = ACTIONS(2213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2213), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2213), - [anon_sym_BQUOTE] = ACTIONS(2213), - [anon_sym_LT_LPAREN] = ACTIONS(2213), - [anon_sym_GT_LPAREN] = ACTIONS(2213), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_LF] = ACTIONS(2213), - [anon_sym_AMP] = ACTIONS(2213), + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4391), + [sym_comment] = ACTIONS(48), }, [1469] = { - [anon_sym_RBRACE] = ACTIONS(3315), - [sym_comment] = ACTIONS(46), + [anon_sym_RBRACE] = ACTIONS(4391), + [sym_comment] = ACTIONS(48), }, [1470] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), + [sym_file_descriptor] = ACTIONS(3413), + [sym__concat] = ACTIONS(3413), + [sym_variable_name] = ACTIONS(3413), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_GT_GT] = ACTIONS(3413), + [anon_sym_AMP_GT] = ACTIONS(4393), + [anon_sym_AMP_GT_GT] = ACTIONS(3413), + [anon_sym_LT_AMP] = ACTIONS(3413), + [anon_sym_GT_AMP] = ACTIONS(3413), + [sym__special_characters] = ACTIONS(4393), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR] = ACTIONS(4393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3413), + [anon_sym_BQUOTE] = ACTIONS(3413), + [anon_sym_LT_LPAREN] = ACTIONS(3413), + [anon_sym_GT_LPAREN] = ACTIONS(3413), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4393), }, [1471] = { - [sym_word] = ACTIONS(2217), - [sym__concat] = ACTIONS(2217), - [anon_sym_SEMI_SEMI] = ACTIONS(2219), - [anon_sym_DQUOTE] = ACTIONS(2219), - [sym_raw_string] = ACTIONS(2219), - [anon_sym_DOLLAR] = ACTIONS(2219), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2219), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2219), - [anon_sym_BQUOTE] = ACTIONS(2219), - [anon_sym_LT_LPAREN] = ACTIONS(2219), - [anon_sym_GT_LPAREN] = ACTIONS(2219), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2219), - [anon_sym_SEMI] = ACTIONS(2219), - [anon_sym_LF] = ACTIONS(2219), - [anon_sym_AMP] = ACTIONS(2219), + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4395), + [sym_comment] = ACTIONS(48), }, [1472] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4397), + [sym_comment] = ACTIONS(48), }, [1473] = { - [sym_word] = ACTIONS(2223), - [sym__concat] = ACTIONS(2223), - [anon_sym_SEMI_SEMI] = ACTIONS(2225), - [anon_sym_DQUOTE] = ACTIONS(2225), - [sym_raw_string] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2225), - [anon_sym_BQUOTE] = ACTIONS(2225), - [anon_sym_LT_LPAREN] = ACTIONS(2225), - [anon_sym_GT_LPAREN] = ACTIONS(2225), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2225), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_LF] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(4397), + [sym_comment] = ACTIONS(48), }, [1474] = { - [anon_sym_RBRACE] = ACTIONS(3319), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(3421), + [sym__concat] = ACTIONS(3421), + [sym_variable_name] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_GT] = ACTIONS(4399), + [anon_sym_GT_GT] = ACTIONS(3421), + [anon_sym_AMP_GT] = ACTIONS(4399), + [anon_sym_AMP_GT_GT] = ACTIONS(3421), + [anon_sym_LT_AMP] = ACTIONS(3421), + [anon_sym_GT_AMP] = ACTIONS(3421), + [sym__special_characters] = ACTIONS(4399), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_raw_string] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(4399), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3421), + [anon_sym_BQUOTE] = ACTIONS(3421), + [anon_sym_LT_LPAREN] = ACTIONS(3421), + [anon_sym_GT_LPAREN] = ACTIONS(3421), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4399), }, [1475] = { - [sym_file_descriptor] = ACTIONS(546), - [sym_word] = ACTIONS(546), - [sym_variable_name] = ACTIONS(546), - [anon_sym_for] = ACTIONS(548), - [anon_sym_while] = ACTIONS(548), - [anon_sym_if] = ACTIONS(548), - [anon_sym_case] = ACTIONS(548), - [anon_sym_SEMI_SEMI] = ACTIONS(546), - [anon_sym_function] = ACTIONS(548), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_declare] = ACTIONS(548), - [anon_sym_typeset] = ACTIONS(548), - [anon_sym_export] = ACTIONS(548), - [anon_sym_readonly] = ACTIONS(548), - [anon_sym_local] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_GT] = ACTIONS(548), - [anon_sym_GT_GT] = ACTIONS(546), - [anon_sym_AMP_GT] = ACTIONS(548), - [anon_sym_AMP_GT_GT] = ACTIONS(546), - [anon_sym_LT_AMP] = ACTIONS(546), - [anon_sym_GT_AMP] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(546), - [sym_raw_string] = ACTIONS(546), - [anon_sym_DOLLAR] = ACTIONS(548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(546), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(546), - [anon_sym_BQUOTE] = ACTIONS(546), - [anon_sym_LT_LPAREN] = ACTIONS(546), - [anon_sym_GT_LPAREN] = ACTIONS(546), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(550), + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4401), + [sym_comment] = ACTIONS(48), }, [1476] = { - [sym_word] = ACTIONS(3323), - [anon_sym_esac] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(3323), - [sym_raw_string] = ACTIONS(3323), - [anon_sym_DOLLAR] = ACTIONS(3325), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3323), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3323), - [anon_sym_BQUOTE] = ACTIONS(3323), - [anon_sym_LT_LPAREN] = ACTIONS(3323), - [anon_sym_GT_LPAREN] = ACTIONS(3323), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3327), + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4403), + [sym_comment] = ACTIONS(48), }, [1477] = { - [sym__terminated_statement] = STATE(1270), - [sym_for_statement] = STATE(1271), - [sym_while_statement] = STATE(1271), - [sym_if_statement] = STATE(1271), - [sym_case_statement] = STATE(1271), - [sym_function_definition] = STATE(1271), - [sym_subshell] = STATE(1271), - [sym_pipeline] = STATE(1271), - [sym_list] = STATE(1271), - [sym_command] = STATE(1271), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(1272), - [sym_declaration_command] = STATE(1271), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(1477), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(590), - [sym_word] = ACTIONS(593), - [sym_variable_name] = ACTIONS(596), - [anon_sym_for] = ACTIONS(601), - [anon_sym_while] = ACTIONS(604), - [anon_sym_if] = ACTIONS(607), - [anon_sym_case] = ACTIONS(610), - [anon_sym_SEMI_SEMI] = ACTIONS(599), - [anon_sym_function] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_declare] = ACTIONS(619), - [anon_sym_typeset] = ACTIONS(619), - [anon_sym_export] = ACTIONS(619), - [anon_sym_readonly] = ACTIONS(619), - [anon_sym_local] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(622), - [anon_sym_GT] = ACTIONS(622), - [anon_sym_GT_GT] = ACTIONS(625), - [anon_sym_AMP_GT] = ACTIONS(622), - [anon_sym_AMP_GT_GT] = ACTIONS(625), - [anon_sym_LT_AMP] = ACTIONS(625), - [anon_sym_GT_AMP] = ACTIONS(625), - [anon_sym_DQUOTE] = ACTIONS(628), - [sym_raw_string] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(631), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(634), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(637), - [anon_sym_BQUOTE] = ACTIONS(640), - [anon_sym_LT_LPAREN] = ACTIONS(643), - [anon_sym_GT_LPAREN] = ACTIONS(643), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(646), + [anon_sym_RBRACE] = ACTIONS(4403), + [sym_comment] = ACTIONS(48), }, [1478] = { - [sym__terminated_statement] = STATE(1270), - [sym_for_statement] = STATE(1271), - [sym_while_statement] = STATE(1271), - [sym_if_statement] = STATE(1271), - [sym_case_statement] = STATE(1271), - [sym_function_definition] = STATE(1271), - [sym_subshell] = STATE(1271), - [sym_pipeline] = STATE(1271), - [sym_list] = STATE(1271), - [sym_command] = STATE(1271), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(1272), - [sym_declaration_command] = STATE(1271), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(1477), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(3329), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), + [sym_file_descriptor] = ACTIONS(3429), + [sym__concat] = ACTIONS(3429), + [sym_variable_name] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(4405), + [anon_sym_GT] = ACTIONS(4405), + [anon_sym_GT_GT] = ACTIONS(3429), + [anon_sym_AMP_GT] = ACTIONS(4405), + [anon_sym_AMP_GT_GT] = ACTIONS(3429), + [anon_sym_LT_AMP] = ACTIONS(3429), + [anon_sym_GT_AMP] = ACTIONS(3429), + [sym__special_characters] = ACTIONS(4405), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym_raw_string] = ACTIONS(3429), + [anon_sym_DOLLAR] = ACTIONS(4405), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3429), + [anon_sym_BQUOTE] = ACTIONS(3429), + [anon_sym_LT_LPAREN] = ACTIONS(3429), + [anon_sym_GT_LPAREN] = ACTIONS(3429), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4405), }, [1479] = { - [sym_word] = ACTIONS(3331), - [anon_sym_esac] = ACTIONS(3333), - [anon_sym_DQUOTE] = ACTIONS(3331), - [sym_raw_string] = ACTIONS(3331), - [anon_sym_DOLLAR] = ACTIONS(3333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3331), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3331), - [anon_sym_BQUOTE] = ACTIONS(3331), - [anon_sym_LT_LPAREN] = ACTIONS(3331), - [anon_sym_GT_LPAREN] = ACTIONS(3331), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3335), + [sym_file_descriptor] = ACTIONS(3433), + [sym__concat] = ACTIONS(3433), + [sym_variable_name] = ACTIONS(3433), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_GT_GT] = ACTIONS(3433), + [anon_sym_AMP_GT] = ACTIONS(4407), + [anon_sym_AMP_GT_GT] = ACTIONS(3433), + [anon_sym_LT_AMP] = ACTIONS(3433), + [anon_sym_GT_AMP] = ACTIONS(3433), + [sym__special_characters] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(3433), + [sym_raw_string] = ACTIONS(3433), + [anon_sym_DOLLAR] = ACTIONS(4407), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3433), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3433), + [anon_sym_BQUOTE] = ACTIONS(3433), + [anon_sym_LT_LPAREN] = ACTIONS(3433), + [anon_sym_GT_LPAREN] = ACTIONS(3433), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4407), }, [1480] = { - [sym__terminated_statement] = STATE(1270), - [sym_for_statement] = STATE(1271), - [sym_while_statement] = STATE(1271), - [sym_if_statement] = STATE(1271), - [sym_case_statement] = STATE(1271), - [sym_function_definition] = STATE(1271), - [sym_subshell] = STATE(1271), - [sym_pipeline] = STATE(1271), - [sym_list] = STATE(1271), - [sym_command] = STATE(1271), - [sym_command_name] = STATE(23), - [sym_variable_assignment] = STATE(1272), - [sym_declaration_command] = STATE(1271), - [sym_subscript] = STATE(25), - [sym_file_redirect] = STATE(26), - [sym_concatenation] = STATE(27), - [sym_string] = STATE(3), - [sym_simple_expansion] = STATE(3), - [sym_expansion] = STATE(3), - [sym_command_substitution] = STATE(3), - [sym_process_substitution] = STATE(3), - [aux_sym_program_repeat1] = STATE(1477), - [aux_sym_command_repeat1] = STATE(29), - [sym_file_descriptor] = ACTIONS(8), - [sym_word] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(3337), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_declare] = ACTIONS(28), - [anon_sym_typeset] = ACTIONS(28), - [anon_sym_export] = ACTIONS(28), - [anon_sym_readonly] = ACTIONS(28), - [anon_sym_local] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(30), - [anon_sym_GT] = ACTIONS(30), - [anon_sym_GT_GT] = ACTIONS(32), - [anon_sym_AMP_GT] = ACTIONS(30), - [anon_sym_AMP_GT_GT] = ACTIONS(32), - [anon_sym_LT_AMP] = ACTIONS(32), - [anon_sym_GT_AMP] = ACTIONS(32), - [anon_sym_DQUOTE] = ACTIONS(34), - [sym_raw_string] = ACTIONS(10), - [anon_sym_DOLLAR] = ACTIONS(36), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(38), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(40), - [anon_sym_BQUOTE] = ACTIONS(42), - [anon_sym_LT_LPAREN] = ACTIONS(44), - [anon_sym_GT_LPAREN] = ACTIONS(44), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(48), + [sym__concat] = ACTIONS(3353), + [anon_sym_DQUOTE] = ACTIONS(3355), + [sym__string_content] = ACTIONS(4381), + [anon_sym_DOLLAR] = ACTIONS(3355), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3355), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3355), + [anon_sym_BQUOTE] = ACTIONS(3355), + [sym_comment] = ACTIONS(110), }, [1481] = { - [sym__concat] = ACTIONS(3116), - [anon_sym_in] = ACTIONS(3118), - [anon_sym_SEMI_SEMI] = ACTIONS(3118), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_LF] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3118), + [sym__concat] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3361), + [sym__string_content] = ACTIONS(4383), + [anon_sym_DOLLAR] = ACTIONS(3361), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3361), + [anon_sym_BQUOTE] = ACTIONS(3361), + [sym_comment] = ACTIONS(110), }, [1482] = { - [sym__concat] = ACTIONS(3120), - [anon_sym_in] = ACTIONS(3122), - [anon_sym_SEMI_SEMI] = ACTIONS(3122), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_LF] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3122), + [sym__concat] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3403), + [sym__string_content] = ACTIONS(4385), + [anon_sym_DOLLAR] = ACTIONS(3403), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3403), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3403), + [anon_sym_BQUOTE] = ACTIONS(3403), + [sym_comment] = ACTIONS(110), }, [1483] = { - [sym__concat] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(1534), - [anon_sym_RPAREN] = ACTIONS(1534), - [anon_sym_SEMI_SEMI] = ACTIONS(1534), - [anon_sym_PIPE_AMP] = ACTIONS(1534), - [anon_sym_AMP_AMP] = ACTIONS(1534), - [anon_sym_PIPE_PIPE] = ACTIONS(1534), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_LF] = ACTIONS(1534), - [anon_sym_AMP] = ACTIONS(1534), + [sym__concat] = ACTIONS(3405), + [anon_sym_DQUOTE] = ACTIONS(3407), + [sym__string_content] = ACTIONS(4387), + [anon_sym_DOLLAR] = ACTIONS(3407), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3407), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3407), + [anon_sym_BQUOTE] = ACTIONS(3407), + [sym_comment] = ACTIONS(110), }, [1484] = { - [anon_sym_AT] = ACTIONS(3339), - [sym_comment] = ACTIONS(46), + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4409), + [sym_comment] = ACTIONS(48), }, [1485] = { - [sym__concat] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_RPAREN] = ACTIONS(1540), - [anon_sym_SEMI_SEMI] = ACTIONS(1540), - [anon_sym_PIPE_AMP] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1540), - [anon_sym_PIPE_PIPE] = ACTIONS(1540), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1540), - [anon_sym_LF] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1540), + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4411), + [sym_comment] = ACTIONS(48), }, [1486] = { - [anon_sym_AT] = ACTIONS(3341), - [sym_comment] = ACTIONS(46), + [anon_sym_RBRACE] = ACTIONS(4411), + [sym_comment] = ACTIONS(48), }, [1487] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(3343), - [anon_sym_RBRACE] = ACTIONS(3345), - [sym_comment] = ACTIONS(46), + [sym__concat] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(3415), + [sym__string_content] = ACTIONS(4393), + [anon_sym_DOLLAR] = ACTIONS(3415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3415), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3415), + [anon_sym_BQUOTE] = ACTIONS(3415), + [sym_comment] = ACTIONS(110), }, [1488] = { - [sym__concat] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_SEMI_SEMI] = ACTIONS(1550), - [anon_sym_PIPE_AMP] = ACTIONS(1550), - [anon_sym_AMP_AMP] = ACTIONS(1550), - [anon_sym_PIPE_PIPE] = ACTIONS(1550), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_LF] = ACTIONS(1550), - [anon_sym_AMP] = ACTIONS(1550), + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4413), + [sym_comment] = ACTIONS(48), }, [1489] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(3347), - [anon_sym_RBRACE] = ACTIONS(3349), - [sym_comment] = ACTIONS(46), + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4415), + [sym_comment] = ACTIONS(48), }, [1490] = { - [sym__concat] = ACTIONS(3351), - [anon_sym_RBRACE] = ACTIONS(3345), - [sym_comment] = ACTIONS(46), + [anon_sym_RBRACE] = ACTIONS(4415), + [sym_comment] = ACTIONS(48), }, [1491] = { - [anon_sym_RBRACK] = ACTIONS(3351), - [sym_comment] = ACTIONS(46), + [sym__concat] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym__string_content] = ACTIONS(4399), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3423), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3423), + [anon_sym_BQUOTE] = ACTIONS(3423), + [sym_comment] = ACTIONS(110), }, [1492] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(3353), - [anon_sym_RBRACE] = ACTIONS(3355), - [sym_comment] = ACTIONS(46), + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4417), + [sym_comment] = ACTIONS(48), }, [1493] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3359), - [sym_comment] = ACTIONS(46), + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4419), + [sym_comment] = ACTIONS(48), }, [1494] = { - [sym__concat] = ACTIONS(3361), - [anon_sym_RBRACE] = ACTIONS(3355), - [sym_comment] = ACTIONS(46), + [anon_sym_RBRACE] = ACTIONS(4419), + [sym_comment] = ACTIONS(48), }, [1495] = { - [anon_sym_RBRACK] = ACTIONS(3361), - [sym_comment] = ACTIONS(46), + [sym__concat] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym__string_content] = ACTIONS(4405), + [anon_sym_DOLLAR] = ACTIONS(3431), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3431), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3431), + [anon_sym_BQUOTE] = ACTIONS(3431), + [sym_comment] = ACTIONS(110), }, [1496] = { - [aux_sym_concatenation_repeat1] = STATE(1496), - [sym__concat] = ACTIONS(3051), - [anon_sym_PIPE] = ACTIONS(677), - [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_SEMI_SEMI] = ACTIONS(677), - [anon_sym_PIPE_AMP] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LF] = ACTIONS(677), - [anon_sym_AMP] = ACTIONS(677), + [sym__concat] = ACTIONS(3433), + [anon_sym_DQUOTE] = ACTIONS(3435), + [sym__string_content] = ACTIONS(4407), + [anon_sym_DOLLAR] = ACTIONS(3435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3435), + [anon_sym_BQUOTE] = ACTIONS(3435), + [sym_comment] = ACTIONS(110), }, [1497] = { - [anon_sym_RBRACK] = ACTIONS(3363), - [sym_comment] = ACTIONS(46), + [sym__concat] = ACTIONS(1157), + [anon_sym_RBRACE] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), }, [1498] = { - [anon_sym_RBRACK] = ACTIONS(3365), - [sym_comment] = ACTIONS(46), + [aux_sym_concatenation_repeat1] = STATE(1498), + [sym__concat] = ACTIONS(4421), + [anon_sym_RBRACE] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), }, [1499] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), + [sym__concat] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1196), + [sym_comment] = ACTIONS(48), }, [1500] = { - [sym_word] = ACTIONS(2205), - [sym__concat] = ACTIONS(2205), - [sym_variable_name] = ACTIONS(2205), - [anon_sym_PIPE] = ACTIONS(2207), - [anon_sym_RPAREN] = ACTIONS(2207), - [anon_sym_SEMI_SEMI] = ACTIONS(2207), - [anon_sym_PIPE_AMP] = ACTIONS(2207), - [anon_sym_AMP_AMP] = ACTIONS(2207), - [anon_sym_PIPE_PIPE] = ACTIONS(2207), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2207), - [anon_sym_SEMI] = ACTIONS(2207), - [anon_sym_LF] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2207), + [sym_concatenation] = STATE(1939), + [sym_string] = STATE(1938), + [sym_simple_expansion] = STATE(1938), + [sym_expansion] = STATE(1938), + [sym_command_substitution] = STATE(1938), + [sym_process_substitution] = STATE(1938), + [anon_sym_RBRACE] = ACTIONS(4424), + [sym__special_characters] = ACTIONS(4426), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4428), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4430), }, [1501] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3369), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), + [sym__concat] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1241), + [sym_comment] = ACTIONS(48), }, [1502] = { - [sym_word] = ACTIONS(2211), - [sym__concat] = ACTIONS(2211), - [sym_variable_name] = ACTIONS(2211), - [anon_sym_PIPE] = ACTIONS(2213), - [anon_sym_RPAREN] = ACTIONS(2213), - [anon_sym_SEMI_SEMI] = ACTIONS(2213), - [anon_sym_PIPE_AMP] = ACTIONS(2213), - [anon_sym_AMP_AMP] = ACTIONS(2213), - [anon_sym_PIPE_PIPE] = ACTIONS(2213), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_LF] = ACTIONS(2213), - [anon_sym_AMP] = ACTIONS(2213), + [sym_concatenation] = STATE(1943), + [sym_string] = STATE(1942), + [sym_simple_expansion] = STATE(1942), + [sym_expansion] = STATE(1942), + [sym_command_substitution] = STATE(1942), + [sym_process_substitution] = STATE(1942), + [anon_sym_RBRACE] = ACTIONS(4432), + [sym__special_characters] = ACTIONS(4434), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4436), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4438), }, [1503] = { - [anon_sym_RBRACE] = ACTIONS(3367), - [sym_comment] = ACTIONS(46), + [anon_sym_EQ] = ACTIONS(4440), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), }, [1504] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(4446), + [anon_sym_COLON_QMARK] = ACTIONS(4444), + [anon_sym_COLON_DASH] = ACTIONS(4444), + [anon_sym_PERCENT] = ACTIONS(4444), + [anon_sym_SLASH] = ACTIONS(4444), + [anon_sym_DASH] = ACTIONS(4444), + [sym_comment] = ACTIONS(48), }, [1505] = { - [sym_word] = ACTIONS(2217), - [sym__concat] = ACTIONS(2217), - [sym_variable_name] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_RPAREN] = ACTIONS(2219), - [anon_sym_SEMI_SEMI] = ACTIONS(2219), - [anon_sym_PIPE_AMP] = ACTIONS(2219), - [anon_sym_AMP_AMP] = ACTIONS(2219), - [anon_sym_PIPE_PIPE] = ACTIONS(2219), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2219), - [anon_sym_SEMI] = ACTIONS(2219), - [anon_sym_LF] = ACTIONS(2219), - [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(4448), + [anon_sym_EQ] = ACTIONS(4450), + [anon_sym_COLON] = ACTIONS(4452), + [anon_sym_COLON_QMARK] = ACTIONS(4450), + [anon_sym_COLON_DASH] = ACTIONS(4450), + [anon_sym_PERCENT] = ACTIONS(4450), + [anon_sym_SLASH] = ACTIONS(4450), + [anon_sym_DASH] = ACTIONS(4450), + [sym_comment] = ACTIONS(48), }, [1506] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), + [anon_sym_RBRACE] = ACTIONS(4424), + [anon_sym_EQ] = ACTIONS(4440), + [anon_sym_COLON] = ACTIONS(4454), + [anon_sym_COLON_QMARK] = ACTIONS(4440), + [anon_sym_COLON_DASH] = ACTIONS(4440), + [anon_sym_PERCENT] = ACTIONS(4440), + [anon_sym_SLASH] = ACTIONS(4440), + [anon_sym_DASH] = ACTIONS(4440), + [sym_comment] = ACTIONS(48), }, [1507] = { - [sym_word] = ACTIONS(2223), - [sym__concat] = ACTIONS(2223), - [sym_variable_name] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2225), - [anon_sym_RPAREN] = ACTIONS(2225), - [anon_sym_SEMI_SEMI] = ACTIONS(2225), - [anon_sym_PIPE_AMP] = ACTIONS(2225), - [anon_sym_AMP_AMP] = ACTIONS(2225), - [anon_sym_PIPE_PIPE] = ACTIONS(2225), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2225), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_LF] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2225), + [sym__concat] = ACTIONS(1269), + [anon_sym_RBRACE] = ACTIONS(1269), + [sym_comment] = ACTIONS(48), }, [1508] = { - [anon_sym_RBRACE] = ACTIONS(3371), - [sym_comment] = ACTIONS(46), + [sym_concatenation] = STATE(1952), + [sym_string] = STATE(1951), + [sym_simple_expansion] = STATE(1951), + [sym_expansion] = STATE(1951), + [sym_command_substitution] = STATE(1951), + [sym_process_substitution] = STATE(1951), + [anon_sym_RBRACE] = ACTIONS(4456), + [sym__special_characters] = ACTIONS(4458), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4460), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4462), }, [1509] = { - [sym_file_descriptor] = ACTIONS(3116), - [sym_word] = ACTIONS(3116), - [sym__concat] = ACTIONS(3116), - [sym_variable_name] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_GT] = ACTIONS(3375), - [anon_sym_GT_GT] = ACTIONS(3116), - [anon_sym_AMP_GT] = ACTIONS(3375), - [anon_sym_AMP_GT_GT] = ACTIONS(3116), - [anon_sym_LT_AMP] = ACTIONS(3116), - [anon_sym_GT_AMP] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3116), - [sym_raw_string] = ACTIONS(3116), - [anon_sym_DOLLAR] = ACTIONS(3375), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3116), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3116), - [anon_sym_BQUOTE] = ACTIONS(3116), - [anon_sym_LT_LPAREN] = ACTIONS(3116), - [anon_sym_GT_LPAREN] = ACTIONS(3116), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3375), + [sym__concat] = ACTIONS(1281), + [anon_sym_RBRACE] = ACTIONS(1281), + [sym_comment] = ACTIONS(48), }, [1510] = { - [sym_file_descriptor] = ACTIONS(3120), - [sym_word] = ACTIONS(3120), - [sym__concat] = ACTIONS(3120), - [sym_variable_name] = ACTIONS(3120), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_GT] = ACTIONS(3377), - [anon_sym_GT_GT] = ACTIONS(3120), - [anon_sym_AMP_GT] = ACTIONS(3377), - [anon_sym_AMP_GT_GT] = ACTIONS(3120), - [anon_sym_LT_AMP] = ACTIONS(3120), - [anon_sym_GT_AMP] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(3120), - [sym_raw_string] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3377), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), - [anon_sym_BQUOTE] = ACTIONS(3120), - [anon_sym_LT_LPAREN] = ACTIONS(3120), - [anon_sym_GT_LPAREN] = ACTIONS(3120), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3377), + [sym__concat] = ACTIONS(1379), + [anon_sym_RBRACE] = ACTIONS(1379), + [sym_comment] = ACTIONS(48), }, [1511] = { - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym__string_content] = ACTIONS(3118), - [anon_sym_DOLLAR] = ACTIONS(3118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3118), - [anon_sym_BQUOTE] = ACTIONS(3118), - [sym_comment] = ACTIONS(60), + [sym__concat] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1513), + [sym_comment] = ACTIONS(48), }, [1512] = { - [anon_sym_DQUOTE] = ACTIONS(3122), - [sym__string_content] = ACTIONS(3122), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3122), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3122), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(60), + [sym__concat] = ACTIONS(2840), + [anon_sym_RBRACE] = ACTIONS(2842), + [anon_sym_EQ] = ACTIONS(2842), + [anon_sym_COLON] = ACTIONS(2844), + [anon_sym_COLON_QMARK] = ACTIONS(2842), + [anon_sym_COLON_DASH] = ACTIONS(2842), + [anon_sym_PERCENT] = ACTIONS(2842), + [anon_sym_SLASH] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2842), + [sym_comment] = ACTIONS(48), }, [1513] = { - [anon_sym_RBRACK] = ACTIONS(3379), - [sym_comment] = ACTIONS(46), + [sym__concat] = ACTIONS(2849), + [anon_sym_RBRACE] = ACTIONS(2851), + [anon_sym_EQ] = ACTIONS(2851), + [anon_sym_COLON] = ACTIONS(2853), + [anon_sym_COLON_QMARK] = ACTIONS(2851), + [anon_sym_COLON_DASH] = ACTIONS(2851), + [anon_sym_PERCENT] = ACTIONS(2851), + [anon_sym_SLASH] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2851), + [sym_comment] = ACTIONS(48), }, [1514] = { - [anon_sym_RBRACK] = ACTIONS(3381), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(4464), + [sym__concat] = ACTIONS(4464), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_SEMI_SEMI] = ACTIONS(4466), + [anon_sym_PIPE_AMP] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_PIPE_PIPE] = ACTIONS(4466), + [anon_sym_LT] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4466), + [anon_sym_GT_GT] = ACTIONS(4466), + [anon_sym_AMP_GT] = ACTIONS(4466), + [anon_sym_AMP_GT_GT] = ACTIONS(4466), + [anon_sym_LT_AMP] = ACTIONS(4466), + [anon_sym_GT_AMP] = ACTIONS(4466), + [anon_sym_LT_LT] = ACTIONS(4466), + [anon_sym_LT_LT_DASH] = ACTIONS(4466), + [anon_sym_LT_LT_LT] = ACTIONS(4466), + [sym__special_characters] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4466), + [sym_raw_string] = ACTIONS(4466), + [anon_sym_DOLLAR] = ACTIONS(4466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4466), + [anon_sym_BQUOTE] = ACTIONS(4466), + [anon_sym_LT_LPAREN] = ACTIONS(4466), + [anon_sym_GT_LPAREN] = ACTIONS(4466), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4466), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym_LF] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4466), }, [1515] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), + [sym_file_descriptor] = ACTIONS(4468), + [sym__concat] = ACTIONS(4468), + [anon_sym_PIPE] = ACTIONS(4470), + [anon_sym_SEMI_SEMI] = ACTIONS(4470), + [anon_sym_PIPE_AMP] = ACTIONS(4470), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE_PIPE] = ACTIONS(4470), + [anon_sym_LT] = ACTIONS(4470), + [anon_sym_GT] = ACTIONS(4470), + [anon_sym_GT_GT] = ACTIONS(4470), + [anon_sym_AMP_GT] = ACTIONS(4470), + [anon_sym_AMP_GT_GT] = ACTIONS(4470), + [anon_sym_LT_AMP] = ACTIONS(4470), + [anon_sym_GT_AMP] = ACTIONS(4470), + [anon_sym_LT_LT] = ACTIONS(4470), + [anon_sym_LT_LT_DASH] = ACTIONS(4470), + [anon_sym_LT_LT_LT] = ACTIONS(4470), + [sym__special_characters] = ACTIONS(4470), + [anon_sym_DQUOTE] = ACTIONS(4470), + [sym_raw_string] = ACTIONS(4470), + [anon_sym_DOLLAR] = ACTIONS(4470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4470), + [anon_sym_BQUOTE] = ACTIONS(4470), + [anon_sym_LT_LPAREN] = ACTIONS(4470), + [anon_sym_GT_LPAREN] = ACTIONS(4470), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4470), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_LF] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4470), }, [1516] = { - [sym_file_descriptor] = ACTIONS(2205), - [sym_word] = ACTIONS(2205), - [sym__concat] = ACTIONS(2205), - [sym_variable_name] = ACTIONS(2205), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_RPAREN] = ACTIONS(2205), - [anon_sym_PIPE_AMP] = ACTIONS(2205), - [anon_sym_AMP_AMP] = ACTIONS(2205), - [anon_sym_PIPE_PIPE] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2696), - [anon_sym_GT] = ACTIONS(2696), - [anon_sym_GT_GT] = ACTIONS(2205), - [anon_sym_AMP_GT] = ACTIONS(2696), - [anon_sym_AMP_GT_GT] = ACTIONS(2205), - [anon_sym_LT_AMP] = ACTIONS(2205), - [anon_sym_GT_AMP] = ACTIONS(2205), - [anon_sym_DQUOTE] = ACTIONS(2205), - [sym_raw_string] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2696), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2205), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2205), - [anon_sym_BQUOTE] = ACTIONS(2205), - [anon_sym_LT_LPAREN] = ACTIONS(2205), - [anon_sym_GT_LPAREN] = ACTIONS(2205), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2696), + [sym_file_descriptor] = ACTIONS(4472), + [sym__concat] = ACTIONS(4472), + [anon_sym_PIPE] = ACTIONS(4474), + [anon_sym_SEMI_SEMI] = ACTIONS(4474), + [anon_sym_PIPE_AMP] = ACTIONS(4474), + [anon_sym_AMP_AMP] = ACTIONS(4474), + [anon_sym_PIPE_PIPE] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4474), + [anon_sym_GT] = ACTIONS(4474), + [anon_sym_GT_GT] = ACTIONS(4474), + [anon_sym_AMP_GT] = ACTIONS(4474), + [anon_sym_AMP_GT_GT] = ACTIONS(4474), + [anon_sym_LT_AMP] = ACTIONS(4474), + [anon_sym_GT_AMP] = ACTIONS(4474), + [anon_sym_LT_LT] = ACTIONS(4474), + [anon_sym_LT_LT_DASH] = ACTIONS(4474), + [anon_sym_LT_LT_LT] = ACTIONS(4474), + [sym__special_characters] = ACTIONS(4474), + [anon_sym_DQUOTE] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(4474), + [anon_sym_DOLLAR] = ACTIONS(4474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4474), + [anon_sym_BQUOTE] = ACTIONS(4474), + [anon_sym_LT_LPAREN] = ACTIONS(4474), + [anon_sym_GT_LPAREN] = ACTIONS(4474), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4474), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym_LF] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4474), }, [1517] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3385), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), + [sym_file_descriptor] = ACTIONS(4476), + [sym__concat] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(4478), + [anon_sym_SEMI_SEMI] = ACTIONS(4478), + [anon_sym_PIPE_AMP] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4478), + [anon_sym_GT] = ACTIONS(4478), + [anon_sym_GT_GT] = ACTIONS(4478), + [anon_sym_AMP_GT] = ACTIONS(4478), + [anon_sym_AMP_GT_GT] = ACTIONS(4478), + [anon_sym_LT_AMP] = ACTIONS(4478), + [anon_sym_GT_AMP] = ACTIONS(4478), + [anon_sym_LT_LT] = ACTIONS(4478), + [anon_sym_LT_LT_DASH] = ACTIONS(4478), + [anon_sym_LT_LT_LT] = ACTIONS(4478), + [sym__special_characters] = ACTIONS(4478), + [anon_sym_DQUOTE] = ACTIONS(4478), + [sym_raw_string] = ACTIONS(4478), + [anon_sym_DOLLAR] = ACTIONS(4478), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), + [anon_sym_BQUOTE] = ACTIONS(4478), + [anon_sym_LT_LPAREN] = ACTIONS(4478), + [anon_sym_GT_LPAREN] = ACTIONS(4478), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4478), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_LF] = ACTIONS(4478), + [anon_sym_AMP] = ACTIONS(4478), }, [1518] = { - [sym_file_descriptor] = ACTIONS(2211), - [sym_word] = ACTIONS(2211), - [sym__concat] = ACTIONS(2211), - [sym_variable_name] = ACTIONS(2211), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_RPAREN] = ACTIONS(2211), - [anon_sym_PIPE_AMP] = ACTIONS(2211), - [anon_sym_AMP_AMP] = ACTIONS(2211), - [anon_sym_PIPE_PIPE] = ACTIONS(2211), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2211), - [anon_sym_AMP_GT] = ACTIONS(2700), - [anon_sym_AMP_GT_GT] = ACTIONS(2211), - [anon_sym_LT_AMP] = ACTIONS(2211), - [anon_sym_GT_AMP] = ACTIONS(2211), - [anon_sym_DQUOTE] = ACTIONS(2211), - [sym_raw_string] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2700), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2211), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2211), - [anon_sym_BQUOTE] = ACTIONS(2211), - [anon_sym_LT_LPAREN] = ACTIONS(2211), - [anon_sym_GT_LPAREN] = ACTIONS(2211), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2700), + [sym_file_descriptor] = ACTIONS(4480), + [sym__concat] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(4482), + [anon_sym_SEMI_SEMI] = ACTIONS(4482), + [anon_sym_PIPE_AMP] = ACTIONS(4482), + [anon_sym_AMP_AMP] = ACTIONS(4482), + [anon_sym_PIPE_PIPE] = ACTIONS(4482), + [anon_sym_LT] = ACTIONS(4482), + [anon_sym_GT] = ACTIONS(4482), + [anon_sym_GT_GT] = ACTIONS(4482), + [anon_sym_AMP_GT] = ACTIONS(4482), + [anon_sym_AMP_GT_GT] = ACTIONS(4482), + [anon_sym_LT_AMP] = ACTIONS(4482), + [anon_sym_GT_AMP] = ACTIONS(4482), + [anon_sym_LT_LT] = ACTIONS(4482), + [anon_sym_LT_LT_DASH] = ACTIONS(4482), + [anon_sym_LT_LT_LT] = ACTIONS(4482), + [sym__special_characters] = ACTIONS(4482), + [anon_sym_DQUOTE] = ACTIONS(4482), + [sym_raw_string] = ACTIONS(4482), + [anon_sym_DOLLAR] = ACTIONS(4482), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4482), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4482), + [anon_sym_GT_LPAREN] = ACTIONS(4482), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4482), + [anon_sym_LF] = ACTIONS(4482), + [anon_sym_AMP] = ACTIONS(4482), }, [1519] = { - [anon_sym_RBRACE] = ACTIONS(3383), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(4484), + [sym__concat] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(4486), + [anon_sym_SEMI_SEMI] = ACTIONS(4486), + [anon_sym_PIPE_AMP] = ACTIONS(4486), + [anon_sym_AMP_AMP] = ACTIONS(4486), + [anon_sym_PIPE_PIPE] = ACTIONS(4486), + [anon_sym_LT] = ACTIONS(4486), + [anon_sym_GT] = ACTIONS(4486), + [anon_sym_GT_GT] = ACTIONS(4486), + [anon_sym_AMP_GT] = ACTIONS(4486), + [anon_sym_AMP_GT_GT] = ACTIONS(4486), + [anon_sym_LT_AMP] = ACTIONS(4486), + [anon_sym_GT_AMP] = ACTIONS(4486), + [anon_sym_LT_LT] = ACTIONS(4486), + [anon_sym_LT_LT_DASH] = ACTIONS(4486), + [anon_sym_LT_LT_LT] = ACTIONS(4486), + [sym__special_characters] = ACTIONS(4486), + [anon_sym_DQUOTE] = ACTIONS(4486), + [sym_raw_string] = ACTIONS(4486), + [anon_sym_DOLLAR] = ACTIONS(4486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4486), + [anon_sym_BQUOTE] = ACTIONS(4486), + [anon_sym_LT_LPAREN] = ACTIONS(4486), + [anon_sym_GT_LPAREN] = ACTIONS(4486), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4486), + [anon_sym_SEMI] = ACTIONS(4486), + [anon_sym_LF] = ACTIONS(4486), + [anon_sym_AMP] = ACTIONS(4486), }, [1520] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), + [sym_file_descriptor] = ACTIONS(2766), + [sym_variable_name] = ACTIONS(2766), + [anon_sym_PIPE] = ACTIONS(4488), + [anon_sym_RPAREN] = ACTIONS(2766), + [anon_sym_PIPE_AMP] = ACTIONS(2766), + [anon_sym_AMP_AMP] = ACTIONS(2766), + [anon_sym_PIPE_PIPE] = ACTIONS(4488), + [anon_sym_LT] = ACTIONS(4488), + [anon_sym_GT] = ACTIONS(4488), + [anon_sym_GT_GT] = ACTIONS(2766), + [anon_sym_AMP_GT] = ACTIONS(4488), + [anon_sym_AMP_GT_GT] = ACTIONS(2766), + [anon_sym_LT_AMP] = ACTIONS(2766), + [anon_sym_GT_AMP] = ACTIONS(2766), + [sym__special_characters] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(2766), + [sym_raw_string] = ACTIONS(2766), + [anon_sym_DOLLAR] = ACTIONS(4488), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2766), + [anon_sym_BQUOTE] = ACTIONS(2766), + [anon_sym_LT_LPAREN] = ACTIONS(2766), + [anon_sym_GT_LPAREN] = ACTIONS(2766), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2768), }, [1521] = { - [sym_file_descriptor] = ACTIONS(2217), - [sym_word] = ACTIONS(2217), - [sym__concat] = ACTIONS(2217), - [sym_variable_name] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_RPAREN] = ACTIONS(2217), - [anon_sym_PIPE_AMP] = ACTIONS(2217), - [anon_sym_AMP_AMP] = ACTIONS(2217), - [anon_sym_PIPE_PIPE] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2217), - [anon_sym_AMP_GT] = ACTIONS(2704), - [anon_sym_AMP_GT_GT] = ACTIONS(2217), - [anon_sym_LT_AMP] = ACTIONS(2217), - [anon_sym_GT_AMP] = ACTIONS(2217), - [anon_sym_DQUOTE] = ACTIONS(2217), - [sym_raw_string] = ACTIONS(2217), - [anon_sym_DOLLAR] = ACTIONS(2704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2217), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2217), - [anon_sym_BQUOTE] = ACTIONS(2217), - [anon_sym_LT_LPAREN] = ACTIONS(2217), - [anon_sym_GT_LPAREN] = ACTIONS(2217), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2704), + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(1157), + [sym_variable_name] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(1157), + [anon_sym_PIPE_AMP] = ACTIONS(1157), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_GT_GT] = ACTIONS(1157), + [anon_sym_AMP_GT] = ACTIONS(2079), + [anon_sym_AMP_GT_GT] = ACTIONS(1157), + [anon_sym_LT_AMP] = ACTIONS(1157), + [anon_sym_GT_AMP] = ACTIONS(1157), + [sym__special_characters] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_raw_string] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(2079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1157), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(1157), + [anon_sym_LT_LPAREN] = ACTIONS(1157), + [anon_sym_GT_LPAREN] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1159), }, [1522] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), + [aux_sym_concatenation_repeat1] = STATE(1522), + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(4490), + [sym_variable_name] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(1157), + [anon_sym_PIPE_AMP] = ACTIONS(1157), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_GT_GT] = ACTIONS(1157), + [anon_sym_AMP_GT] = ACTIONS(2079), + [anon_sym_AMP_GT_GT] = ACTIONS(1157), + [anon_sym_LT_AMP] = ACTIONS(1157), + [anon_sym_GT_AMP] = ACTIONS(1157), + [sym__special_characters] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_raw_string] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(2079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1157), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(1157), + [anon_sym_LT_LPAREN] = ACTIONS(1157), + [anon_sym_GT_LPAREN] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1159), }, [1523] = { - [sym_file_descriptor] = ACTIONS(2223), - [sym_word] = ACTIONS(2223), - [sym__concat] = ACTIONS(2223), - [sym_variable_name] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_RPAREN] = ACTIONS(2223), - [anon_sym_PIPE_AMP] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_GT] = ACTIONS(2708), - [anon_sym_GT_GT] = ACTIONS(2223), - [anon_sym_AMP_GT] = ACTIONS(2708), - [anon_sym_AMP_GT_GT] = ACTIONS(2223), - [anon_sym_LT_AMP] = ACTIONS(2223), - [anon_sym_GT_AMP] = ACTIONS(2223), - [anon_sym_DQUOTE] = ACTIONS(2223), - [sym_raw_string] = ACTIONS(2223), - [anon_sym_DOLLAR] = ACTIONS(2708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2223), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2223), - [anon_sym_BQUOTE] = ACTIONS(2223), - [anon_sym_LT_LPAREN] = ACTIONS(2223), - [anon_sym_GT_LPAREN] = ACTIONS(2223), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2708), + [sym_file_descriptor] = ACTIONS(1196), + [sym__concat] = ACTIONS(1196), + [sym_variable_name] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_RPAREN] = ACTIONS(1196), + [anon_sym_PIPE_AMP] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_PIPE_PIPE] = ACTIONS(2084), + [anon_sym_LT] = ACTIONS(2084), + [anon_sym_GT] = ACTIONS(2084), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_AMP_GT] = ACTIONS(2084), + [anon_sym_AMP_GT_GT] = ACTIONS(1196), + [anon_sym_LT_AMP] = ACTIONS(1196), + [anon_sym_GT_AMP] = ACTIONS(1196), + [sym__special_characters] = ACTIONS(2084), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_raw_string] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [anon_sym_LT_LPAREN] = ACTIONS(1196), + [anon_sym_GT_LPAREN] = ACTIONS(1196), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1198), }, [1524] = { - [anon_sym_RBRACE] = ACTIONS(3387), - [sym_comment] = ACTIONS(46), + [sym_concatenation] = STATE(1956), + [sym_string] = STATE(1955), + [sym_simple_expansion] = STATE(1955), + [sym_expansion] = STATE(1955), + [sym_command_substitution] = STATE(1955), + [sym_process_substitution] = STATE(1955), + [anon_sym_RBRACE] = ACTIONS(4493), + [sym__special_characters] = ACTIONS(4495), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4497), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4499), }, [1525] = { - [anon_sym_PIPE] = ACTIONS(3391), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_PIPE_AMP] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_BQUOTE] = ACTIONS(3393), - [sym_comment] = ACTIONS(46), + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(1241), + [sym_variable_name] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_PIPE_AMP] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1241), + [anon_sym_PIPE_PIPE] = ACTIONS(2094), + [anon_sym_LT] = ACTIONS(2094), + [anon_sym_GT] = ACTIONS(2094), + [anon_sym_GT_GT] = ACTIONS(1241), + [anon_sym_AMP_GT] = ACTIONS(2094), + [anon_sym_AMP_GT_GT] = ACTIONS(1241), + [anon_sym_LT_AMP] = ACTIONS(1241), + [anon_sym_GT_AMP] = ACTIONS(1241), + [sym__special_characters] = ACTIONS(2094), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_raw_string] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(2094), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1241), + [anon_sym_BQUOTE] = ACTIONS(1241), + [anon_sym_LT_LPAREN] = ACTIONS(1241), + [anon_sym_GT_LPAREN] = ACTIONS(1241), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1243), }, [1526] = { - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_RPAREN] = ACTIONS(3397), - [anon_sym_PIPE_AMP] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [anon_sym_BQUOTE] = ACTIONS(3397), - [sym_comment] = ACTIONS(46), + [sym_concatenation] = STATE(1960), + [sym_string] = STATE(1959), + [sym_simple_expansion] = STATE(1959), + [sym_expansion] = STATE(1959), + [sym_command_substitution] = STATE(1959), + [sym_process_substitution] = STATE(1959), + [anon_sym_RBRACE] = ACTIONS(4501), + [sym__special_characters] = ACTIONS(4503), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4505), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4507), }, [1527] = { - [anon_sym_PIPE] = ACTIONS(3399), + [anon_sym_EQ] = ACTIONS(4509), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1528] = { + [anon_sym_RBRACE] = ACTIONS(4511), + [anon_sym_EQ] = ACTIONS(4513), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_COLON_QMARK] = ACTIONS(4513), + [anon_sym_COLON_DASH] = ACTIONS(4513), + [anon_sym_PERCENT] = ACTIONS(4513), + [anon_sym_SLASH] = ACTIONS(4513), + [anon_sym_DASH] = ACTIONS(4513), + [sym_comment] = ACTIONS(48), + }, + [1529] = { + [anon_sym_RBRACE] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4521), + [anon_sym_COLON_QMARK] = ACTIONS(4519), + [anon_sym_COLON_DASH] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4519), + [sym_comment] = ACTIONS(48), + }, + [1530] = { + [anon_sym_RBRACE] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4509), + [anon_sym_COLON] = ACTIONS(4523), + [anon_sym_COLON_QMARK] = ACTIONS(4509), + [anon_sym_COLON_DASH] = ACTIONS(4509), + [anon_sym_PERCENT] = ACTIONS(4509), + [anon_sym_SLASH] = ACTIONS(4509), + [anon_sym_DASH] = ACTIONS(4509), + [sym_comment] = ACTIONS(48), + }, + [1531] = { + [sym_file_descriptor] = ACTIONS(1269), + [sym__concat] = ACTIONS(1269), + [sym_variable_name] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_RPAREN] = ACTIONS(1269), + [anon_sym_PIPE_AMP] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_GT] = ACTIONS(2120), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_AMP_GT] = ACTIONS(2120), + [anon_sym_AMP_GT_GT] = ACTIONS(1269), + [anon_sym_LT_AMP] = ACTIONS(1269), + [anon_sym_GT_AMP] = ACTIONS(1269), + [sym__special_characters] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_raw_string] = ACTIONS(1269), + [anon_sym_DOLLAR] = ACTIONS(2120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1269), + [anon_sym_BQUOTE] = ACTIONS(1269), + [anon_sym_LT_LPAREN] = ACTIONS(1269), + [anon_sym_GT_LPAREN] = ACTIONS(1269), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1271), + }, + [1532] = { + [sym_concatenation] = STATE(1969), + [sym_string] = STATE(1968), + [sym_simple_expansion] = STATE(1968), + [sym_expansion] = STATE(1968), + [sym_command_substitution] = STATE(1968), + [sym_process_substitution] = STATE(1968), + [anon_sym_RBRACE] = ACTIONS(4525), + [sym__special_characters] = ACTIONS(4527), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4529), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4531), + }, + [1533] = { + [sym_file_descriptor] = ACTIONS(1281), + [sym__concat] = ACTIONS(1281), + [sym_variable_name] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_RPAREN] = ACTIONS(1281), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(2130), + [anon_sym_LT] = ACTIONS(2130), + [anon_sym_GT] = ACTIONS(2130), + [anon_sym_GT_GT] = ACTIONS(1281), + [anon_sym_AMP_GT] = ACTIONS(2130), + [anon_sym_AMP_GT_GT] = ACTIONS(1281), + [anon_sym_LT_AMP] = ACTIONS(1281), + [anon_sym_GT_AMP] = ACTIONS(1281), + [sym__special_characters] = ACTIONS(2130), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_raw_string] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(2130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1281), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1283), + }, + [1534] = { + [sym_file_descriptor] = ACTIONS(1379), + [sym__concat] = ACTIONS(1379), + [sym_variable_name] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_RPAREN] = ACTIONS(1379), + [anon_sym_PIPE_AMP] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(2132), + [anon_sym_LT] = ACTIONS(2132), + [anon_sym_GT] = ACTIONS(2132), + [anon_sym_GT_GT] = ACTIONS(1379), + [anon_sym_AMP_GT] = ACTIONS(2132), + [anon_sym_AMP_GT_GT] = ACTIONS(1379), + [anon_sym_LT_AMP] = ACTIONS(1379), + [anon_sym_GT_AMP] = ACTIONS(1379), + [sym__special_characters] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(1379), + [sym_raw_string] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(2132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1379), + [anon_sym_BQUOTE] = ACTIONS(1379), + [anon_sym_LT_LPAREN] = ACTIONS(1379), + [anon_sym_GT_LPAREN] = ACTIONS(1379), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1381), + }, + [1535] = { + [sym_file_descriptor] = ACTIONS(1513), + [sym__concat] = ACTIONS(1513), + [sym_variable_name] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(1513), + [anon_sym_PIPE_AMP] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(2134), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_GT] = ACTIONS(2134), + [anon_sym_GT_GT] = ACTIONS(1513), + [anon_sym_AMP_GT] = ACTIONS(2134), + [anon_sym_AMP_GT_GT] = ACTIONS(1513), + [anon_sym_LT_AMP] = ACTIONS(1513), + [anon_sym_GT_AMP] = ACTIONS(1513), + [sym__special_characters] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(1513), + [sym_raw_string] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(2134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1513), + [anon_sym_BQUOTE] = ACTIONS(1513), + [anon_sym_LT_LPAREN] = ACTIONS(1513), + [anon_sym_GT_LPAREN] = ACTIONS(1513), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1515), + }, + [1536] = { + [sym_do_group] = STATE(1970), + [anon_sym_do] = ACTIONS(1311), + [sym_comment] = ACTIONS(48), + }, + [1537] = { + [anon_sym_PIPE] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4535), + [anon_sym_PIPE_AMP] = ACTIONS(4535), + [anon_sym_AMP_AMP] = ACTIONS(4535), + [anon_sym_PIPE_PIPE] = ACTIONS(4535), + [anon_sym_BQUOTE] = ACTIONS(4535), + [sym_comment] = ACTIONS(48), + }, + [1538] = { + [anon_sym_PIPE] = ACTIONS(4537), + [anon_sym_RPAREN] = ACTIONS(4539), + [anon_sym_PIPE_AMP] = ACTIONS(4539), + [anon_sym_AMP_AMP] = ACTIONS(4539), + [anon_sym_PIPE_PIPE] = ACTIONS(4539), + [anon_sym_BQUOTE] = ACTIONS(4539), + [sym_comment] = ACTIONS(48), + }, + [1539] = { + [anon_sym_fi] = ACTIONS(4541), + [sym_comment] = ACTIONS(48), + }, + [1540] = { + [sym_elif_clause] = STATE(474), + [sym_else_clause] = STATE(1972), + [aux_sym_if_statement_repeat1] = STATE(847), + [anon_sym_fi] = ACTIONS(4541), + [anon_sym_elif] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1801), + [sym_comment] = ACTIONS(48), + }, + [1541] = { + [anon_sym_PIPE] = ACTIONS(4543), + [anon_sym_RPAREN] = ACTIONS(4545), + [anon_sym_PIPE_AMP] = ACTIONS(4545), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4545), + [anon_sym_BQUOTE] = ACTIONS(4545), + [sym_comment] = ACTIONS(48), + }, + [1542] = { + [sym_case_item] = STATE(857), + [sym_concatenation] = STATE(858), + [sym_string] = STATE(851), + [sym_simple_expansion] = STATE(851), + [sym_expansion] = STATE(851), + [sym_command_substitution] = STATE(851), + [sym_process_substitution] = STATE(851), + [aux_sym_case_statement_repeat1] = STATE(1331), + [anon_sym_esac] = ACTIONS(4547), + [sym__special_characters] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1807), + [sym_raw_string] = ACTIONS(1809), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1815), + [anon_sym_BQUOTE] = ACTIONS(1817), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1821), + }, + [1543] = { + [sym_case_item] = STATE(857), + [sym_concatenation] = STATE(858), + [sym_string] = STATE(851), + [sym_simple_expansion] = STATE(851), + [sym_expansion] = STATE(851), + [sym_command_substitution] = STATE(851), + [sym_process_substitution] = STATE(851), + [aux_sym_case_statement_repeat1] = STATE(1974), + [anon_sym_esac] = ACTIONS(4547), + [sym__special_characters] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1807), + [sym_raw_string] = ACTIONS(1809), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1815), + [anon_sym_BQUOTE] = ACTIONS(1817), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1821), + }, + [1544] = { + [anon_sym_PIPE] = ACTIONS(4549), + [anon_sym_RPAREN] = ACTIONS(4551), + [anon_sym_PIPE_AMP] = ACTIONS(4551), + [anon_sym_AMP_AMP] = ACTIONS(4551), + [anon_sym_PIPE_PIPE] = ACTIONS(4551), + [anon_sym_BQUOTE] = ACTIONS(4551), + [sym_comment] = ACTIONS(48), + }, + [1545] = { + [sym_case_item] = STATE(857), + [sym_concatenation] = STATE(858), + [sym_string] = STATE(851), + [sym_simple_expansion] = STATE(851), + [sym_expansion] = STATE(851), + [sym_command_substitution] = STATE(851), + [sym_process_substitution] = STATE(851), + [aux_sym_case_statement_repeat1] = STATE(1331), + [anon_sym_esac] = ACTIONS(4553), + [sym__special_characters] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1807), + [sym_raw_string] = ACTIONS(1809), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1815), + [anon_sym_BQUOTE] = ACTIONS(1817), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1821), + }, + [1546] = { + [sym_case_item] = STATE(857), + [sym_concatenation] = STATE(858), + [sym_string] = STATE(851), + [sym_simple_expansion] = STATE(851), + [sym_expansion] = STATE(851), + [sym_command_substitution] = STATE(851), + [sym_process_substitution] = STATE(851), + [aux_sym_case_statement_repeat1] = STATE(1976), + [anon_sym_esac] = ACTIONS(4553), + [sym__special_characters] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1807), + [sym_raw_string] = ACTIONS(1809), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1815), + [anon_sym_BQUOTE] = ACTIONS(1817), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1821), + }, + [1547] = { + [sym_file_redirect] = STATE(1977), + [sym_file_descriptor] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(4555), + [anon_sym_RPAREN] = ACTIONS(4557), + [anon_sym_PIPE_AMP] = ACTIONS(4557), + [anon_sym_AMP_AMP] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(2312), + [anon_sym_GT] = ACTIONS(2312), + [anon_sym_GT_GT] = ACTIONS(2314), + [anon_sym_AMP_GT] = ACTIONS(2312), + [anon_sym_AMP_GT_GT] = ACTIONS(2314), + [anon_sym_LT_AMP] = ACTIONS(2314), + [anon_sym_GT_AMP] = ACTIONS(2314), + [sym_comment] = ACTIONS(48), + }, + [1548] = { + [sym_file_descriptor] = ACTIONS(3050), + [anon_sym_PIPE] = ACTIONS(4559), + [anon_sym_RPAREN] = ACTIONS(3050), + [anon_sym_PIPE_AMP] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_PIPE_PIPE] = ACTIONS(3050), + [anon_sym_LT] = ACTIONS(4559), + [anon_sym_GT] = ACTIONS(4559), + [anon_sym_GT_GT] = ACTIONS(3050), + [anon_sym_AMP_GT] = ACTIONS(4559), + [anon_sym_AMP_GT_GT] = ACTIONS(3050), + [anon_sym_LT_AMP] = ACTIONS(3050), + [anon_sym_GT_AMP] = ACTIONS(3050), + [anon_sym_BQUOTE] = ACTIONS(3050), + [sym_comment] = ACTIONS(48), + }, + [1549] = { + [sym_concatenation] = STATE(1980), + [sym_string] = STATE(1979), + [sym_simple_expansion] = STATE(1979), + [sym_expansion] = STATE(1979), + [sym_command_substitution] = STATE(1979), + [sym_process_substitution] = STATE(1979), + [sym__special_characters] = ACTIONS(4561), + [anon_sym_DQUOTE] = ACTIONS(3511), + [sym_raw_string] = ACTIONS(4563), + [anon_sym_DOLLAR] = ACTIONS(3515), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3517), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3519), + [anon_sym_BQUOTE] = ACTIONS(3521), + [anon_sym_LT_LPAREN] = ACTIONS(3523), + [anon_sym_GT_LPAREN] = ACTIONS(3523), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4565), + }, + [1550] = { + [aux_sym_concatenation_repeat1] = STATE(1982), + [sym__concat] = ACTIONS(4567), + [anon_sym_PIPE] = ACTIONS(450), + [anon_sym_RPAREN] = ACTIONS(446), + [anon_sym_PIPE_AMP] = ACTIONS(446), + [anon_sym_AMP_AMP] = ACTIONS(446), + [anon_sym_PIPE_PIPE] = ACTIONS(446), + [sym_comment] = ACTIONS(48), + }, + [1551] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(1984), + [anon_sym_DQUOTE] = ACTIONS(4569), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [1552] = { + [aux_sym_concatenation_repeat1] = STATE(1982), + [sym__concat] = ACTIONS(4567), + [anon_sym_PIPE] = ACTIONS(456), + [anon_sym_RPAREN] = ACTIONS(454), + [anon_sym_PIPE_AMP] = ACTIONS(454), + [anon_sym_AMP_AMP] = ACTIONS(454), + [anon_sym_PIPE_PIPE] = ACTIONS(454), + [sym_comment] = ACTIONS(48), + }, + [1553] = { + [anon_sym_DOLLAR] = ACTIONS(4571), + [anon_sym_DASH] = ACTIONS(4571), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4573), + [anon_sym_STAR] = ACTIONS(4571), + [anon_sym_AT] = ACTIONS(4571), + [anon_sym_QMARK] = ACTIONS(4571), + [anon_sym_0] = ACTIONS(4575), + [anon_sym__] = ACTIONS(4575), + }, + [1554] = { + [sym_subscript] = STATE(1991), + [sym_variable_name] = ACTIONS(4577), + [anon_sym_DOLLAR] = ACTIONS(4579), + [anon_sym_POUND] = ACTIONS(4581), + [anon_sym_DASH] = ACTIONS(4579), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4583), + [anon_sym_STAR] = ACTIONS(4579), + [anon_sym_AT] = ACTIONS(4579), + [anon_sym_QMARK] = ACTIONS(4579), + [anon_sym_0] = ACTIONS(4585), + [anon_sym__] = ACTIONS(4585), + }, + [1555] = { + [sym_for_statement] = STATE(1992), + [sym_while_statement] = STATE(1992), + [sym_if_statement] = STATE(1992), + [sym_case_statement] = STATE(1992), + [sym_function_definition] = STATE(1992), + [sym_subshell] = STATE(1992), + [sym_pipeline] = STATE(1992), + [sym_list] = STATE(1992), + [sym_command] = STATE(1992), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1993), + [sym_declaration_command] = STATE(1992), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [1556] = { + [sym_for_statement] = STATE(1994), + [sym_while_statement] = STATE(1994), + [sym_if_statement] = STATE(1994), + [sym_case_statement] = STATE(1994), + [sym_function_definition] = STATE(1994), + [sym_subshell] = STATE(1994), + [sym_pipeline] = STATE(1994), + [sym_list] = STATE(1994), + [sym_command] = STATE(1994), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(1995), + [sym_declaration_command] = STATE(1994), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), + }, + [1557] = { + [sym_for_statement] = STATE(1996), + [sym_while_statement] = STATE(1996), + [sym_if_statement] = STATE(1996), + [sym_case_statement] = STATE(1996), + [sym_function_definition] = STATE(1996), + [sym_subshell] = STATE(1996), + [sym_pipeline] = STATE(1996), + [sym_list] = STATE(1996), + [sym_command] = STATE(1996), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(1997), + [sym_declaration_command] = STATE(1996), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [1558] = { + [anon_sym_PIPE] = ACTIONS(456), + [anon_sym_RPAREN] = ACTIONS(454), + [anon_sym_PIPE_AMP] = ACTIONS(454), + [anon_sym_AMP_AMP] = ACTIONS(454), + [anon_sym_PIPE_PIPE] = ACTIONS(454), + [anon_sym_BQUOTE] = ACTIONS(454), + [sym_comment] = ACTIONS(48), + }, + [1559] = { + [anon_sym_PIPE] = ACTIONS(4587), + [anon_sym_RPAREN] = ACTIONS(4589), + [anon_sym_PIPE_AMP] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4589), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_BQUOTE] = ACTIONS(4589), + [sym_comment] = ACTIONS(48), + }, + [1560] = { + [sym_variable_name] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(3437), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_PIPE_AMP] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE_PIPE] = ACTIONS(3437), + [anon_sym_BQUOTE] = ACTIONS(1629), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3437), + [sym_word] = ACTIONS(1631), + }, + [1561] = { + [sym_concatenation] = STATE(414), + [sym_string] = STATE(408), + [sym_simple_expansion] = STATE(408), + [sym_expansion] = STATE(408), + [sym_command_substitution] = STATE(408), + [sym_process_substitution] = STATE(408), + [aux_sym_for_statement_repeat1] = STATE(779), + [anon_sym_RPAREN] = ACTIONS(4591), + [sym__special_characters] = ACTIONS(830), + [anon_sym_DQUOTE] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(840), + [anon_sym_BQUOTE] = ACTIONS(842), + [anon_sym_LT_LPAREN] = ACTIONS(844), + [anon_sym_GT_LPAREN] = ACTIONS(844), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(846), + }, + [1562] = { + [sym_string] = STATE(1999), + [sym_simple_expansion] = STATE(1999), + [sym_expansion] = STATE(1999), + [sym_command_substitution] = STATE(1999), + [sym_process_substitution] = STATE(1999), + [sym__special_characters] = ACTIONS(4593), + [anon_sym_DQUOTE] = ACTIONS(2332), + [sym_raw_string] = ACTIONS(4595), + [anon_sym_DOLLAR] = ACTIONS(2336), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2338), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2340), + [anon_sym_BQUOTE] = ACTIONS(2342), + [anon_sym_LT_LPAREN] = ACTIONS(2344), + [anon_sym_GT_LPAREN] = ACTIONS(2344), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4593), + }, + [1563] = { + [aux_sym_concatenation_repeat1] = STATE(2000), + [sym__concat] = ACTIONS(3539), + [sym_variable_name] = ACTIONS(478), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_RPAREN] = ACTIONS(478), + [anon_sym_PIPE_AMP] = ACTIONS(478), + [anon_sym_AMP_AMP] = ACTIONS(478), + [anon_sym_PIPE_PIPE] = ACTIONS(1117), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1117), + [sym_word] = ACTIONS(480), + }, + [1564] = { + [sym__concat] = ACTIONS(482), + [sym_variable_name] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(1119), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_PIPE_AMP] = ACTIONS(482), + [anon_sym_AMP_AMP] = ACTIONS(482), + [anon_sym_PIPE_PIPE] = ACTIONS(1119), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1119), + [sym_word] = ACTIONS(484), + }, + [1565] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(4597), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [1566] = { + [sym__concat] = ACTIONS(510), + [sym_variable_name] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_RPAREN] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_PIPE_PIPE] = ACTIONS(1123), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1123), + [sym_word] = ACTIONS(512), + }, + [1567] = { + [sym__concat] = ACTIONS(514), + [sym_variable_name] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_RPAREN] = ACTIONS(514), + [anon_sym_PIPE_AMP] = ACTIONS(514), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(1125), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1125), + [sym_word] = ACTIONS(516), + }, + [1568] = { + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1569] = { + [anon_sym_RBRACE] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_COLON] = ACTIONS(4605), + [anon_sym_COLON_QMARK] = ACTIONS(4603), + [anon_sym_COLON_DASH] = ACTIONS(4603), + [anon_sym_PERCENT] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4603), + [sym_comment] = ACTIONS(48), + }, + [1570] = { + [sym_subscript] = STATE(2008), + [sym_variable_name] = ACTIONS(4607), + [anon_sym_DOLLAR] = ACTIONS(4609), + [anon_sym_DASH] = ACTIONS(4609), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4611), + [anon_sym_STAR] = ACTIONS(4609), + [anon_sym_AT] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4609), + [anon_sym_0] = ACTIONS(4613), + [anon_sym__] = ACTIONS(4613), + }, + [1571] = { + [anon_sym_RBRACE] = ACTIONS(4615), + [anon_sym_EQ] = ACTIONS(4617), + [anon_sym_COLON] = ACTIONS(4619), + [anon_sym_COLON_QMARK] = ACTIONS(4617), + [anon_sym_COLON_DASH] = ACTIONS(4617), + [anon_sym_PERCENT] = ACTIONS(4617), + [anon_sym_SLASH] = ACTIONS(4617), + [anon_sym_DASH] = ACTIONS(4617), + [sym_comment] = ACTIONS(48), + }, + [1572] = { + [anon_sym_RBRACE] = ACTIONS(4621), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_COLON] = ACTIONS(4623), + [anon_sym_COLON_QMARK] = ACTIONS(4599), + [anon_sym_COLON_DASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4599), + [sym_comment] = ACTIONS(48), + }, + [1573] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(4625), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1574] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(4625), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1575] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(4625), + [sym_comment] = ACTIONS(48), + }, + [1576] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(4625), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1577] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(4627), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1578] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(4627), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1579] = { + [sym_file_descriptor] = ACTIONS(3353), + [sym__concat] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(4381), + [anon_sym_RPAREN] = ACTIONS(3353), + [anon_sym_PIPE_AMP] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_LT] = ACTIONS(4381), + [anon_sym_GT] = ACTIONS(4381), + [anon_sym_GT_GT] = ACTIONS(3353), + [anon_sym_AMP_GT] = ACTIONS(4381), + [anon_sym_AMP_GT_GT] = ACTIONS(3353), + [anon_sym_LT_AMP] = ACTIONS(3353), + [anon_sym_GT_AMP] = ACTIONS(3353), + [anon_sym_LT_LT] = ACTIONS(4381), + [anon_sym_LT_LT_DASH] = ACTIONS(3353), + [anon_sym_LT_LT_LT] = ACTIONS(3353), + [sym__special_characters] = ACTIONS(4381), + [anon_sym_DQUOTE] = ACTIONS(3353), + [sym_raw_string] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(4381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3353), + [anon_sym_BQUOTE] = ACTIONS(3353), + [anon_sym_LT_LPAREN] = ACTIONS(3353), + [anon_sym_GT_LPAREN] = ACTIONS(3353), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3355), + }, + [1580] = { + [sym_file_descriptor] = ACTIONS(3359), + [sym__concat] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(4383), + [anon_sym_RPAREN] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(4383), + [anon_sym_LT] = ACTIONS(4383), + [anon_sym_GT] = ACTIONS(4383), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_AMP_GT] = ACTIONS(4383), + [anon_sym_AMP_GT_GT] = ACTIONS(3359), + [anon_sym_LT_AMP] = ACTIONS(3359), + [anon_sym_GT_AMP] = ACTIONS(3359), + [anon_sym_LT_LT] = ACTIONS(4383), + [anon_sym_LT_LT_DASH] = ACTIONS(3359), + [anon_sym_LT_LT_LT] = ACTIONS(3359), + [sym__special_characters] = ACTIONS(4383), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(4383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [anon_sym_LT_LPAREN] = ACTIONS(3359), + [anon_sym_GT_LPAREN] = ACTIONS(3359), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3361), + }, + [1581] = { + [sym_file_descriptor] = ACTIONS(3401), + [sym__concat] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(4385), + [anon_sym_RPAREN] = ACTIONS(3401), + [anon_sym_PIPE_AMP] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_PIPE_PIPE] = ACTIONS(4385), + [anon_sym_LT] = ACTIONS(4385), + [anon_sym_GT] = ACTIONS(4385), + [anon_sym_GT_GT] = ACTIONS(3401), + [anon_sym_AMP_GT] = ACTIONS(4385), + [anon_sym_AMP_GT_GT] = ACTIONS(3401), + [anon_sym_LT_AMP] = ACTIONS(3401), + [anon_sym_GT_AMP] = ACTIONS(3401), + [anon_sym_LT_LT] = ACTIONS(4385), + [anon_sym_LT_LT_DASH] = ACTIONS(3401), + [anon_sym_LT_LT_LT] = ACTIONS(3401), + [sym__special_characters] = ACTIONS(4385), + [anon_sym_DQUOTE] = ACTIONS(3401), + [sym_raw_string] = ACTIONS(3401), + [anon_sym_DOLLAR] = ACTIONS(4385), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3401), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3401), + [anon_sym_BQUOTE] = ACTIONS(3401), + [anon_sym_LT_LPAREN] = ACTIONS(3401), + [anon_sym_GT_LPAREN] = ACTIONS(3401), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3403), + }, + [1582] = { + [sym_file_descriptor] = ACTIONS(3405), + [sym__concat] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(4387), + [anon_sym_RPAREN] = ACTIONS(3405), + [anon_sym_PIPE_AMP] = ACTIONS(3405), + [anon_sym_AMP_AMP] = ACTIONS(3405), + [anon_sym_PIPE_PIPE] = ACTIONS(4387), + [anon_sym_LT] = ACTIONS(4387), + [anon_sym_GT] = ACTIONS(4387), + [anon_sym_GT_GT] = ACTIONS(3405), + [anon_sym_AMP_GT] = ACTIONS(4387), + [anon_sym_AMP_GT_GT] = ACTIONS(3405), + [anon_sym_LT_AMP] = ACTIONS(3405), + [anon_sym_GT_AMP] = ACTIONS(3405), + [anon_sym_LT_LT] = ACTIONS(4387), + [anon_sym_LT_LT_DASH] = ACTIONS(3405), + [anon_sym_LT_LT_LT] = ACTIONS(3405), + [sym__special_characters] = ACTIONS(4387), + [anon_sym_DQUOTE] = ACTIONS(3405), + [sym_raw_string] = ACTIONS(3405), + [anon_sym_DOLLAR] = ACTIONS(4387), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3405), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3405), + [anon_sym_BQUOTE] = ACTIONS(3405), + [anon_sym_LT_LPAREN] = ACTIONS(3405), + [anon_sym_GT_LPAREN] = ACTIONS(3405), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3407), + }, + [1583] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4629), + [sym_comment] = ACTIONS(48), + }, + [1584] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4631), + [sym_comment] = ACTIONS(48), + }, + [1585] = { + [anon_sym_RBRACE] = ACTIONS(4631), + [sym_comment] = ACTIONS(48), + }, + [1586] = { + [sym_file_descriptor] = ACTIONS(3413), + [sym__concat] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(4393), + [anon_sym_RPAREN] = ACTIONS(3413), + [anon_sym_PIPE_AMP] = ACTIONS(3413), + [anon_sym_AMP_AMP] = ACTIONS(3413), + [anon_sym_PIPE_PIPE] = ACTIONS(4393), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_GT_GT] = ACTIONS(3413), + [anon_sym_AMP_GT] = ACTIONS(4393), + [anon_sym_AMP_GT_GT] = ACTIONS(3413), + [anon_sym_LT_AMP] = ACTIONS(3413), + [anon_sym_GT_AMP] = ACTIONS(3413), + [anon_sym_LT_LT] = ACTIONS(4393), + [anon_sym_LT_LT_DASH] = ACTIONS(3413), + [anon_sym_LT_LT_LT] = ACTIONS(3413), + [sym__special_characters] = ACTIONS(4393), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR] = ACTIONS(4393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3413), + [anon_sym_BQUOTE] = ACTIONS(3413), + [anon_sym_LT_LPAREN] = ACTIONS(3413), + [anon_sym_GT_LPAREN] = ACTIONS(3413), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3415), + }, + [1587] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4633), + [sym_comment] = ACTIONS(48), + }, + [1588] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4635), + [sym_comment] = ACTIONS(48), + }, + [1589] = { + [anon_sym_RBRACE] = ACTIONS(4635), + [sym_comment] = ACTIONS(48), + }, + [1590] = { + [sym_file_descriptor] = ACTIONS(3421), + [sym__concat] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(4399), + [anon_sym_RPAREN] = ACTIONS(3421), + [anon_sym_PIPE_AMP] = ACTIONS(3421), + [anon_sym_AMP_AMP] = ACTIONS(3421), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_GT] = ACTIONS(4399), + [anon_sym_GT_GT] = ACTIONS(3421), + [anon_sym_AMP_GT] = ACTIONS(4399), + [anon_sym_AMP_GT_GT] = ACTIONS(3421), + [anon_sym_LT_AMP] = ACTIONS(3421), + [anon_sym_GT_AMP] = ACTIONS(3421), + [anon_sym_LT_LT] = ACTIONS(4399), + [anon_sym_LT_LT_DASH] = ACTIONS(3421), + [anon_sym_LT_LT_LT] = ACTIONS(3421), + [sym__special_characters] = ACTIONS(4399), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_raw_string] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(4399), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3421), + [anon_sym_BQUOTE] = ACTIONS(3421), + [anon_sym_LT_LPAREN] = ACTIONS(3421), + [anon_sym_GT_LPAREN] = ACTIONS(3421), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3423), + }, + [1591] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4637), + [sym_comment] = ACTIONS(48), + }, + [1592] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4639), + [sym_comment] = ACTIONS(48), + }, + [1593] = { + [anon_sym_RBRACE] = ACTIONS(4639), + [sym_comment] = ACTIONS(48), + }, + [1594] = { + [sym_file_descriptor] = ACTIONS(3429), + [sym__concat] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(4405), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_PIPE_AMP] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(4405), + [anon_sym_LT] = ACTIONS(4405), + [anon_sym_GT] = ACTIONS(4405), + [anon_sym_GT_GT] = ACTIONS(3429), + [anon_sym_AMP_GT] = ACTIONS(4405), + [anon_sym_AMP_GT_GT] = ACTIONS(3429), + [anon_sym_LT_AMP] = ACTIONS(3429), + [anon_sym_GT_AMP] = ACTIONS(3429), + [anon_sym_LT_LT] = ACTIONS(4405), + [anon_sym_LT_LT_DASH] = ACTIONS(3429), + [anon_sym_LT_LT_LT] = ACTIONS(3429), + [sym__special_characters] = ACTIONS(4405), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym_raw_string] = ACTIONS(3429), + [anon_sym_DOLLAR] = ACTIONS(4405), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3429), + [anon_sym_BQUOTE] = ACTIONS(3429), + [anon_sym_LT_LPAREN] = ACTIONS(3429), + [anon_sym_GT_LPAREN] = ACTIONS(3429), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3431), + }, + [1595] = { + [sym_file_descriptor] = ACTIONS(3433), + [sym__concat] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_RPAREN] = ACTIONS(3433), + [anon_sym_PIPE_AMP] = ACTIONS(3433), + [anon_sym_AMP_AMP] = ACTIONS(3433), + [anon_sym_PIPE_PIPE] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_GT_GT] = ACTIONS(3433), + [anon_sym_AMP_GT] = ACTIONS(4407), + [anon_sym_AMP_GT_GT] = ACTIONS(3433), + [anon_sym_LT_AMP] = ACTIONS(3433), + [anon_sym_GT_AMP] = ACTIONS(3433), + [anon_sym_LT_LT] = ACTIONS(4407), + [anon_sym_LT_LT_DASH] = ACTIONS(3433), + [anon_sym_LT_LT_LT] = ACTIONS(3433), + [sym__special_characters] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(3433), + [sym_raw_string] = ACTIONS(3433), + [anon_sym_DOLLAR] = ACTIONS(4407), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3433), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3433), + [anon_sym_BQUOTE] = ACTIONS(3433), + [anon_sym_LT_LPAREN] = ACTIONS(3433), + [anon_sym_GT_LPAREN] = ACTIONS(3433), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3435), + }, + [1596] = { + [anon_sym_PIPE] = ACTIONS(4555), + [anon_sym_RPAREN] = ACTIONS(4557), + [anon_sym_PIPE_AMP] = ACTIONS(4557), + [anon_sym_AMP_AMP] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4557), + [anon_sym_BQUOTE] = ACTIONS(4557), + [sym_comment] = ACTIONS(48), + }, + [1597] = { + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(1157), + [anon_sym_PIPE_AMP] = ACTIONS(1157), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_GT_GT] = ACTIONS(1157), + [anon_sym_AMP_GT] = ACTIONS(2079), + [anon_sym_AMP_GT_GT] = ACTIONS(1157), + [anon_sym_LT_AMP] = ACTIONS(1157), + [anon_sym_GT_AMP] = ACTIONS(1157), + [anon_sym_LT_LT] = ACTIONS(2079), + [anon_sym_LT_LT_DASH] = ACTIONS(1157), + [anon_sym_LT_LT_LT] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + }, + [1598] = { + [aux_sym_concatenation_repeat1] = STATE(1598), + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(4641), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(1157), + [anon_sym_PIPE_AMP] = ACTIONS(1157), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_GT_GT] = ACTIONS(1157), + [anon_sym_AMP_GT] = ACTIONS(2079), + [anon_sym_AMP_GT_GT] = ACTIONS(1157), + [anon_sym_LT_AMP] = ACTIONS(1157), + [anon_sym_GT_AMP] = ACTIONS(1157), + [anon_sym_LT_LT] = ACTIONS(2079), + [anon_sym_LT_LT_DASH] = ACTIONS(1157), + [anon_sym_LT_LT_LT] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + }, + [1599] = { + [sym_file_descriptor] = ACTIONS(1196), + [sym__concat] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_RPAREN] = ACTIONS(1196), + [anon_sym_PIPE_AMP] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_PIPE_PIPE] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(2084), + [anon_sym_GT] = ACTIONS(2084), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_AMP_GT] = ACTIONS(2084), + [anon_sym_AMP_GT_GT] = ACTIONS(1196), + [anon_sym_LT_AMP] = ACTIONS(1196), + [anon_sym_GT_AMP] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(2084), + [anon_sym_LT_LT_DASH] = ACTIONS(1196), + [anon_sym_LT_LT_LT] = ACTIONS(1196), + [sym_comment] = ACTIONS(48), + }, + [1600] = { + [sym_concatenation] = STATE(2023), + [sym_string] = STATE(2022), + [sym_simple_expansion] = STATE(2022), + [sym_expansion] = STATE(2022), + [sym_command_substitution] = STATE(2022), + [sym_process_substitution] = STATE(2022), + [anon_sym_RBRACE] = ACTIONS(4644), + [sym__special_characters] = ACTIONS(4646), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4648), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4650), + }, + [1601] = { + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_PIPE_AMP] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1241), + [anon_sym_PIPE_PIPE] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(2094), + [anon_sym_GT] = ACTIONS(2094), + [anon_sym_GT_GT] = ACTIONS(1241), + [anon_sym_AMP_GT] = ACTIONS(2094), + [anon_sym_AMP_GT_GT] = ACTIONS(1241), + [anon_sym_LT_AMP] = ACTIONS(1241), + [anon_sym_GT_AMP] = ACTIONS(1241), + [anon_sym_LT_LT] = ACTIONS(2094), + [anon_sym_LT_LT_DASH] = ACTIONS(1241), + [anon_sym_LT_LT_LT] = ACTIONS(1241), + [sym_comment] = ACTIONS(48), + }, + [1602] = { + [sym_concatenation] = STATE(2027), + [sym_string] = STATE(2026), + [sym_simple_expansion] = STATE(2026), + [sym_expansion] = STATE(2026), + [sym_command_substitution] = STATE(2026), + [sym_process_substitution] = STATE(2026), + [anon_sym_RBRACE] = ACTIONS(4652), + [sym__special_characters] = ACTIONS(4654), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4656), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4658), + }, + [1603] = { + [anon_sym_EQ] = ACTIONS(4660), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1604] = { + [anon_sym_RBRACE] = ACTIONS(4662), + [anon_sym_EQ] = ACTIONS(4664), + [anon_sym_COLON] = ACTIONS(4666), + [anon_sym_COLON_QMARK] = ACTIONS(4664), + [anon_sym_COLON_DASH] = ACTIONS(4664), + [anon_sym_PERCENT] = ACTIONS(4664), + [anon_sym_SLASH] = ACTIONS(4664), + [anon_sym_DASH] = ACTIONS(4664), + [sym_comment] = ACTIONS(48), + }, + [1605] = { + [anon_sym_RBRACE] = ACTIONS(4668), + [anon_sym_EQ] = ACTIONS(4670), + [anon_sym_COLON] = ACTIONS(4672), + [anon_sym_COLON_QMARK] = ACTIONS(4670), + [anon_sym_COLON_DASH] = ACTIONS(4670), + [anon_sym_PERCENT] = ACTIONS(4670), + [anon_sym_SLASH] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4670), + [sym_comment] = ACTIONS(48), + }, + [1606] = { + [anon_sym_RBRACE] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4660), + [anon_sym_COLON] = ACTIONS(4674), + [anon_sym_COLON_QMARK] = ACTIONS(4660), + [anon_sym_COLON_DASH] = ACTIONS(4660), + [anon_sym_PERCENT] = ACTIONS(4660), + [anon_sym_SLASH] = ACTIONS(4660), + [anon_sym_DASH] = ACTIONS(4660), + [sym_comment] = ACTIONS(48), + }, + [1607] = { + [sym_file_descriptor] = ACTIONS(1269), + [sym__concat] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_RPAREN] = ACTIONS(1269), + [anon_sym_PIPE_AMP] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_GT] = ACTIONS(2120), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_AMP_GT] = ACTIONS(2120), + [anon_sym_AMP_GT_GT] = ACTIONS(1269), + [anon_sym_LT_AMP] = ACTIONS(1269), + [anon_sym_GT_AMP] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(2120), + [anon_sym_LT_LT_DASH] = ACTIONS(1269), + [anon_sym_LT_LT_LT] = ACTIONS(1269), + [sym_comment] = ACTIONS(48), + }, + [1608] = { + [sym_concatenation] = STATE(2036), + [sym_string] = STATE(2035), + [sym_simple_expansion] = STATE(2035), + [sym_expansion] = STATE(2035), + [sym_command_substitution] = STATE(2035), + [sym_process_substitution] = STATE(2035), + [anon_sym_RBRACE] = ACTIONS(4676), + [sym__special_characters] = ACTIONS(4678), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4680), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4682), + }, + [1609] = { + [sym_file_descriptor] = ACTIONS(1281), + [sym__concat] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_RPAREN] = ACTIONS(1281), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(2130), + [anon_sym_GT] = ACTIONS(2130), + [anon_sym_GT_GT] = ACTIONS(1281), + [anon_sym_AMP_GT] = ACTIONS(2130), + [anon_sym_AMP_GT_GT] = ACTIONS(1281), + [anon_sym_LT_AMP] = ACTIONS(1281), + [anon_sym_GT_AMP] = ACTIONS(1281), + [anon_sym_LT_LT] = ACTIONS(2130), + [anon_sym_LT_LT_DASH] = ACTIONS(1281), + [anon_sym_LT_LT_LT] = ACTIONS(1281), + [sym_comment] = ACTIONS(48), + }, + [1610] = { + [sym_file_descriptor] = ACTIONS(1379), + [sym__concat] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_RPAREN] = ACTIONS(1379), + [anon_sym_PIPE_AMP] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(2132), + [anon_sym_GT] = ACTIONS(2132), + [anon_sym_GT_GT] = ACTIONS(1379), + [anon_sym_AMP_GT] = ACTIONS(2132), + [anon_sym_AMP_GT_GT] = ACTIONS(1379), + [anon_sym_LT_AMP] = ACTIONS(1379), + [anon_sym_GT_AMP] = ACTIONS(1379), + [anon_sym_LT_LT] = ACTIONS(2132), + [anon_sym_LT_LT_DASH] = ACTIONS(1379), + [anon_sym_LT_LT_LT] = ACTIONS(1379), + [sym_comment] = ACTIONS(48), + }, + [1611] = { + [sym_file_descriptor] = ACTIONS(1513), + [sym__concat] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(1513), + [anon_sym_PIPE_AMP] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_GT] = ACTIONS(2134), + [anon_sym_GT_GT] = ACTIONS(1513), + [anon_sym_AMP_GT] = ACTIONS(2134), + [anon_sym_AMP_GT_GT] = ACTIONS(1513), + [anon_sym_LT_AMP] = ACTIONS(1513), + [anon_sym_GT_AMP] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(2134), + [anon_sym_LT_LT_DASH] = ACTIONS(1513), + [anon_sym_LT_LT_LT] = ACTIONS(1513), + [sym_comment] = ACTIONS(48), + }, + [1612] = { + [sym_file_descriptor] = ACTIONS(3854), + [anon_sym_PIPE] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(3854), + [anon_sym_PIPE_AMP] = ACTIONS(3854), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3854), + [anon_sym_LT] = ACTIONS(4684), + [anon_sym_GT] = ACTIONS(4684), + [anon_sym_GT_GT] = ACTIONS(3854), + [anon_sym_AMP_GT] = ACTIONS(4684), + [anon_sym_AMP_GT_GT] = ACTIONS(3854), + [anon_sym_LT_AMP] = ACTIONS(3854), + [anon_sym_GT_AMP] = ACTIONS(3854), + [anon_sym_LT_LT] = ACTIONS(4684), + [anon_sym_LT_LT_DASH] = ACTIONS(3854), + [anon_sym_LT_LT_LT] = ACTIONS(3854), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_comment] = ACTIONS(48), + }, + [1613] = { + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(1157), + [sym_variable_name] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_PIPE_AMP] = ACTIONS(1157), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_GT_GT] = ACTIONS(1157), + [anon_sym_AMP_GT] = ACTIONS(2079), + [anon_sym_AMP_GT_GT] = ACTIONS(1157), + [anon_sym_LT_AMP] = ACTIONS(1157), + [anon_sym_GT_AMP] = ACTIONS(1157), + [sym__special_characters] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_raw_string] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(2079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1157), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(1157), + [anon_sym_LT_LPAREN] = ACTIONS(1157), + [anon_sym_GT_LPAREN] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1159), + }, + [1614] = { + [aux_sym_concatenation_repeat1] = STATE(1614), + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(4686), + [sym_variable_name] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_PIPE_AMP] = ACTIONS(1157), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_GT_GT] = ACTIONS(1157), + [anon_sym_AMP_GT] = ACTIONS(2079), + [anon_sym_AMP_GT_GT] = ACTIONS(1157), + [anon_sym_LT_AMP] = ACTIONS(1157), + [anon_sym_GT_AMP] = ACTIONS(1157), + [sym__special_characters] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym_raw_string] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(2079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1157), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(1157), + [anon_sym_LT_LPAREN] = ACTIONS(1157), + [anon_sym_GT_LPAREN] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1159), + }, + [1615] = { + [sym_file_descriptor] = ACTIONS(1196), + [sym__concat] = ACTIONS(1196), + [sym_variable_name] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_PIPE_AMP] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_PIPE_PIPE] = ACTIONS(2084), + [anon_sym_LT] = ACTIONS(2084), + [anon_sym_GT] = ACTIONS(2084), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_AMP_GT] = ACTIONS(2084), + [anon_sym_AMP_GT_GT] = ACTIONS(1196), + [anon_sym_LT_AMP] = ACTIONS(1196), + [anon_sym_GT_AMP] = ACTIONS(1196), + [sym__special_characters] = ACTIONS(2084), + [anon_sym_DQUOTE] = ACTIONS(1196), + [sym_raw_string] = ACTIONS(1196), + [anon_sym_DOLLAR] = ACTIONS(2084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [anon_sym_LT_LPAREN] = ACTIONS(1196), + [anon_sym_GT_LPAREN] = ACTIONS(1196), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1198), + }, + [1616] = { + [sym_concatenation] = STATE(2040), + [sym_string] = STATE(2039), + [sym_simple_expansion] = STATE(2039), + [sym_expansion] = STATE(2039), + [sym_command_substitution] = STATE(2039), + [sym_process_substitution] = STATE(2039), + [anon_sym_RBRACE] = ACTIONS(4689), + [sym__special_characters] = ACTIONS(4691), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4693), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4695), + }, + [1617] = { + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(1241), + [sym_variable_name] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_PIPE_AMP] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1241), + [anon_sym_PIPE_PIPE] = ACTIONS(2094), + [anon_sym_LT] = ACTIONS(2094), + [anon_sym_GT] = ACTIONS(2094), + [anon_sym_GT_GT] = ACTIONS(1241), + [anon_sym_AMP_GT] = ACTIONS(2094), + [anon_sym_AMP_GT_GT] = ACTIONS(1241), + [anon_sym_LT_AMP] = ACTIONS(1241), + [anon_sym_GT_AMP] = ACTIONS(1241), + [sym__special_characters] = ACTIONS(2094), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_raw_string] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(2094), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1241), + [anon_sym_BQUOTE] = ACTIONS(1241), + [anon_sym_LT_LPAREN] = ACTIONS(1241), + [anon_sym_GT_LPAREN] = ACTIONS(1241), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1243), + }, + [1618] = { + [sym_concatenation] = STATE(2044), + [sym_string] = STATE(2043), + [sym_simple_expansion] = STATE(2043), + [sym_expansion] = STATE(2043), + [sym_command_substitution] = STATE(2043), + [sym_process_substitution] = STATE(2043), + [anon_sym_RBRACE] = ACTIONS(4697), + [sym__special_characters] = ACTIONS(4699), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4701), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4703), + }, + [1619] = { + [anon_sym_EQ] = ACTIONS(4705), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1620] = { + [anon_sym_RBRACE] = ACTIONS(4707), + [anon_sym_EQ] = ACTIONS(4709), + [anon_sym_COLON] = ACTIONS(4711), + [anon_sym_COLON_QMARK] = ACTIONS(4709), + [anon_sym_COLON_DASH] = ACTIONS(4709), + [anon_sym_PERCENT] = ACTIONS(4709), + [anon_sym_SLASH] = ACTIONS(4709), + [anon_sym_DASH] = ACTIONS(4709), + [sym_comment] = ACTIONS(48), + }, + [1621] = { + [anon_sym_RBRACE] = ACTIONS(4713), + [anon_sym_EQ] = ACTIONS(4715), + [anon_sym_COLON] = ACTIONS(4717), + [anon_sym_COLON_QMARK] = ACTIONS(4715), + [anon_sym_COLON_DASH] = ACTIONS(4715), + [anon_sym_PERCENT] = ACTIONS(4715), + [anon_sym_SLASH] = ACTIONS(4715), + [anon_sym_DASH] = ACTIONS(4715), + [sym_comment] = ACTIONS(48), + }, + [1622] = { + [anon_sym_RBRACE] = ACTIONS(4689), + [anon_sym_EQ] = ACTIONS(4705), + [anon_sym_COLON] = ACTIONS(4719), + [anon_sym_COLON_QMARK] = ACTIONS(4705), + [anon_sym_COLON_DASH] = ACTIONS(4705), + [anon_sym_PERCENT] = ACTIONS(4705), + [anon_sym_SLASH] = ACTIONS(4705), + [anon_sym_DASH] = ACTIONS(4705), + [sym_comment] = ACTIONS(48), + }, + [1623] = { + [sym_file_descriptor] = ACTIONS(1269), + [sym__concat] = ACTIONS(1269), + [sym_variable_name] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_PIPE_AMP] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_GT] = ACTIONS(2120), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_AMP_GT] = ACTIONS(2120), + [anon_sym_AMP_GT_GT] = ACTIONS(1269), + [anon_sym_LT_AMP] = ACTIONS(1269), + [anon_sym_GT_AMP] = ACTIONS(1269), + [sym__special_characters] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(1269), + [sym_raw_string] = ACTIONS(1269), + [anon_sym_DOLLAR] = ACTIONS(2120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1269), + [anon_sym_BQUOTE] = ACTIONS(1269), + [anon_sym_LT_LPAREN] = ACTIONS(1269), + [anon_sym_GT_LPAREN] = ACTIONS(1269), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1271), + }, + [1624] = { + [sym_concatenation] = STATE(2053), + [sym_string] = STATE(2052), + [sym_simple_expansion] = STATE(2052), + [sym_expansion] = STATE(2052), + [sym_command_substitution] = STATE(2052), + [sym_process_substitution] = STATE(2052), + [anon_sym_RBRACE] = ACTIONS(4721), + [sym__special_characters] = ACTIONS(4723), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4725), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4727), + }, + [1625] = { + [sym_file_descriptor] = ACTIONS(1281), + [sym__concat] = ACTIONS(1281), + [sym_variable_name] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(2130), + [anon_sym_LT] = ACTIONS(2130), + [anon_sym_GT] = ACTIONS(2130), + [anon_sym_GT_GT] = ACTIONS(1281), + [anon_sym_AMP_GT] = ACTIONS(2130), + [anon_sym_AMP_GT_GT] = ACTIONS(1281), + [anon_sym_LT_AMP] = ACTIONS(1281), + [anon_sym_GT_AMP] = ACTIONS(1281), + [sym__special_characters] = ACTIONS(2130), + [anon_sym_DQUOTE] = ACTIONS(1281), + [sym_raw_string] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(2130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1281), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1283), + }, + [1626] = { + [sym_file_descriptor] = ACTIONS(1379), + [sym__concat] = ACTIONS(1379), + [sym_variable_name] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_PIPE_AMP] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(2132), + [anon_sym_LT] = ACTIONS(2132), + [anon_sym_GT] = ACTIONS(2132), + [anon_sym_GT_GT] = ACTIONS(1379), + [anon_sym_AMP_GT] = ACTIONS(2132), + [anon_sym_AMP_GT_GT] = ACTIONS(1379), + [anon_sym_LT_AMP] = ACTIONS(1379), + [anon_sym_GT_AMP] = ACTIONS(1379), + [sym__special_characters] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(1379), + [sym_raw_string] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(2132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1379), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1379), + [anon_sym_BQUOTE] = ACTIONS(1379), + [anon_sym_LT_LPAREN] = ACTIONS(1379), + [anon_sym_GT_LPAREN] = ACTIONS(1379), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1381), + }, + [1627] = { + [sym_file_descriptor] = ACTIONS(1513), + [sym__concat] = ACTIONS(1513), + [sym_variable_name] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_PIPE_AMP] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(2134), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_GT] = ACTIONS(2134), + [anon_sym_GT_GT] = ACTIONS(1513), + [anon_sym_AMP_GT] = ACTIONS(2134), + [anon_sym_AMP_GT_GT] = ACTIONS(1513), + [anon_sym_LT_AMP] = ACTIONS(1513), + [anon_sym_GT_AMP] = ACTIONS(1513), + [sym__special_characters] = ACTIONS(2134), + [anon_sym_DQUOTE] = ACTIONS(1513), + [sym_raw_string] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(2134), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1513), + [anon_sym_BQUOTE] = ACTIONS(1513), + [anon_sym_LT_LPAREN] = ACTIONS(1513), + [anon_sym_GT_LPAREN] = ACTIONS(1513), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1515), + }, + [1628] = { + [sym_file_redirect] = STATE(1977), + [sym_file_descriptor] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(4555), + [anon_sym_PIPE_AMP] = ACTIONS(4557), + [anon_sym_AMP_AMP] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_GT] = ACTIONS(2527), + [anon_sym_GT_GT] = ACTIONS(2529), + [anon_sym_AMP_GT] = ACTIONS(2527), + [anon_sym_AMP_GT_GT] = ACTIONS(2529), + [anon_sym_LT_AMP] = ACTIONS(2529), + [anon_sym_GT_AMP] = ACTIONS(2529), + [anon_sym_BQUOTE] = ACTIONS(4557), + [sym_comment] = ACTIONS(48), + }, + [1629] = { + [sym_concatenation] = STATE(1980), + [sym_string] = STATE(2055), + [sym_simple_expansion] = STATE(2055), + [sym_expansion] = STATE(2055), + [sym_command_substitution] = STATE(2055), + [sym_process_substitution] = STATE(2055), + [sym__special_characters] = ACTIONS(4729), + [anon_sym_DQUOTE] = ACTIONS(3679), + [sym_raw_string] = ACTIONS(4731), + [anon_sym_DOLLAR] = ACTIONS(3683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3687), + [anon_sym_BQUOTE] = ACTIONS(3689), + [anon_sym_LT_LPAREN] = ACTIONS(3691), + [anon_sym_GT_LPAREN] = ACTIONS(3691), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4733), + }, + [1630] = { + [aux_sym_concatenation_repeat1] = STATE(2057), + [sym__concat] = ACTIONS(4735), + [anon_sym_PIPE] = ACTIONS(450), + [anon_sym_PIPE_AMP] = ACTIONS(446), + [anon_sym_AMP_AMP] = ACTIONS(446), + [anon_sym_PIPE_PIPE] = ACTIONS(446), + [anon_sym_BQUOTE] = ACTIONS(446), + [sym_comment] = ACTIONS(48), + }, + [1631] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(2059), + [anon_sym_DQUOTE] = ACTIONS(4737), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [1632] = { + [aux_sym_concatenation_repeat1] = STATE(2057), + [sym__concat] = ACTIONS(4735), + [anon_sym_PIPE] = ACTIONS(456), + [anon_sym_PIPE_AMP] = ACTIONS(454), + [anon_sym_AMP_AMP] = ACTIONS(454), + [anon_sym_PIPE_PIPE] = ACTIONS(454), + [anon_sym_BQUOTE] = ACTIONS(454), + [sym_comment] = ACTIONS(48), + }, + [1633] = { + [anon_sym_DOLLAR] = ACTIONS(4739), + [anon_sym_DASH] = ACTIONS(4739), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4741), + [anon_sym_STAR] = ACTIONS(4739), + [anon_sym_AT] = ACTIONS(4739), + [anon_sym_QMARK] = ACTIONS(4739), + [anon_sym_0] = ACTIONS(4743), + [anon_sym__] = ACTIONS(4743), + }, + [1634] = { + [sym_subscript] = STATE(2066), + [sym_variable_name] = ACTIONS(4745), + [anon_sym_DOLLAR] = ACTIONS(4747), + [anon_sym_POUND] = ACTIONS(4749), + [anon_sym_DASH] = ACTIONS(4747), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4751), + [anon_sym_STAR] = ACTIONS(4747), + [anon_sym_AT] = ACTIONS(4747), + [anon_sym_QMARK] = ACTIONS(4747), + [anon_sym_0] = ACTIONS(4753), + [anon_sym__] = ACTIONS(4753), + }, + [1635] = { + [sym_for_statement] = STATE(2067), + [sym_while_statement] = STATE(2067), + [sym_if_statement] = STATE(2067), + [sym_case_statement] = STATE(2067), + [sym_function_definition] = STATE(2067), + [sym_subshell] = STATE(2067), + [sym_pipeline] = STATE(2067), + [sym_list] = STATE(2067), + [sym_command] = STATE(2067), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(2068), + [sym_declaration_command] = STATE(2067), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [1636] = { + [sym_for_statement] = STATE(2069), + [sym_while_statement] = STATE(2069), + [sym_if_statement] = STATE(2069), + [sym_case_statement] = STATE(2069), + [sym_function_definition] = STATE(2069), + [sym_subshell] = STATE(2069), + [sym_pipeline] = STATE(2069), + [sym_list] = STATE(2069), + [sym_command] = STATE(2069), + [sym_command_name] = STATE(134), + [sym_variable_assignment] = STATE(2070), + [sym_declaration_command] = STATE(2069), + [sym_subscript] = STATE(136), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(126), + [sym_simple_expansion] = STATE(126), + [sym_expansion] = STATE(126), + [sym_command_substitution] = STATE(126), + [sym_process_substitution] = STATE(126), + [aux_sym_command_repeat1] = STATE(137), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(206), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(210), + [anon_sym_typeset] = ACTIONS(210), + [anon_sym_export] = ACTIONS(210), + [anon_sym_readonly] = ACTIONS(210), + [anon_sym_local] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(212), + [anon_sym_DQUOTE] = ACTIONS(214), + [sym_raw_string] = ACTIONS(216), + [anon_sym_DOLLAR] = ACTIONS(218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(222), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(226), + [anon_sym_GT_LPAREN] = ACTIONS(226), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(228), + }, + [1637] = { + [sym_for_statement] = STATE(2071), + [sym_while_statement] = STATE(2071), + [sym_if_statement] = STATE(2071), + [sym_case_statement] = STATE(2071), + [sym_function_definition] = STATE(2071), + [sym_subshell] = STATE(2071), + [sym_pipeline] = STATE(2071), + [sym_list] = STATE(2071), + [sym_command] = STATE(2071), + [sym_command_name] = STATE(116), + [sym_variable_assignment] = STATE(2072), + [sym_declaration_command] = STATE(2071), + [sym_subscript] = STATE(118), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(108), + [sym_simple_expansion] = STATE(108), + [sym_expansion] = STATE(108), + [sym_command_substitution] = STATE(108), + [sym_process_substitution] = STATE(108), + [aux_sym_command_repeat1] = STATE(120), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(172), + [anon_sym_for] = ACTIONS(174), + [anon_sym_while] = ACTIONS(176), + [anon_sym_if] = ACTIONS(178), + [anon_sym_case] = ACTIONS(180), + [anon_sym_function] = ACTIONS(182), + [anon_sym_LPAREN] = ACTIONS(184), + [anon_sym_declare] = ACTIONS(186), + [anon_sym_typeset] = ACTIONS(186), + [anon_sym_export] = ACTIONS(186), + [anon_sym_readonly] = ACTIONS(186), + [anon_sym_local] = ACTIONS(186), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [sym_raw_string] = ACTIONS(192), + [anon_sym_DOLLAR] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(204), + }, + [1638] = { + [sym_string] = STATE(2073), + [sym_simple_expansion] = STATE(2073), + [sym_expansion] = STATE(2073), + [sym_command_substitution] = STATE(2073), + [sym_process_substitution] = STATE(2073), + [sym__special_characters] = ACTIONS(4755), + [anon_sym_DQUOTE] = ACTIONS(2533), + [sym_raw_string] = ACTIONS(4757), + [anon_sym_DOLLAR] = ACTIONS(2537), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2539), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2541), + [anon_sym_BQUOTE] = ACTIONS(2543), + [anon_sym_LT_LPAREN] = ACTIONS(2545), + [anon_sym_GT_LPAREN] = ACTIONS(2545), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4755), + }, + [1639] = { + [aux_sym_concatenation_repeat1] = STATE(2074), + [sym__concat] = ACTIONS(3695), + [sym_variable_name] = ACTIONS(478), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_PIPE_AMP] = ACTIONS(478), + [anon_sym_AMP_AMP] = ACTIONS(478), + [anon_sym_PIPE_PIPE] = ACTIONS(1117), + [anon_sym_BQUOTE] = ACTIONS(478), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1117), + [sym_word] = ACTIONS(480), + }, + [1640] = { + [sym__concat] = ACTIONS(482), + [sym_variable_name] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(1119), + [anon_sym_PIPE_AMP] = ACTIONS(482), + [anon_sym_AMP_AMP] = ACTIONS(482), + [anon_sym_PIPE_PIPE] = ACTIONS(1119), + [anon_sym_BQUOTE] = ACTIONS(482), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1119), + [sym_word] = ACTIONS(484), + }, + [1641] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(4759), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [1642] = { + [sym__concat] = ACTIONS(510), + [sym_variable_name] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_PIPE_AMP] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_PIPE_PIPE] = ACTIONS(1123), + [anon_sym_BQUOTE] = ACTIONS(510), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1123), + [sym_word] = ACTIONS(512), + }, + [1643] = { + [sym__concat] = ACTIONS(514), + [sym_variable_name] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_PIPE_AMP] = ACTIONS(514), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(1125), + [anon_sym_BQUOTE] = ACTIONS(514), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1125), + [sym_word] = ACTIONS(516), + }, + [1644] = { + [anon_sym_EQ] = ACTIONS(4761), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1645] = { + [anon_sym_RBRACE] = ACTIONS(4763), + [anon_sym_EQ] = ACTIONS(4765), + [anon_sym_COLON] = ACTIONS(4767), + [anon_sym_COLON_QMARK] = ACTIONS(4765), + [anon_sym_COLON_DASH] = ACTIONS(4765), + [anon_sym_PERCENT] = ACTIONS(4765), + [anon_sym_SLASH] = ACTIONS(4765), + [anon_sym_DASH] = ACTIONS(4765), + [sym_comment] = ACTIONS(48), + }, + [1646] = { + [sym_subscript] = STATE(2082), + [sym_variable_name] = ACTIONS(4769), + [anon_sym_DOLLAR] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4771), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4771), + [anon_sym_AT] = ACTIONS(4771), + [anon_sym_QMARK] = ACTIONS(4771), + [anon_sym_0] = ACTIONS(4775), + [anon_sym__] = ACTIONS(4775), + }, + [1647] = { + [anon_sym_RBRACE] = ACTIONS(4777), + [anon_sym_EQ] = ACTIONS(4779), + [anon_sym_COLON] = ACTIONS(4781), + [anon_sym_COLON_QMARK] = ACTIONS(4779), + [anon_sym_COLON_DASH] = ACTIONS(4779), + [anon_sym_PERCENT] = ACTIONS(4779), + [anon_sym_SLASH] = ACTIONS(4779), + [anon_sym_DASH] = ACTIONS(4779), + [sym_comment] = ACTIONS(48), + }, + [1648] = { + [anon_sym_RBRACE] = ACTIONS(4783), + [anon_sym_EQ] = ACTIONS(4761), + [anon_sym_COLON] = ACTIONS(4785), + [anon_sym_COLON_QMARK] = ACTIONS(4761), + [anon_sym_COLON_DASH] = ACTIONS(4761), + [anon_sym_PERCENT] = ACTIONS(4761), + [anon_sym_SLASH] = ACTIONS(4761), + [anon_sym_DASH] = ACTIONS(4761), + [sym_comment] = ACTIONS(48), + }, + [1649] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(4787), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1650] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(4787), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1651] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(4787), + [sym_comment] = ACTIONS(48), + }, + [1652] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(4787), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1653] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(4789), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1654] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(4789), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1655] = { + [sym_file_descriptor] = ACTIONS(3353), + [sym__concat] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(4381), + [anon_sym_PIPE_AMP] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_LT] = ACTIONS(4381), + [anon_sym_GT] = ACTIONS(4381), + [anon_sym_GT_GT] = ACTIONS(3353), + [anon_sym_AMP_GT] = ACTIONS(4381), + [anon_sym_AMP_GT_GT] = ACTIONS(3353), + [anon_sym_LT_AMP] = ACTIONS(3353), + [anon_sym_GT_AMP] = ACTIONS(3353), + [anon_sym_LT_LT] = ACTIONS(4381), + [anon_sym_LT_LT_DASH] = ACTIONS(3353), + [anon_sym_LT_LT_LT] = ACTIONS(3353), + [sym__special_characters] = ACTIONS(4381), + [anon_sym_DQUOTE] = ACTIONS(3353), + [sym_raw_string] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(4381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3353), + [anon_sym_BQUOTE] = ACTIONS(3353), + [anon_sym_LT_LPAREN] = ACTIONS(3353), + [anon_sym_GT_LPAREN] = ACTIONS(3353), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3355), + }, + [1656] = { + [sym_file_descriptor] = ACTIONS(3359), + [sym__concat] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(4383), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(4383), + [anon_sym_LT] = ACTIONS(4383), + [anon_sym_GT] = ACTIONS(4383), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_AMP_GT] = ACTIONS(4383), + [anon_sym_AMP_GT_GT] = ACTIONS(3359), + [anon_sym_LT_AMP] = ACTIONS(3359), + [anon_sym_GT_AMP] = ACTIONS(3359), + [anon_sym_LT_LT] = ACTIONS(4383), + [anon_sym_LT_LT_DASH] = ACTIONS(3359), + [anon_sym_LT_LT_LT] = ACTIONS(3359), + [sym__special_characters] = ACTIONS(4383), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(4383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [anon_sym_LT_LPAREN] = ACTIONS(3359), + [anon_sym_GT_LPAREN] = ACTIONS(3359), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3361), + }, + [1657] = { + [sym_file_descriptor] = ACTIONS(3401), + [sym__concat] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(4385), + [anon_sym_PIPE_AMP] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_PIPE_PIPE] = ACTIONS(4385), + [anon_sym_LT] = ACTIONS(4385), + [anon_sym_GT] = ACTIONS(4385), + [anon_sym_GT_GT] = ACTIONS(3401), + [anon_sym_AMP_GT] = ACTIONS(4385), + [anon_sym_AMP_GT_GT] = ACTIONS(3401), + [anon_sym_LT_AMP] = ACTIONS(3401), + [anon_sym_GT_AMP] = ACTIONS(3401), + [anon_sym_LT_LT] = ACTIONS(4385), + [anon_sym_LT_LT_DASH] = ACTIONS(3401), + [anon_sym_LT_LT_LT] = ACTIONS(3401), + [sym__special_characters] = ACTIONS(4385), + [anon_sym_DQUOTE] = ACTIONS(3401), + [sym_raw_string] = ACTIONS(3401), + [anon_sym_DOLLAR] = ACTIONS(4385), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3401), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3401), + [anon_sym_BQUOTE] = ACTIONS(3401), + [anon_sym_LT_LPAREN] = ACTIONS(3401), + [anon_sym_GT_LPAREN] = ACTIONS(3401), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3403), + }, + [1658] = { + [sym_file_descriptor] = ACTIONS(3405), + [sym__concat] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(4387), + [anon_sym_PIPE_AMP] = ACTIONS(3405), + [anon_sym_AMP_AMP] = ACTIONS(3405), + [anon_sym_PIPE_PIPE] = ACTIONS(4387), + [anon_sym_LT] = ACTIONS(4387), + [anon_sym_GT] = ACTIONS(4387), + [anon_sym_GT_GT] = ACTIONS(3405), + [anon_sym_AMP_GT] = ACTIONS(4387), + [anon_sym_AMP_GT_GT] = ACTIONS(3405), + [anon_sym_LT_AMP] = ACTIONS(3405), + [anon_sym_GT_AMP] = ACTIONS(3405), + [anon_sym_LT_LT] = ACTIONS(4387), + [anon_sym_LT_LT_DASH] = ACTIONS(3405), + [anon_sym_LT_LT_LT] = ACTIONS(3405), + [sym__special_characters] = ACTIONS(4387), + [anon_sym_DQUOTE] = ACTIONS(3405), + [sym_raw_string] = ACTIONS(3405), + [anon_sym_DOLLAR] = ACTIONS(4387), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3405), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3405), + [anon_sym_BQUOTE] = ACTIONS(3405), + [anon_sym_LT_LPAREN] = ACTIONS(3405), + [anon_sym_GT_LPAREN] = ACTIONS(3405), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3407), + }, + [1659] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4791), + [sym_comment] = ACTIONS(48), + }, + [1660] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4793), + [sym_comment] = ACTIONS(48), + }, + [1661] = { + [anon_sym_RBRACE] = ACTIONS(4793), + [sym_comment] = ACTIONS(48), + }, + [1662] = { + [sym_file_descriptor] = ACTIONS(3413), + [sym__concat] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(4393), + [anon_sym_PIPE_AMP] = ACTIONS(3413), + [anon_sym_AMP_AMP] = ACTIONS(3413), + [anon_sym_PIPE_PIPE] = ACTIONS(4393), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_GT_GT] = ACTIONS(3413), + [anon_sym_AMP_GT] = ACTIONS(4393), + [anon_sym_AMP_GT_GT] = ACTIONS(3413), + [anon_sym_LT_AMP] = ACTIONS(3413), + [anon_sym_GT_AMP] = ACTIONS(3413), + [anon_sym_LT_LT] = ACTIONS(4393), + [anon_sym_LT_LT_DASH] = ACTIONS(3413), + [anon_sym_LT_LT_LT] = ACTIONS(3413), + [sym__special_characters] = ACTIONS(4393), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR] = ACTIONS(4393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3413), + [anon_sym_BQUOTE] = ACTIONS(3413), + [anon_sym_LT_LPAREN] = ACTIONS(3413), + [anon_sym_GT_LPAREN] = ACTIONS(3413), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3415), + }, + [1663] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4795), + [sym_comment] = ACTIONS(48), + }, + [1664] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4797), + [sym_comment] = ACTIONS(48), + }, + [1665] = { + [anon_sym_RBRACE] = ACTIONS(4797), + [sym_comment] = ACTIONS(48), + }, + [1666] = { + [sym_file_descriptor] = ACTIONS(3421), + [sym__concat] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(4399), + [anon_sym_PIPE_AMP] = ACTIONS(3421), + [anon_sym_AMP_AMP] = ACTIONS(3421), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_GT] = ACTIONS(4399), + [anon_sym_GT_GT] = ACTIONS(3421), + [anon_sym_AMP_GT] = ACTIONS(4399), + [anon_sym_AMP_GT_GT] = ACTIONS(3421), + [anon_sym_LT_AMP] = ACTIONS(3421), + [anon_sym_GT_AMP] = ACTIONS(3421), + [anon_sym_LT_LT] = ACTIONS(4399), + [anon_sym_LT_LT_DASH] = ACTIONS(3421), + [anon_sym_LT_LT_LT] = ACTIONS(3421), + [sym__special_characters] = ACTIONS(4399), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_raw_string] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(4399), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3421), + [anon_sym_BQUOTE] = ACTIONS(3421), + [anon_sym_LT_LPAREN] = ACTIONS(3421), + [anon_sym_GT_LPAREN] = ACTIONS(3421), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3423), + }, + [1667] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4799), + [sym_comment] = ACTIONS(48), + }, + [1668] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4801), + [sym_comment] = ACTIONS(48), + }, + [1669] = { + [anon_sym_RBRACE] = ACTIONS(4801), + [sym_comment] = ACTIONS(48), + }, + [1670] = { + [sym_file_descriptor] = ACTIONS(3429), + [sym__concat] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(4405), + [anon_sym_PIPE_AMP] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(4405), + [anon_sym_LT] = ACTIONS(4405), + [anon_sym_GT] = ACTIONS(4405), + [anon_sym_GT_GT] = ACTIONS(3429), + [anon_sym_AMP_GT] = ACTIONS(4405), + [anon_sym_AMP_GT_GT] = ACTIONS(3429), + [anon_sym_LT_AMP] = ACTIONS(3429), + [anon_sym_GT_AMP] = ACTIONS(3429), + [anon_sym_LT_LT] = ACTIONS(4405), + [anon_sym_LT_LT_DASH] = ACTIONS(3429), + [anon_sym_LT_LT_LT] = ACTIONS(3429), + [sym__special_characters] = ACTIONS(4405), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym_raw_string] = ACTIONS(3429), + [anon_sym_DOLLAR] = ACTIONS(4405), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3429), + [anon_sym_BQUOTE] = ACTIONS(3429), + [anon_sym_LT_LPAREN] = ACTIONS(3429), + [anon_sym_GT_LPAREN] = ACTIONS(3429), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3431), + }, + [1671] = { + [sym_file_descriptor] = ACTIONS(3433), + [sym__concat] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_PIPE_AMP] = ACTIONS(3433), + [anon_sym_AMP_AMP] = ACTIONS(3433), + [anon_sym_PIPE_PIPE] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_GT_GT] = ACTIONS(3433), + [anon_sym_AMP_GT] = ACTIONS(4407), + [anon_sym_AMP_GT_GT] = ACTIONS(3433), + [anon_sym_LT_AMP] = ACTIONS(3433), + [anon_sym_GT_AMP] = ACTIONS(3433), + [anon_sym_LT_LT] = ACTIONS(4407), + [anon_sym_LT_LT_DASH] = ACTIONS(3433), + [anon_sym_LT_LT_LT] = ACTIONS(3433), + [sym__special_characters] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(3433), + [sym_raw_string] = ACTIONS(3433), + [anon_sym_DOLLAR] = ACTIONS(4407), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3433), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3433), + [anon_sym_BQUOTE] = ACTIONS(3433), + [anon_sym_LT_LPAREN] = ACTIONS(3433), + [anon_sym_GT_LPAREN] = ACTIONS(3433), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3435), + }, + [1672] = { + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_PIPE_AMP] = ACTIONS(1157), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_GT_GT] = ACTIONS(1157), + [anon_sym_AMP_GT] = ACTIONS(2079), + [anon_sym_AMP_GT_GT] = ACTIONS(1157), + [anon_sym_LT_AMP] = ACTIONS(1157), + [anon_sym_GT_AMP] = ACTIONS(1157), + [anon_sym_LT_LT] = ACTIONS(2079), + [anon_sym_LT_LT_DASH] = ACTIONS(1157), + [anon_sym_LT_LT_LT] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + }, + [1673] = { + [aux_sym_concatenation_repeat1] = STATE(1673), + [sym_file_descriptor] = ACTIONS(1157), + [sym__concat] = ACTIONS(4803), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_PIPE_AMP] = ACTIONS(1157), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(1157), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_GT] = ACTIONS(2079), + [anon_sym_GT_GT] = ACTIONS(1157), + [anon_sym_AMP_GT] = ACTIONS(2079), + [anon_sym_AMP_GT_GT] = ACTIONS(1157), + [anon_sym_LT_AMP] = ACTIONS(1157), + [anon_sym_GT_AMP] = ACTIONS(1157), + [anon_sym_LT_LT] = ACTIONS(2079), + [anon_sym_LT_LT_DASH] = ACTIONS(1157), + [anon_sym_LT_LT_LT] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + }, + [1674] = { + [sym_file_descriptor] = ACTIONS(1196), + [sym__concat] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_PIPE_AMP] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_PIPE_PIPE] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(2084), + [anon_sym_GT] = ACTIONS(2084), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_AMP_GT] = ACTIONS(2084), + [anon_sym_AMP_GT_GT] = ACTIONS(1196), + [anon_sym_LT_AMP] = ACTIONS(1196), + [anon_sym_GT_AMP] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(2084), + [anon_sym_LT_LT_DASH] = ACTIONS(1196), + [anon_sym_LT_LT_LT] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_comment] = ACTIONS(48), + }, + [1675] = { + [sym_concatenation] = STATE(2097), + [sym_string] = STATE(2096), + [sym_simple_expansion] = STATE(2096), + [sym_expansion] = STATE(2096), + [sym_command_substitution] = STATE(2096), + [sym_process_substitution] = STATE(2096), + [anon_sym_RBRACE] = ACTIONS(4806), + [sym__special_characters] = ACTIONS(4808), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4810), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4812), + }, + [1676] = { + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_PIPE_AMP] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1241), + [anon_sym_PIPE_PIPE] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(2094), + [anon_sym_GT] = ACTIONS(2094), + [anon_sym_GT_GT] = ACTIONS(1241), + [anon_sym_AMP_GT] = ACTIONS(2094), + [anon_sym_AMP_GT_GT] = ACTIONS(1241), + [anon_sym_LT_AMP] = ACTIONS(1241), + [anon_sym_GT_AMP] = ACTIONS(1241), + [anon_sym_LT_LT] = ACTIONS(2094), + [anon_sym_LT_LT_DASH] = ACTIONS(1241), + [anon_sym_LT_LT_LT] = ACTIONS(1241), + [anon_sym_BQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(48), + }, + [1677] = { + [sym_concatenation] = STATE(2101), + [sym_string] = STATE(2100), + [sym_simple_expansion] = STATE(2100), + [sym_expansion] = STATE(2100), + [sym_command_substitution] = STATE(2100), + [sym_process_substitution] = STATE(2100), + [anon_sym_RBRACE] = ACTIONS(4814), + [sym__special_characters] = ACTIONS(4816), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4818), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4820), + }, + [1678] = { + [anon_sym_EQ] = ACTIONS(4822), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1679] = { + [anon_sym_RBRACE] = ACTIONS(4824), + [anon_sym_EQ] = ACTIONS(4826), + [anon_sym_COLON] = ACTIONS(4828), + [anon_sym_COLON_QMARK] = ACTIONS(4826), + [anon_sym_COLON_DASH] = ACTIONS(4826), + [anon_sym_PERCENT] = ACTIONS(4826), + [anon_sym_SLASH] = ACTIONS(4826), + [anon_sym_DASH] = ACTIONS(4826), + [sym_comment] = ACTIONS(48), + }, + [1680] = { + [anon_sym_RBRACE] = ACTIONS(4830), + [anon_sym_EQ] = ACTIONS(4832), + [anon_sym_COLON] = ACTIONS(4834), + [anon_sym_COLON_QMARK] = ACTIONS(4832), + [anon_sym_COLON_DASH] = ACTIONS(4832), + [anon_sym_PERCENT] = ACTIONS(4832), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4832), + [sym_comment] = ACTIONS(48), + }, + [1681] = { + [anon_sym_RBRACE] = ACTIONS(4806), + [anon_sym_EQ] = ACTIONS(4822), + [anon_sym_COLON] = ACTIONS(4836), + [anon_sym_COLON_QMARK] = ACTIONS(4822), + [anon_sym_COLON_DASH] = ACTIONS(4822), + [anon_sym_PERCENT] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4822), + [anon_sym_DASH] = ACTIONS(4822), + [sym_comment] = ACTIONS(48), + }, + [1682] = { + [sym_file_descriptor] = ACTIONS(1269), + [sym__concat] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_PIPE_AMP] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_GT] = ACTIONS(2120), + [anon_sym_GT_GT] = ACTIONS(1269), + [anon_sym_AMP_GT] = ACTIONS(2120), + [anon_sym_AMP_GT_GT] = ACTIONS(1269), + [anon_sym_LT_AMP] = ACTIONS(1269), + [anon_sym_GT_AMP] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(2120), + [anon_sym_LT_LT_DASH] = ACTIONS(1269), + [anon_sym_LT_LT_LT] = ACTIONS(1269), + [anon_sym_BQUOTE] = ACTIONS(1269), + [sym_comment] = ACTIONS(48), + }, + [1683] = { + [sym_concatenation] = STATE(2110), + [sym_string] = STATE(2109), + [sym_simple_expansion] = STATE(2109), + [sym_expansion] = STATE(2109), + [sym_command_substitution] = STATE(2109), + [sym_process_substitution] = STATE(2109), + [anon_sym_RBRACE] = ACTIONS(4838), + [sym__special_characters] = ACTIONS(4840), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4842), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4844), + }, + [1684] = { + [sym_file_descriptor] = ACTIONS(1281), + [sym__concat] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(2130), + [anon_sym_GT] = ACTIONS(2130), + [anon_sym_GT_GT] = ACTIONS(1281), + [anon_sym_AMP_GT] = ACTIONS(2130), + [anon_sym_AMP_GT_GT] = ACTIONS(1281), + [anon_sym_LT_AMP] = ACTIONS(1281), + [anon_sym_GT_AMP] = ACTIONS(1281), + [anon_sym_LT_LT] = ACTIONS(2130), + [anon_sym_LT_LT_DASH] = ACTIONS(1281), + [anon_sym_LT_LT_LT] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1281), + [sym_comment] = ACTIONS(48), + }, + [1685] = { + [sym_file_descriptor] = ACTIONS(1379), + [sym__concat] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_PIPE_AMP] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(2132), + [anon_sym_GT] = ACTIONS(2132), + [anon_sym_GT_GT] = ACTIONS(1379), + [anon_sym_AMP_GT] = ACTIONS(2132), + [anon_sym_AMP_GT_GT] = ACTIONS(1379), + [anon_sym_LT_AMP] = ACTIONS(1379), + [anon_sym_GT_AMP] = ACTIONS(1379), + [anon_sym_LT_LT] = ACTIONS(2132), + [anon_sym_LT_LT_DASH] = ACTIONS(1379), + [anon_sym_LT_LT_LT] = ACTIONS(1379), + [anon_sym_BQUOTE] = ACTIONS(1379), + [sym_comment] = ACTIONS(48), + }, + [1686] = { + [sym_file_descriptor] = ACTIONS(1513), + [sym__concat] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_PIPE_AMP] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_GT] = ACTIONS(2134), + [anon_sym_GT_GT] = ACTIONS(1513), + [anon_sym_AMP_GT] = ACTIONS(2134), + [anon_sym_AMP_GT_GT] = ACTIONS(1513), + [anon_sym_LT_AMP] = ACTIONS(1513), + [anon_sym_GT_AMP] = ACTIONS(1513), + [anon_sym_LT_LT] = ACTIONS(2134), + [anon_sym_LT_LT_DASH] = ACTIONS(1513), + [anon_sym_LT_LT_LT] = ACTIONS(1513), + [anon_sym_BQUOTE] = ACTIONS(1513), + [sym_comment] = ACTIONS(48), + }, + [1687] = { + [sym_file_descriptor] = ACTIONS(2176), + [sym__concat] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_SEMI_SEMI] = ACTIONS(2178), + [anon_sym_PIPE_AMP] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2178), + [anon_sym_PIPE_PIPE] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2178), + [anon_sym_AMP_GT] = ACTIONS(2178), + [anon_sym_AMP_GT_GT] = ACTIONS(2178), + [anon_sym_LT_AMP] = ACTIONS(2178), + [anon_sym_GT_AMP] = ACTIONS(2178), + [anon_sym_LT_LT] = ACTIONS(2178), + [anon_sym_LT_LT_DASH] = ACTIONS(2178), + [anon_sym_LT_LT_LT] = ACTIONS(2178), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_LF] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + }, + [1688] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4846), + [sym_comment] = ACTIONS(48), + }, + [1689] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4848), + [sym_comment] = ACTIONS(48), + }, + [1690] = { + [anon_sym_RBRACE] = ACTIONS(4848), + [sym_comment] = ACTIONS(48), + }, + [1691] = { + [sym_file_descriptor] = ACTIONS(2214), + [sym__concat] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2216), + [anon_sym_SEMI_SEMI] = ACTIONS(2216), + [anon_sym_PIPE_AMP] = ACTIONS(2216), + [anon_sym_AMP_AMP] = ACTIONS(2216), + [anon_sym_PIPE_PIPE] = ACTIONS(2216), + [anon_sym_LT] = ACTIONS(2216), + [anon_sym_GT] = ACTIONS(2216), + [anon_sym_GT_GT] = ACTIONS(2216), + [anon_sym_AMP_GT] = ACTIONS(2216), + [anon_sym_AMP_GT_GT] = ACTIONS(2216), + [anon_sym_LT_AMP] = ACTIONS(2216), + [anon_sym_GT_AMP] = ACTIONS(2216), + [anon_sym_LT_LT] = ACTIONS(2216), + [anon_sym_LT_LT_DASH] = ACTIONS(2216), + [anon_sym_LT_LT_LT] = ACTIONS(2216), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_LF] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2216), + }, + [1692] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4850), + [sym_comment] = ACTIONS(48), + }, + [1693] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4852), + [sym_comment] = ACTIONS(48), + }, + [1694] = { + [anon_sym_RBRACE] = ACTIONS(4852), + [sym_comment] = ACTIONS(48), + }, + [1695] = { + [sym_concatenation] = STATE(2117), + [sym_string] = STATE(2116), + [sym_simple_expansion] = STATE(2116), + [sym_expansion] = STATE(2116), + [sym_command_substitution] = STATE(2116), + [sym_process_substitution] = STATE(2116), + [anon_sym_RBRACE] = ACTIONS(4848), + [sym__special_characters] = ACTIONS(4854), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4856), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4858), + }, + [1696] = { + [sym_file_descriptor] = ACTIONS(2228), + [sym__concat] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2230), + [anon_sym_SEMI_SEMI] = ACTIONS(2230), + [anon_sym_PIPE_AMP] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2230), + [anon_sym_PIPE_PIPE] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2230), + [anon_sym_GT_GT] = ACTIONS(2230), + [anon_sym_AMP_GT] = ACTIONS(2230), + [anon_sym_AMP_GT_GT] = ACTIONS(2230), + [anon_sym_LT_AMP] = ACTIONS(2230), + [anon_sym_GT_AMP] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(2230), + [anon_sym_LT_LT_DASH] = ACTIONS(2230), + [anon_sym_LT_LT_LT] = ACTIONS(2230), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_LF] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2230), + }, + [1697] = { + [sym_concatenation] = STATE(2121), + [sym_string] = STATE(2120), + [sym_simple_expansion] = STATE(2120), + [sym_expansion] = STATE(2120), + [sym_command_substitution] = STATE(2120), + [sym_process_substitution] = STATE(2120), + [anon_sym_RBRACE] = ACTIONS(4860), + [sym__special_characters] = ACTIONS(4862), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4864), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4866), + }, + [1698] = { + [sym_file_descriptor] = ACTIONS(2240), + [sym__concat] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_SEMI_SEMI] = ACTIONS(2242), + [anon_sym_PIPE_AMP] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2242), + [anon_sym_GT_GT] = ACTIONS(2242), + [anon_sym_AMP_GT] = ACTIONS(2242), + [anon_sym_AMP_GT_GT] = ACTIONS(2242), + [anon_sym_LT_AMP] = ACTIONS(2242), + [anon_sym_GT_AMP] = ACTIONS(2242), + [anon_sym_LT_LT] = ACTIONS(2242), + [anon_sym_LT_LT_DASH] = ACTIONS(2242), + [anon_sym_LT_LT_LT] = ACTIONS(2242), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_LF] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + }, + [1699] = { + [sym_concatenation] = STATE(2125), + [sym_string] = STATE(2124), + [sym_simple_expansion] = STATE(2124), + [sym_expansion] = STATE(2124), + [sym_command_substitution] = STATE(2124), + [sym_process_substitution] = STATE(2124), + [anon_sym_RBRACE] = ACTIONS(4868), + [sym__special_characters] = ACTIONS(4870), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4872), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4874), + }, + [1700] = { + [sym_file_descriptor] = ACTIONS(2252), + [sym__concat] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_SEMI_SEMI] = ACTIONS(2254), + [anon_sym_PIPE_AMP] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_GT_GT] = ACTIONS(2254), + [anon_sym_AMP_GT] = ACTIONS(2254), + [anon_sym_AMP_GT_GT] = ACTIONS(2254), + [anon_sym_LT_AMP] = ACTIONS(2254), + [anon_sym_GT_AMP] = ACTIONS(2254), + [anon_sym_LT_LT] = ACTIONS(2254), + [anon_sym_LT_LT_DASH] = ACTIONS(2254), + [anon_sym_LT_LT_LT] = ACTIONS(2254), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LF] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + }, + [1701] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4876), + [sym_comment] = ACTIONS(48), + }, + [1702] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4878), + [sym_comment] = ACTIONS(48), + }, + [1703] = { + [anon_sym_RBRACE] = ACTIONS(4878), + [sym_comment] = ACTIONS(48), + }, + [1704] = { + [sym_concatenation] = STATE(2131), + [sym_string] = STATE(2130), + [sym_simple_expansion] = STATE(2130), + [sym_expansion] = STATE(2130), + [sym_command_substitution] = STATE(2130), + [sym_process_substitution] = STATE(2130), + [anon_sym_RBRACE] = ACTIONS(4880), + [sym__special_characters] = ACTIONS(4882), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4884), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4886), + }, + [1705] = { + [sym__heredoc_middle] = ACTIONS(1241), + [sym__heredoc_end] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(2094), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1241), + [sym_comment] = ACTIONS(48), + }, + [1706] = { + [sym_concatenation] = STATE(2135), + [sym_string] = STATE(2134), + [sym_simple_expansion] = STATE(2134), + [sym_expansion] = STATE(2134), + [sym_command_substitution] = STATE(2134), + [sym_process_substitution] = STATE(2134), + [anon_sym_RBRACE] = ACTIONS(4888), + [sym__special_characters] = ACTIONS(4890), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4892), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4894), + }, + [1707] = { + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1708] = { + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_EQ] = ACTIONS(4900), + [anon_sym_COLON] = ACTIONS(4902), + [anon_sym_COLON_QMARK] = ACTIONS(4900), + [anon_sym_COLON_DASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [sym_comment] = ACTIONS(48), + }, + [1709] = { + [anon_sym_RBRACE] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(4906), + [anon_sym_COLON] = ACTIONS(4908), + [anon_sym_COLON_QMARK] = ACTIONS(4906), + [anon_sym_COLON_DASH] = ACTIONS(4906), + [anon_sym_PERCENT] = ACTIONS(4906), + [anon_sym_SLASH] = ACTIONS(4906), + [anon_sym_DASH] = ACTIONS(4906), + [sym_comment] = ACTIONS(48), + }, + [1710] = { + [anon_sym_RBRACE] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_COLON] = ACTIONS(4910), + [anon_sym_COLON_QMARK] = ACTIONS(4896), + [anon_sym_COLON_DASH] = ACTIONS(4896), + [anon_sym_PERCENT] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [sym_comment] = ACTIONS(48), + }, + [1711] = { + [sym__heredoc_middle] = ACTIONS(1269), + [sym__heredoc_end] = ACTIONS(1269), + [anon_sym_DOLLAR] = ACTIONS(2120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [sym_comment] = ACTIONS(48), + }, + [1712] = { + [sym_concatenation] = STATE(2144), + [sym_string] = STATE(2143), + [sym_simple_expansion] = STATE(2143), + [sym_expansion] = STATE(2143), + [sym_command_substitution] = STATE(2143), + [sym_process_substitution] = STATE(2143), + [anon_sym_RBRACE] = ACTIONS(4912), + [sym__special_characters] = ACTIONS(4914), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4916), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4918), + }, + [1713] = { + [sym__heredoc_middle] = ACTIONS(1281), + [sym__heredoc_end] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(2130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), + [sym_comment] = ACTIONS(48), + }, + [1714] = { + [sym_file_descriptor] = ACTIONS(2766), + [sym_variable_name] = ACTIONS(2766), + [anon_sym_LT] = ACTIONS(4488), + [anon_sym_GT] = ACTIONS(4488), + [anon_sym_GT_GT] = ACTIONS(2766), + [anon_sym_AMP_GT] = ACTIONS(4488), + [anon_sym_AMP_GT_GT] = ACTIONS(2766), + [anon_sym_LT_AMP] = ACTIONS(2766), + [anon_sym_GT_AMP] = ACTIONS(2766), + [sym__special_characters] = ACTIONS(4488), + [anon_sym_DQUOTE] = ACTIONS(2766), + [sym_raw_string] = ACTIONS(2766), + [anon_sym_DOLLAR] = ACTIONS(4488), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2766), + [anon_sym_BQUOTE] = ACTIONS(2766), + [anon_sym_LT_LPAREN] = ACTIONS(2766), + [anon_sym_GT_LPAREN] = ACTIONS(2766), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4488), + }, + [1715] = { + [sym__concat] = ACTIONS(2176), + [anon_sym_RPAREN] = ACTIONS(2176), + [sym__special_characters] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(2176), + [sym_raw_string] = ACTIONS(2176), + [anon_sym_DOLLAR] = ACTIONS(3271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2176), + [anon_sym_BQUOTE] = ACTIONS(2176), + [anon_sym_LT_LPAREN] = ACTIONS(2176), + [anon_sym_GT_LPAREN] = ACTIONS(2176), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3271), + }, + [1716] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4920), + [sym_comment] = ACTIONS(48), + }, + [1717] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4922), + [sym_comment] = ACTIONS(48), + }, + [1718] = { + [anon_sym_RBRACE] = ACTIONS(4922), + [sym_comment] = ACTIONS(48), + }, + [1719] = { + [sym__concat] = ACTIONS(2214), + [anon_sym_RPAREN] = ACTIONS(2214), + [sym__special_characters] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(2214), + [sym_raw_string] = ACTIONS(2214), + [anon_sym_DOLLAR] = ACTIONS(3277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2214), + [anon_sym_BQUOTE] = ACTIONS(2214), + [anon_sym_LT_LPAREN] = ACTIONS(2214), + [anon_sym_GT_LPAREN] = ACTIONS(2214), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3277), + }, + [1720] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4924), + [sym_comment] = ACTIONS(48), + }, + [1721] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4926), + [sym_comment] = ACTIONS(48), + }, + [1722] = { + [anon_sym_RBRACE] = ACTIONS(4926), + [sym_comment] = ACTIONS(48), + }, + [1723] = { + [sym_concatenation] = STATE(2151), + [sym_string] = STATE(2150), + [sym_simple_expansion] = STATE(2150), + [sym_expansion] = STATE(2150), + [sym_command_substitution] = STATE(2150), + [sym_process_substitution] = STATE(2150), + [anon_sym_RBRACE] = ACTIONS(4922), + [sym__special_characters] = ACTIONS(4928), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4930), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4932), + }, + [1724] = { + [sym__concat] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [sym__special_characters] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(2228), + [sym_raw_string] = ACTIONS(2228), + [anon_sym_DOLLAR] = ACTIONS(3289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2228), + [anon_sym_BQUOTE] = ACTIONS(2228), + [anon_sym_LT_LPAREN] = ACTIONS(2228), + [anon_sym_GT_LPAREN] = ACTIONS(2228), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3289), + }, + [1725] = { + [sym_concatenation] = STATE(2155), + [sym_string] = STATE(2154), + [sym_simple_expansion] = STATE(2154), + [sym_expansion] = STATE(2154), + [sym_command_substitution] = STATE(2154), + [sym_process_substitution] = STATE(2154), + [anon_sym_RBRACE] = ACTIONS(4934), + [sym__special_characters] = ACTIONS(4936), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4938), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4940), + }, + [1726] = { + [sym__concat] = ACTIONS(2240), + [anon_sym_RPAREN] = ACTIONS(2240), + [sym__special_characters] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(2240), + [sym_raw_string] = ACTIONS(2240), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2240), + [anon_sym_BQUOTE] = ACTIONS(2240), + [anon_sym_LT_LPAREN] = ACTIONS(2240), + [anon_sym_GT_LPAREN] = ACTIONS(2240), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3299), + }, + [1727] = { + [sym_concatenation] = STATE(2159), + [sym_string] = STATE(2158), + [sym_simple_expansion] = STATE(2158), + [sym_expansion] = STATE(2158), + [sym_command_substitution] = STATE(2158), + [sym_process_substitution] = STATE(2158), + [anon_sym_RBRACE] = ACTIONS(4942), + [sym__special_characters] = ACTIONS(4944), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4946), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4948), + }, + [1728] = { + [sym__concat] = ACTIONS(2252), + [anon_sym_RPAREN] = ACTIONS(2252), + [sym__special_characters] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(2252), + [sym_raw_string] = ACTIONS(2252), + [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2252), + [anon_sym_BQUOTE] = ACTIONS(2252), + [anon_sym_LT_LPAREN] = ACTIONS(2252), + [anon_sym_GT_LPAREN] = ACTIONS(2252), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3309), + }, + [1729] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4950), + [sym_comment] = ACTIONS(48), + }, + [1730] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4952), + [sym_comment] = ACTIONS(48), + }, + [1731] = { + [anon_sym_RBRACE] = ACTIONS(4952), + [sym_comment] = ACTIONS(48), + }, + [1732] = { + [sym_file_descriptor] = ACTIONS(3353), + [sym__concat] = ACTIONS(3353), + [sym_variable_name] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(3355), + [anon_sym_SEMI_SEMI] = ACTIONS(3355), + [anon_sym_PIPE_AMP] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_LT] = ACTIONS(3355), + [anon_sym_GT] = ACTIONS(3355), + [anon_sym_GT_GT] = ACTIONS(3355), + [anon_sym_AMP_GT] = ACTIONS(3355), + [anon_sym_AMP_GT_GT] = ACTIONS(3355), + [anon_sym_LT_AMP] = ACTIONS(3355), + [anon_sym_GT_AMP] = ACTIONS(3355), + [sym__special_characters] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [sym_raw_string] = ACTIONS(3355), + [anon_sym_DOLLAR] = ACTIONS(3355), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3355), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3355), + [anon_sym_BQUOTE] = ACTIONS(3355), + [anon_sym_LT_LPAREN] = ACTIONS(3355), + [anon_sym_GT_LPAREN] = ACTIONS(3355), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_LF] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3355), + }, + [1733] = { + [sym_file_descriptor] = ACTIONS(3359), + [sym__concat] = ACTIONS(3359), + [sym_variable_name] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3361), + [anon_sym_SEMI_SEMI] = ACTIONS(3361), + [anon_sym_PIPE_AMP] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_GT] = ACTIONS(3361), + [anon_sym_GT_GT] = ACTIONS(3361), + [anon_sym_AMP_GT] = ACTIONS(3361), + [anon_sym_AMP_GT_GT] = ACTIONS(3361), + [anon_sym_LT_AMP] = ACTIONS(3361), + [anon_sym_GT_AMP] = ACTIONS(3361), + [sym__special_characters] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [sym_raw_string] = ACTIONS(3361), + [anon_sym_DOLLAR] = ACTIONS(3361), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3361), + [anon_sym_BQUOTE] = ACTIONS(3361), + [anon_sym_LT_LPAREN] = ACTIONS(3361), + [anon_sym_GT_LPAREN] = ACTIONS(3361), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_LF] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3361), + }, + [1734] = { + [sym_file_descriptor] = ACTIONS(3401), + [sym__concat] = ACTIONS(3401), + [sym_variable_name] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(3403), + [anon_sym_SEMI_SEMI] = ACTIONS(3403), + [anon_sym_PIPE_AMP] = ACTIONS(3403), + [anon_sym_AMP_AMP] = ACTIONS(3403), + [anon_sym_PIPE_PIPE] = ACTIONS(3403), + [anon_sym_LT] = ACTIONS(3403), + [anon_sym_GT] = ACTIONS(3403), + [anon_sym_GT_GT] = ACTIONS(3403), + [anon_sym_AMP_GT] = ACTIONS(3403), + [anon_sym_AMP_GT_GT] = ACTIONS(3403), + [anon_sym_LT_AMP] = ACTIONS(3403), + [anon_sym_GT_AMP] = ACTIONS(3403), + [sym__special_characters] = ACTIONS(3403), + [anon_sym_DQUOTE] = ACTIONS(3403), + [sym_raw_string] = ACTIONS(3403), + [anon_sym_DOLLAR] = ACTIONS(3403), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3403), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3403), + [anon_sym_BQUOTE] = ACTIONS(3403), + [anon_sym_LT_LPAREN] = ACTIONS(3403), + [anon_sym_GT_LPAREN] = ACTIONS(3403), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_LF] = ACTIONS(3403), + [anon_sym_AMP] = ACTIONS(3403), + }, + [1735] = { + [sym_file_descriptor] = ACTIONS(3405), + [sym__concat] = ACTIONS(3405), + [sym_variable_name] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(3407), + [anon_sym_SEMI_SEMI] = ACTIONS(3407), + [anon_sym_PIPE_AMP] = ACTIONS(3407), + [anon_sym_AMP_AMP] = ACTIONS(3407), + [anon_sym_PIPE_PIPE] = ACTIONS(3407), + [anon_sym_LT] = ACTIONS(3407), + [anon_sym_GT] = ACTIONS(3407), + [anon_sym_GT_GT] = ACTIONS(3407), + [anon_sym_AMP_GT] = ACTIONS(3407), + [anon_sym_AMP_GT_GT] = ACTIONS(3407), + [anon_sym_LT_AMP] = ACTIONS(3407), + [anon_sym_GT_AMP] = ACTIONS(3407), + [sym__special_characters] = ACTIONS(3407), + [anon_sym_DQUOTE] = ACTIONS(3407), + [sym_raw_string] = ACTIONS(3407), + [anon_sym_DOLLAR] = ACTIONS(3407), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3407), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3407), + [anon_sym_BQUOTE] = ACTIONS(3407), + [anon_sym_LT_LPAREN] = ACTIONS(3407), + [anon_sym_GT_LPAREN] = ACTIONS(3407), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3407), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_LF] = ACTIONS(3407), + [anon_sym_AMP] = ACTIONS(3407), + }, + [1736] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4954), + [sym_comment] = ACTIONS(48), + }, + [1737] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4956), + [sym_comment] = ACTIONS(48), + }, + [1738] = { + [anon_sym_RBRACE] = ACTIONS(4956), + [sym_comment] = ACTIONS(48), + }, + [1739] = { + [sym_file_descriptor] = ACTIONS(3413), + [sym__concat] = ACTIONS(3413), + [sym_variable_name] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(3415), + [anon_sym_SEMI_SEMI] = ACTIONS(3415), + [anon_sym_PIPE_AMP] = ACTIONS(3415), + [anon_sym_AMP_AMP] = ACTIONS(3415), + [anon_sym_PIPE_PIPE] = ACTIONS(3415), + [anon_sym_LT] = ACTIONS(3415), + [anon_sym_GT] = ACTIONS(3415), + [anon_sym_GT_GT] = ACTIONS(3415), + [anon_sym_AMP_GT] = ACTIONS(3415), + [anon_sym_AMP_GT_GT] = ACTIONS(3415), + [anon_sym_LT_AMP] = ACTIONS(3415), + [anon_sym_GT_AMP] = ACTIONS(3415), + [sym__special_characters] = ACTIONS(3415), + [anon_sym_DQUOTE] = ACTIONS(3415), + [sym_raw_string] = ACTIONS(3415), + [anon_sym_DOLLAR] = ACTIONS(3415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3415), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3415), + [anon_sym_BQUOTE] = ACTIONS(3415), + [anon_sym_LT_LPAREN] = ACTIONS(3415), + [anon_sym_GT_LPAREN] = ACTIONS(3415), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_LF] = ACTIONS(3415), + [anon_sym_AMP] = ACTIONS(3415), + }, + [1740] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4958), + [sym_comment] = ACTIONS(48), + }, + [1741] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4960), + [sym_comment] = ACTIONS(48), + }, + [1742] = { + [anon_sym_RBRACE] = ACTIONS(4960), + [sym_comment] = ACTIONS(48), + }, + [1743] = { + [sym_file_descriptor] = ACTIONS(3421), + [sym__concat] = ACTIONS(3421), + [sym_variable_name] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(3423), + [anon_sym_SEMI_SEMI] = ACTIONS(3423), + [anon_sym_PIPE_AMP] = ACTIONS(3423), + [anon_sym_AMP_AMP] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3423), + [anon_sym_GT] = ACTIONS(3423), + [anon_sym_GT_GT] = ACTIONS(3423), + [anon_sym_AMP_GT] = ACTIONS(3423), + [anon_sym_AMP_GT_GT] = ACTIONS(3423), + [anon_sym_LT_AMP] = ACTIONS(3423), + [anon_sym_GT_AMP] = ACTIONS(3423), + [sym__special_characters] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_raw_string] = ACTIONS(3423), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3423), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3423), + [anon_sym_BQUOTE] = ACTIONS(3423), + [anon_sym_LT_LPAREN] = ACTIONS(3423), + [anon_sym_GT_LPAREN] = ACTIONS(3423), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_LF] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3423), + }, + [1744] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4962), + [sym_comment] = ACTIONS(48), + }, + [1745] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4964), + [sym_comment] = ACTIONS(48), + }, + [1746] = { + [anon_sym_RBRACE] = ACTIONS(4964), + [sym_comment] = ACTIONS(48), + }, + [1747] = { + [sym_file_descriptor] = ACTIONS(3429), + [sym__concat] = ACTIONS(3429), + [sym_variable_name] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_SEMI_SEMI] = ACTIONS(3431), + [anon_sym_PIPE_AMP] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_PIPE_PIPE] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_AMP_GT] = ACTIONS(3431), + [anon_sym_AMP_GT_GT] = ACTIONS(3431), + [anon_sym_LT_AMP] = ACTIONS(3431), + [anon_sym_GT_AMP] = ACTIONS(3431), + [sym__special_characters] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym_raw_string] = ACTIONS(3431), + [anon_sym_DOLLAR] = ACTIONS(3431), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3431), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3431), + [anon_sym_BQUOTE] = ACTIONS(3431), + [anon_sym_LT_LPAREN] = ACTIONS(3431), + [anon_sym_GT_LPAREN] = ACTIONS(3431), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_LF] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + }, + [1748] = { + [sym_file_descriptor] = ACTIONS(3433), + [sym__concat] = ACTIONS(3433), + [sym_variable_name] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(3435), + [anon_sym_SEMI_SEMI] = ACTIONS(3435), + [anon_sym_PIPE_AMP] = ACTIONS(3435), + [anon_sym_AMP_AMP] = ACTIONS(3435), + [anon_sym_PIPE_PIPE] = ACTIONS(3435), + [anon_sym_LT] = ACTIONS(3435), + [anon_sym_GT] = ACTIONS(3435), + [anon_sym_GT_GT] = ACTIONS(3435), + [anon_sym_AMP_GT] = ACTIONS(3435), + [anon_sym_AMP_GT_GT] = ACTIONS(3435), + [anon_sym_LT_AMP] = ACTIONS(3435), + [anon_sym_GT_AMP] = ACTIONS(3435), + [sym__special_characters] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(3435), + [sym_raw_string] = ACTIONS(3435), + [anon_sym_DOLLAR] = ACTIONS(3435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3435), + [anon_sym_BQUOTE] = ACTIONS(3435), + [anon_sym_LT_LPAREN] = ACTIONS(3435), + [anon_sym_GT_LPAREN] = ACTIONS(3435), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3435), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_LF] = ACTIONS(3435), + [anon_sym_AMP] = ACTIONS(3435), + }, + [1749] = { + [sym__concat] = ACTIONS(3353), + [anon_sym_RBRACK] = ACTIONS(3353), + [sym_comment] = ACTIONS(48), + }, + [1750] = { + [sym__concat] = ACTIONS(3359), + [anon_sym_RBRACK] = ACTIONS(3359), + [sym_comment] = ACTIONS(48), + }, + [1751] = { + [sym__concat] = ACTIONS(3401), + [anon_sym_RBRACK] = ACTIONS(3401), + [sym_comment] = ACTIONS(48), + }, + [1752] = { + [sym__concat] = ACTIONS(3405), + [anon_sym_RBRACK] = ACTIONS(3405), + [sym_comment] = ACTIONS(48), + }, + [1753] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4966), + [sym_comment] = ACTIONS(48), + }, + [1754] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4968), + [sym_comment] = ACTIONS(48), + }, + [1755] = { + [anon_sym_RBRACE] = ACTIONS(4968), + [sym_comment] = ACTIONS(48), + }, + [1756] = { + [sym__concat] = ACTIONS(3413), + [anon_sym_RBRACK] = ACTIONS(3413), + [sym_comment] = ACTIONS(48), + }, + [1757] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4970), + [sym_comment] = ACTIONS(48), + }, + [1758] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4972), + [sym_comment] = ACTIONS(48), + }, + [1759] = { + [anon_sym_RBRACE] = ACTIONS(4972), + [sym_comment] = ACTIONS(48), + }, + [1760] = { + [sym__concat] = ACTIONS(3421), + [anon_sym_RBRACK] = ACTIONS(3421), + [sym_comment] = ACTIONS(48), + }, + [1761] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4974), + [sym_comment] = ACTIONS(48), + }, + [1762] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4976), + [sym_comment] = ACTIONS(48), + }, + [1763] = { + [anon_sym_RBRACE] = ACTIONS(4976), + [sym_comment] = ACTIONS(48), + }, + [1764] = { + [sym__concat] = ACTIONS(3429), + [anon_sym_RBRACK] = ACTIONS(3429), + [sym_comment] = ACTIONS(48), + }, + [1765] = { + [sym__concat] = ACTIONS(3433), + [anon_sym_RBRACK] = ACTIONS(3433), + [sym_comment] = ACTIONS(48), + }, + [1766] = { + [sym__concat] = ACTIONS(2176), + [anon_sym_SEMI_SEMI] = ACTIONS(2178), + [sym__special_characters] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [sym_raw_string] = ACTIONS(2178), + [anon_sym_DOLLAR] = ACTIONS(2178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2178), + [anon_sym_BQUOTE] = ACTIONS(2178), + [anon_sym_LT_LPAREN] = ACTIONS(2178), + [anon_sym_GT_LPAREN] = ACTIONS(2178), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_LF] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + }, + [1767] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4978), + [sym_comment] = ACTIONS(48), + }, + [1768] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4980), + [sym_comment] = ACTIONS(48), + }, + [1769] = { + [anon_sym_RBRACE] = ACTIONS(4980), + [sym_comment] = ACTIONS(48), + }, + [1770] = { + [sym__concat] = ACTIONS(2214), + [anon_sym_SEMI_SEMI] = ACTIONS(2216), + [sym__special_characters] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2216), + [sym_raw_string] = ACTIONS(2216), + [anon_sym_DOLLAR] = ACTIONS(2216), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2216), + [anon_sym_BQUOTE] = ACTIONS(2216), + [anon_sym_LT_LPAREN] = ACTIONS(2216), + [anon_sym_GT_LPAREN] = ACTIONS(2216), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2216), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_LF] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2216), + }, + [1771] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4982), + [sym_comment] = ACTIONS(48), + }, + [1772] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(4984), + [sym_comment] = ACTIONS(48), + }, + [1773] = { + [anon_sym_RBRACE] = ACTIONS(4984), + [sym_comment] = ACTIONS(48), + }, + [1774] = { + [sym_concatenation] = STATE(2180), + [sym_string] = STATE(2179), + [sym_simple_expansion] = STATE(2179), + [sym_expansion] = STATE(2179), + [sym_command_substitution] = STATE(2179), + [sym_process_substitution] = STATE(2179), + [anon_sym_RBRACE] = ACTIONS(4980), + [sym__special_characters] = ACTIONS(4986), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4988), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4990), + }, + [1775] = { + [sym__concat] = ACTIONS(2228), + [anon_sym_SEMI_SEMI] = ACTIONS(2230), + [sym__special_characters] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [sym_raw_string] = ACTIONS(2230), + [anon_sym_DOLLAR] = ACTIONS(2230), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2230), + [anon_sym_BQUOTE] = ACTIONS(2230), + [anon_sym_LT_LPAREN] = ACTIONS(2230), + [anon_sym_GT_LPAREN] = ACTIONS(2230), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_LF] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2230), + }, + [1776] = { + [sym_concatenation] = STATE(2184), + [sym_string] = STATE(2183), + [sym_simple_expansion] = STATE(2183), + [sym_expansion] = STATE(2183), + [sym_command_substitution] = STATE(2183), + [sym_process_substitution] = STATE(2183), + [anon_sym_RBRACE] = ACTIONS(4992), + [sym__special_characters] = ACTIONS(4994), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(4996), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4998), + }, + [1777] = { + [sym__concat] = ACTIONS(2240), + [anon_sym_SEMI_SEMI] = ACTIONS(2242), + [sym__special_characters] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym_raw_string] = ACTIONS(2242), + [anon_sym_DOLLAR] = ACTIONS(2242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2242), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2242), + [anon_sym_BQUOTE] = ACTIONS(2242), + [anon_sym_LT_LPAREN] = ACTIONS(2242), + [anon_sym_GT_LPAREN] = ACTIONS(2242), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_LF] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + }, + [1778] = { + [sym_concatenation] = STATE(2188), + [sym_string] = STATE(2187), + [sym_simple_expansion] = STATE(2187), + [sym_expansion] = STATE(2187), + [sym_command_substitution] = STATE(2187), + [sym_process_substitution] = STATE(2187), + [anon_sym_RBRACE] = ACTIONS(5000), + [sym__special_characters] = ACTIONS(5002), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5004), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5006), + }, + [1779] = { + [sym__concat] = ACTIONS(2252), + [anon_sym_SEMI_SEMI] = ACTIONS(2254), + [sym__special_characters] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2254), + [sym_raw_string] = ACTIONS(2254), + [anon_sym_DOLLAR] = ACTIONS(2254), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2254), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2254), + [anon_sym_BQUOTE] = ACTIONS(2254), + [anon_sym_LT_LPAREN] = ACTIONS(2254), + [anon_sym_GT_LPAREN] = ACTIONS(2254), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LF] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + }, + [1780] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5008), + [sym_comment] = ACTIONS(48), + }, + [1781] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5010), + [sym_comment] = ACTIONS(48), + }, + [1782] = { + [anon_sym_RBRACE] = ACTIONS(5010), + [sym_comment] = ACTIONS(48), + }, + [1783] = { + [sym__terminated_statement] = STATE(472), + [sym_for_statement] = STATE(473), + [sym_while_statement] = STATE(473), + [sym_if_statement] = STATE(473), + [sym_case_statement] = STATE(473), + [sym_function_definition] = STATE(473), + [sym_subshell] = STATE(473), + [sym_pipeline] = STATE(473), + [sym_list] = STATE(473), + [sym_command] = STATE(473), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(476), + [sym_declaration_command] = STATE(473), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(845), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_fi] = ACTIONS(5012), + [anon_sym_elif] = ACTIONS(5012), + [anon_sym_else] = ACTIONS(5012), + [anon_sym_case] = ACTIONS(20), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), + }, + [1784] = { + [anon_sym_PIPE] = ACTIONS(5014), + [anon_sym_RPAREN] = ACTIONS(5014), + [anon_sym_SEMI_SEMI] = ACTIONS(5014), + [anon_sym_PIPE_AMP] = ACTIONS(5014), + [anon_sym_AMP_AMP] = ACTIONS(5014), + [anon_sym_PIPE_PIPE] = ACTIONS(5014), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(5014), + [anon_sym_LF] = ACTIONS(5014), + [anon_sym_AMP] = ACTIONS(5014), + }, + [1785] = { + [sym__concat] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(1157), + [anon_sym_RPAREN] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + }, + [1786] = { + [aux_sym_concatenation_repeat1] = STATE(1312), + [sym__concat] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(5016), + [anon_sym_RPAREN] = ACTIONS(5016), + [sym_comment] = ACTIONS(48), + }, + [1787] = { + [aux_sym_concatenation_repeat1] = STATE(1312), + [sym__concat] = ACTIONS(2976), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_RPAREN] = ACTIONS(5018), + [sym_comment] = ACTIONS(48), + }, + [1788] = { + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_RPAREN] = ACTIONS(5018), + [sym_comment] = ACTIONS(48), + }, + [1789] = { + [anon_sym_esac] = ACTIONS(5020), + [sym__special_characters] = ACTIONS(5020), + [anon_sym_DQUOTE] = ACTIONS(5022), + [sym_raw_string] = ACTIONS(5022), + [anon_sym_DOLLAR] = ACTIONS(5020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5022), + [anon_sym_BQUOTE] = ACTIONS(5022), + [anon_sym_LT_LPAREN] = ACTIONS(5022), + [anon_sym_GT_LPAREN] = ACTIONS(5022), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5024), + }, + [1790] = { + [sym__terminated_statement] = STATE(22), + [sym_for_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_function_definition] = STATE(23), + [sym_subshell] = STATE(23), + [sym_pipeline] = STATE(23), + [sym_list] = STATE(23), + [sym_command] = STATE(23), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(25), + [sym_declaration_command] = STATE(23), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_SEMI_SEMI] = ACTIONS(5026), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), + }, + [1791] = { + [sym__terminated_statement] = STATE(22), + [sym_for_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_function_definition] = STATE(23), + [sym_subshell] = STATE(23), + [sym_pipeline] = STATE(23), + [sym_list] = STATE(23), + [sym_command] = STATE(23), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(25), + [sym_declaration_command] = STATE(23), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(2193), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_SEMI_SEMI] = ACTIONS(5026), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), + }, + [1792] = { + [aux_sym_case_item_repeat1] = STATE(1792), + [anon_sym_PIPE] = ACTIONS(5028), + [anon_sym_RPAREN] = ACTIONS(5018), + [sym_comment] = ACTIONS(48), + }, + [1793] = { + [aux_sym_concatenation_repeat1] = STATE(1793), + [sym__concat] = ACTIONS(5031), + [anon_sym_PIPE] = ACTIONS(1157), + [anon_sym_RPAREN] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + }, + [1794] = { + [sym__concat] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_RPAREN] = ACTIONS(1196), + [sym_comment] = ACTIONS(48), + }, + [1795] = { + [anon_sym_esac] = ACTIONS(5034), + [sym__special_characters] = ACTIONS(5034), + [anon_sym_DQUOTE] = ACTIONS(5036), + [sym_raw_string] = ACTIONS(5036), + [anon_sym_DOLLAR] = ACTIONS(5034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5036), + [anon_sym_BQUOTE] = ACTIONS(5036), + [anon_sym_LT_LPAREN] = ACTIONS(5036), + [anon_sym_GT_LPAREN] = ACTIONS(5036), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5038), + }, + [1796] = { + [sym__terminated_statement] = STATE(22), + [sym_for_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_function_definition] = STATE(23), + [sym_subshell] = STATE(23), + [sym_pipeline] = STATE(23), + [sym_list] = STATE(23), + [sym_command] = STATE(23), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(25), + [sym_declaration_command] = STATE(23), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_SEMI_SEMI] = ACTIONS(5040), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), + }, + [1797] = { + [sym__terminated_statement] = STATE(22), + [sym_for_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_function_definition] = STATE(23), + [sym_subshell] = STATE(23), + [sym_pipeline] = STATE(23), + [sym_list] = STATE(23), + [sym_command] = STATE(23), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(25), + [sym_declaration_command] = STATE(23), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(2195), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_SEMI_SEMI] = ACTIONS(5040), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), + }, + [1798] = { + [sym_concatenation] = STATE(2199), + [sym_string] = STATE(2198), + [sym_simple_expansion] = STATE(2198), + [sym_expansion] = STATE(2198), + [sym_command_substitution] = STATE(2198), + [sym_process_substitution] = STATE(2198), + [anon_sym_RBRACE] = ACTIONS(5042), + [sym__special_characters] = ACTIONS(5044), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5046), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5048), + }, + [1799] = { + [sym__concat] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1241), + [anon_sym_RPAREN] = ACTIONS(1241), + [sym_comment] = ACTIONS(48), + }, + [1800] = { + [sym_concatenation] = STATE(2203), + [sym_string] = STATE(2202), + [sym_simple_expansion] = STATE(2202), + [sym_expansion] = STATE(2202), + [sym_command_substitution] = STATE(2202), + [sym_process_substitution] = STATE(2202), + [anon_sym_RBRACE] = ACTIONS(5050), + [sym__special_characters] = ACTIONS(5052), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5054), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5056), + }, + [1801] = { + [anon_sym_EQ] = ACTIONS(5058), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1802] = { + [anon_sym_RBRACE] = ACTIONS(5060), + [anon_sym_EQ] = ACTIONS(5062), + [anon_sym_COLON] = ACTIONS(5064), + [anon_sym_COLON_QMARK] = ACTIONS(5062), + [anon_sym_COLON_DASH] = ACTIONS(5062), + [anon_sym_PERCENT] = ACTIONS(5062), + [anon_sym_SLASH] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5062), + [sym_comment] = ACTIONS(48), + }, + [1803] = { + [anon_sym_RBRACE] = ACTIONS(5066), + [anon_sym_EQ] = ACTIONS(5068), + [anon_sym_COLON] = ACTIONS(5070), + [anon_sym_COLON_QMARK] = ACTIONS(5068), + [anon_sym_COLON_DASH] = ACTIONS(5068), + [anon_sym_PERCENT] = ACTIONS(5068), + [anon_sym_SLASH] = ACTIONS(5068), + [anon_sym_DASH] = ACTIONS(5068), + [sym_comment] = ACTIONS(48), + }, + [1804] = { + [anon_sym_RBRACE] = ACTIONS(5042), + [anon_sym_EQ] = ACTIONS(5058), + [anon_sym_COLON] = ACTIONS(5072), + [anon_sym_COLON_QMARK] = ACTIONS(5058), + [anon_sym_COLON_DASH] = ACTIONS(5058), + [anon_sym_PERCENT] = ACTIONS(5058), + [anon_sym_SLASH] = ACTIONS(5058), + [anon_sym_DASH] = ACTIONS(5058), + [sym_comment] = ACTIONS(48), + }, + [1805] = { + [sym__concat] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1269), + [sym_comment] = ACTIONS(48), + }, + [1806] = { + [sym_concatenation] = STATE(2212), + [sym_string] = STATE(2211), + [sym_simple_expansion] = STATE(2211), + [sym_expansion] = STATE(2211), + [sym_command_substitution] = STATE(2211), + [sym_process_substitution] = STATE(2211), + [anon_sym_RBRACE] = ACTIONS(5074), + [sym__special_characters] = ACTIONS(5076), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5078), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5080), + }, + [1807] = { + [sym__concat] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_RPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(48), + }, + [1808] = { + [sym__concat] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1379), + [anon_sym_RPAREN] = ACTIONS(1379), + [sym_comment] = ACTIONS(48), + }, + [1809] = { + [sym__concat] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_RPAREN] = ACTIONS(1513), + [sym_comment] = ACTIONS(48), + }, + [1810] = { + [anon_sym_PIPE] = ACTIONS(5082), + [anon_sym_RPAREN] = ACTIONS(5082), + [anon_sym_SEMI_SEMI] = ACTIONS(5082), + [anon_sym_PIPE_AMP] = ACTIONS(5082), + [anon_sym_AMP_AMP] = ACTIONS(5082), + [anon_sym_PIPE_PIPE] = ACTIONS(5082), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(5082), + [anon_sym_LF] = ACTIONS(5082), + [anon_sym_AMP] = ACTIONS(5082), + }, + [1811] = { + [anon_sym_PIPE] = ACTIONS(5084), + [anon_sym_RPAREN] = ACTIONS(5084), + [anon_sym_SEMI_SEMI] = ACTIONS(5084), + [anon_sym_PIPE_AMP] = ACTIONS(5084), + [anon_sym_AMP_AMP] = ACTIONS(5084), + [anon_sym_PIPE_PIPE] = ACTIONS(5084), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(5084), + [anon_sym_LF] = ACTIONS(5084), + [anon_sym_AMP] = ACTIONS(5084), + }, + [1812] = { + [sym__concat] = ACTIONS(4464), + [anon_sym_in] = ACTIONS(4466), + [anon_sym_SEMI_SEMI] = ACTIONS(4466), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym_LF] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4466), + }, + [1813] = { + [sym__concat] = ACTIONS(4468), + [anon_sym_in] = ACTIONS(4470), + [anon_sym_SEMI_SEMI] = ACTIONS(4470), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_LF] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4470), + }, + [1814] = { + [sym__concat] = ACTIONS(4472), + [anon_sym_in] = ACTIONS(4474), + [anon_sym_SEMI_SEMI] = ACTIONS(4474), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym_LF] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4474), + }, + [1815] = { + [sym__concat] = ACTIONS(4476), + [anon_sym_in] = ACTIONS(4478), + [anon_sym_SEMI_SEMI] = ACTIONS(4478), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_LF] = ACTIONS(4478), + [anon_sym_AMP] = ACTIONS(4478), + }, + [1816] = { + [sym__concat] = ACTIONS(4480), + [anon_sym_in] = ACTIONS(4482), + [anon_sym_SEMI_SEMI] = ACTIONS(4482), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4482), + [anon_sym_LF] = ACTIONS(4482), + [anon_sym_AMP] = ACTIONS(4482), + }, + [1817] = { + [sym__concat] = ACTIONS(4484), + [anon_sym_in] = ACTIONS(4486), + [anon_sym_SEMI_SEMI] = ACTIONS(4486), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4486), + [anon_sym_LF] = ACTIONS(4486), + [anon_sym_AMP] = ACTIONS(4486), + }, + [1818] = { + [sym__concat] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [1819] = { + [aux_sym_concatenation_repeat1] = STATE(1819), + [sym__concat] = ACTIONS(5086), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [1820] = { + [sym__concat] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1198), + [anon_sym_SEMI_SEMI] = ACTIONS(1198), + [anon_sym_PIPE_AMP] = ACTIONS(1198), + [anon_sym_AMP_AMP] = ACTIONS(1198), + [anon_sym_PIPE_PIPE] = ACTIONS(1198), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + }, + [1821] = { + [sym_concatenation] = STATE(2216), + [sym_string] = STATE(2215), + [sym_simple_expansion] = STATE(2215), + [sym_expansion] = STATE(2215), + [sym_command_substitution] = STATE(2215), + [sym_process_substitution] = STATE(2215), + [anon_sym_RBRACE] = ACTIONS(5089), + [sym__special_characters] = ACTIONS(5091), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5093), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5095), + }, + [1822] = { + [sym__concat] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1243), + }, + [1823] = { + [sym_concatenation] = STATE(2220), + [sym_string] = STATE(2219), + [sym_simple_expansion] = STATE(2219), + [sym_expansion] = STATE(2219), + [sym_command_substitution] = STATE(2219), + [sym_process_substitution] = STATE(2219), + [anon_sym_RBRACE] = ACTIONS(5097), + [sym__special_characters] = ACTIONS(5099), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5101), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5103), + }, + [1824] = { + [anon_sym_EQ] = ACTIONS(5105), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1825] = { + [anon_sym_RBRACE] = ACTIONS(5107), + [anon_sym_EQ] = ACTIONS(5109), + [anon_sym_COLON] = ACTIONS(5111), + [anon_sym_COLON_QMARK] = ACTIONS(5109), + [anon_sym_COLON_DASH] = ACTIONS(5109), + [anon_sym_PERCENT] = ACTIONS(5109), + [anon_sym_SLASH] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5109), + [sym_comment] = ACTIONS(48), + }, + [1826] = { + [anon_sym_RBRACE] = ACTIONS(5113), + [anon_sym_EQ] = ACTIONS(5115), + [anon_sym_COLON] = ACTIONS(5117), + [anon_sym_COLON_QMARK] = ACTIONS(5115), + [anon_sym_COLON_DASH] = ACTIONS(5115), + [anon_sym_PERCENT] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [sym_comment] = ACTIONS(48), + }, + [1827] = { + [anon_sym_RBRACE] = ACTIONS(5089), + [anon_sym_EQ] = ACTIONS(5105), + [anon_sym_COLON] = ACTIONS(5119), + [anon_sym_COLON_QMARK] = ACTIONS(5105), + [anon_sym_COLON_DASH] = ACTIONS(5105), + [anon_sym_PERCENT] = ACTIONS(5105), + [anon_sym_SLASH] = ACTIONS(5105), + [anon_sym_DASH] = ACTIONS(5105), + [sym_comment] = ACTIONS(48), + }, + [1828] = { + [sym__concat] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_SEMI_SEMI] = ACTIONS(1271), + [anon_sym_PIPE_AMP] = ACTIONS(1271), + [anon_sym_AMP_AMP] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1271), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_LF] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + }, + [1829] = { + [sym_concatenation] = STATE(2229), + [sym_string] = STATE(2228), + [sym_simple_expansion] = STATE(2228), + [sym_expansion] = STATE(2228), + [sym_command_substitution] = STATE(2228), + [sym_process_substitution] = STATE(2228), + [anon_sym_RBRACE] = ACTIONS(5121), + [sym__special_characters] = ACTIONS(5123), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5125), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5127), + }, + [1830] = { + [sym__concat] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_SEMI_SEMI] = ACTIONS(1283), + [anon_sym_PIPE_AMP] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1283), + [anon_sym_PIPE_PIPE] = ACTIONS(1283), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + }, + [1831] = { + [sym__concat] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_SEMI_SEMI] = ACTIONS(1381), + [anon_sym_PIPE_AMP] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [anon_sym_PIPE_PIPE] = ACTIONS(1381), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_LF] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + }, + [1832] = { + [sym__concat] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_SEMI_SEMI] = ACTIONS(1515), + [anon_sym_PIPE_AMP] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE_PIPE] = ACTIONS(1515), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + }, + [1833] = { + [sym_file_descriptor] = ACTIONS(2176), + [sym__concat] = ACTIONS(2176), + [sym_variable_name] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_RPAREN] = ACTIONS(2178), + [anon_sym_SEMI_SEMI] = ACTIONS(2178), + [anon_sym_PIPE_AMP] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2178), + [anon_sym_PIPE_PIPE] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2178), + [anon_sym_AMP_GT] = ACTIONS(2178), + [anon_sym_AMP_GT_GT] = ACTIONS(2178), + [anon_sym_LT_AMP] = ACTIONS(2178), + [anon_sym_GT_AMP] = ACTIONS(2178), + [sym__special_characters] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [sym_raw_string] = ACTIONS(2178), + [anon_sym_DOLLAR] = ACTIONS(2178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2178), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2178), + [anon_sym_BQUOTE] = ACTIONS(2178), + [anon_sym_LT_LPAREN] = ACTIONS(2178), + [anon_sym_GT_LPAREN] = ACTIONS(2178), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_LF] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + }, + [1834] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5129), + [sym_comment] = ACTIONS(48), + }, + [1835] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5131), + [sym_comment] = ACTIONS(48), + }, + [1836] = { + [anon_sym_RBRACE] = ACTIONS(5131), + [sym_comment] = ACTIONS(48), + }, + [1837] = { + [sym_file_descriptor] = ACTIONS(2214), + [sym__concat] = ACTIONS(2214), + [sym_variable_name] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2216), + [anon_sym_RPAREN] = ACTIONS(2216), + [anon_sym_SEMI_SEMI] = ACTIONS(2216), + [anon_sym_PIPE_AMP] = ACTIONS(2216), + [anon_sym_AMP_AMP] = ACTIONS(2216), + [anon_sym_PIPE_PIPE] = ACTIONS(2216), + [anon_sym_LT] = ACTIONS(2216), + [anon_sym_GT] = ACTIONS(2216), + [anon_sym_GT_GT] = ACTIONS(2216), + [anon_sym_AMP_GT] = ACTIONS(2216), + [anon_sym_AMP_GT_GT] = ACTIONS(2216), + [anon_sym_LT_AMP] = ACTIONS(2216), + [anon_sym_GT_AMP] = ACTIONS(2216), + [sym__special_characters] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2216), + [sym_raw_string] = ACTIONS(2216), + [anon_sym_DOLLAR] = ACTIONS(2216), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2216), + [anon_sym_BQUOTE] = ACTIONS(2216), + [anon_sym_LT_LPAREN] = ACTIONS(2216), + [anon_sym_GT_LPAREN] = ACTIONS(2216), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2216), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_LF] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2216), + }, + [1838] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5133), + [sym_comment] = ACTIONS(48), + }, + [1839] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5135), + [sym_comment] = ACTIONS(48), + }, + [1840] = { + [anon_sym_RBRACE] = ACTIONS(5135), + [sym_comment] = ACTIONS(48), + }, + [1841] = { + [sym_concatenation] = STATE(2236), + [sym_string] = STATE(2235), + [sym_simple_expansion] = STATE(2235), + [sym_expansion] = STATE(2235), + [sym_command_substitution] = STATE(2235), + [sym_process_substitution] = STATE(2235), + [anon_sym_RBRACE] = ACTIONS(5131), + [sym__special_characters] = ACTIONS(5137), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5139), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5141), + }, + [1842] = { + [sym_file_descriptor] = ACTIONS(2228), + [sym__concat] = ACTIONS(2228), + [sym_variable_name] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2230), + [anon_sym_RPAREN] = ACTIONS(2230), + [anon_sym_SEMI_SEMI] = ACTIONS(2230), + [anon_sym_PIPE_AMP] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2230), + [anon_sym_PIPE_PIPE] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2230), + [anon_sym_GT_GT] = ACTIONS(2230), + [anon_sym_AMP_GT] = ACTIONS(2230), + [anon_sym_AMP_GT_GT] = ACTIONS(2230), + [anon_sym_LT_AMP] = ACTIONS(2230), + [anon_sym_GT_AMP] = ACTIONS(2230), + [sym__special_characters] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [sym_raw_string] = ACTIONS(2230), + [anon_sym_DOLLAR] = ACTIONS(2230), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2230), + [anon_sym_BQUOTE] = ACTIONS(2230), + [anon_sym_LT_LPAREN] = ACTIONS(2230), + [anon_sym_GT_LPAREN] = ACTIONS(2230), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_LF] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2230), + }, + [1843] = { + [sym_concatenation] = STATE(2240), + [sym_string] = STATE(2239), + [sym_simple_expansion] = STATE(2239), + [sym_expansion] = STATE(2239), + [sym_command_substitution] = STATE(2239), + [sym_process_substitution] = STATE(2239), + [anon_sym_RBRACE] = ACTIONS(5143), + [sym__special_characters] = ACTIONS(5145), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5147), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5149), + }, + [1844] = { + [sym_file_descriptor] = ACTIONS(2240), + [sym__concat] = ACTIONS(2240), + [sym_variable_name] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_RPAREN] = ACTIONS(2242), + [anon_sym_SEMI_SEMI] = ACTIONS(2242), + [anon_sym_PIPE_AMP] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2242), + [anon_sym_GT_GT] = ACTIONS(2242), + [anon_sym_AMP_GT] = ACTIONS(2242), + [anon_sym_AMP_GT_GT] = ACTIONS(2242), + [anon_sym_LT_AMP] = ACTIONS(2242), + [anon_sym_GT_AMP] = ACTIONS(2242), + [sym__special_characters] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym_raw_string] = ACTIONS(2242), + [anon_sym_DOLLAR] = ACTIONS(2242), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2242), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2242), + [anon_sym_BQUOTE] = ACTIONS(2242), + [anon_sym_LT_LPAREN] = ACTIONS(2242), + [anon_sym_GT_LPAREN] = ACTIONS(2242), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_LF] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + }, + [1845] = { + [sym_concatenation] = STATE(2244), + [sym_string] = STATE(2243), + [sym_simple_expansion] = STATE(2243), + [sym_expansion] = STATE(2243), + [sym_command_substitution] = STATE(2243), + [sym_process_substitution] = STATE(2243), + [anon_sym_RBRACE] = ACTIONS(5151), + [sym__special_characters] = ACTIONS(5153), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5155), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5157), + }, + [1846] = { + [sym_file_descriptor] = ACTIONS(2252), + [sym__concat] = ACTIONS(2252), + [sym_variable_name] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_RPAREN] = ACTIONS(2254), + [anon_sym_SEMI_SEMI] = ACTIONS(2254), + [anon_sym_PIPE_AMP] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_GT_GT] = ACTIONS(2254), + [anon_sym_AMP_GT] = ACTIONS(2254), + [anon_sym_AMP_GT_GT] = ACTIONS(2254), + [anon_sym_LT_AMP] = ACTIONS(2254), + [anon_sym_GT_AMP] = ACTIONS(2254), + [sym__special_characters] = ACTIONS(2254), + [anon_sym_DQUOTE] = ACTIONS(2254), + [sym_raw_string] = ACTIONS(2254), + [anon_sym_DOLLAR] = ACTIONS(2254), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2254), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2254), + [anon_sym_BQUOTE] = ACTIONS(2254), + [anon_sym_LT_LPAREN] = ACTIONS(2254), + [anon_sym_GT_LPAREN] = ACTIONS(2254), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LF] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + }, + [1847] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5159), + [sym_comment] = ACTIONS(48), + }, + [1848] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5161), + [sym_comment] = ACTIONS(48), + }, + [1849] = { + [anon_sym_RBRACE] = ACTIONS(5161), + [sym_comment] = ACTIONS(48), + }, + [1850] = { + [aux_sym_concatenation_repeat1] = STATE(1853), + [sym__concat] = ACTIONS(4227), + [anon_sym_PIPE] = ACTIONS(2660), + [anon_sym_RPAREN] = ACTIONS(2660), + [anon_sym_SEMI_SEMI] = ACTIONS(2660), + [anon_sym_PIPE_AMP] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2660), + [anon_sym_PIPE_PIPE] = ACTIONS(2660), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2660), + [anon_sym_LF] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2660), + }, + [1851] = { + [aux_sym_concatenation_repeat1] = STATE(1853), + [sym__concat] = ACTIONS(4227), + [anon_sym_PIPE] = ACTIONS(2662), + [anon_sym_RPAREN] = ACTIONS(2662), + [anon_sym_SEMI_SEMI] = ACTIONS(2662), + [anon_sym_PIPE_AMP] = ACTIONS(2662), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_PIPE_PIPE] = ACTIONS(2662), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_LF] = ACTIONS(2662), + [anon_sym_AMP] = ACTIONS(2662), + }, + [1852] = { + [sym_string] = STATE(2247), + [sym_simple_expansion] = STATE(2247), + [sym_expansion] = STATE(2247), + [sym_command_substitution] = STATE(2247), + [sym_process_substitution] = STATE(2247), + [sym__special_characters] = ACTIONS(5163), + [anon_sym_DQUOTE] = ACTIONS(3125), + [sym_raw_string] = ACTIONS(5165), + [anon_sym_DOLLAR] = ACTIONS(3129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3133), + [anon_sym_BQUOTE] = ACTIONS(3135), + [anon_sym_LT_LPAREN] = ACTIONS(3137), + [anon_sym_GT_LPAREN] = ACTIONS(3137), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5163), + }, + [1853] = { + [aux_sym_concatenation_repeat1] = STATE(2248), + [sym__concat] = ACTIONS(4227), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_RPAREN] = ACTIONS(480), + [anon_sym_SEMI_SEMI] = ACTIONS(480), + [anon_sym_PIPE_AMP] = ACTIONS(480), + [anon_sym_AMP_AMP] = ACTIONS(480), + [anon_sym_PIPE_PIPE] = ACTIONS(480), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(480), + [anon_sym_LF] = ACTIONS(480), + [anon_sym_AMP] = ACTIONS(480), + }, + [1854] = { + [sym__concat] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(484), + [anon_sym_RPAREN] = ACTIONS(484), + [anon_sym_SEMI_SEMI] = ACTIONS(484), + [anon_sym_PIPE_AMP] = ACTIONS(484), + [anon_sym_AMP_AMP] = ACTIONS(484), + [anon_sym_PIPE_PIPE] = ACTIONS(484), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(484), + [anon_sym_LF] = ACTIONS(484), + [anon_sym_AMP] = ACTIONS(484), + }, + [1855] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(5167), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [1856] = { + [sym__concat] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(512), + [anon_sym_RPAREN] = ACTIONS(512), + [anon_sym_SEMI_SEMI] = ACTIONS(512), + [anon_sym_PIPE_AMP] = ACTIONS(512), + [anon_sym_AMP_AMP] = ACTIONS(512), + [anon_sym_PIPE_PIPE] = ACTIONS(512), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_LF] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(512), + }, + [1857] = { + [sym__concat] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(516), + [anon_sym_SEMI_SEMI] = ACTIONS(516), + [anon_sym_PIPE_AMP] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(516), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_LF] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(516), + }, + [1858] = { + [anon_sym_EQ] = ACTIONS(5169), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1859] = { + [anon_sym_RBRACE] = ACTIONS(5171), + [anon_sym_EQ] = ACTIONS(5173), + [anon_sym_COLON] = ACTIONS(5175), + [anon_sym_COLON_QMARK] = ACTIONS(5173), + [anon_sym_COLON_DASH] = ACTIONS(5173), + [anon_sym_PERCENT] = ACTIONS(5173), + [anon_sym_SLASH] = ACTIONS(5173), + [anon_sym_DASH] = ACTIONS(5173), + [sym_comment] = ACTIONS(48), + }, + [1860] = { + [sym_subscript] = STATE(2256), + [sym_variable_name] = ACTIONS(5177), + [anon_sym_DOLLAR] = ACTIONS(5179), + [anon_sym_DASH] = ACTIONS(5179), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5181), + [anon_sym_STAR] = ACTIONS(5179), + [anon_sym_AT] = ACTIONS(5179), + [anon_sym_QMARK] = ACTIONS(5179), + [anon_sym_0] = ACTIONS(5183), + [anon_sym__] = ACTIONS(5183), + }, + [1861] = { + [anon_sym_RBRACE] = ACTIONS(5185), + [anon_sym_EQ] = ACTIONS(5187), + [anon_sym_COLON] = ACTIONS(5189), + [anon_sym_COLON_QMARK] = ACTIONS(5187), + [anon_sym_COLON_DASH] = ACTIONS(5187), + [anon_sym_PERCENT] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [sym_comment] = ACTIONS(48), + }, + [1862] = { + [anon_sym_RBRACE] = ACTIONS(5191), + [anon_sym_EQ] = ACTIONS(5169), + [anon_sym_COLON] = ACTIONS(5193), + [anon_sym_COLON_QMARK] = ACTIONS(5169), + [anon_sym_COLON_DASH] = ACTIONS(5169), + [anon_sym_PERCENT] = ACTIONS(5169), + [anon_sym_SLASH] = ACTIONS(5169), + [anon_sym_DASH] = ACTIONS(5169), + [sym_comment] = ACTIONS(48), + }, + [1863] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(5195), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1864] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(5195), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1865] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(5195), + [sym_comment] = ACTIONS(48), + }, + [1866] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(5195), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1867] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(5197), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1868] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(5197), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1869] = { + [sym__concat] = ACTIONS(1157), + [sym_variable_name] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1159), + [sym_word] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [1870] = { + [aux_sym_concatenation_repeat1] = STATE(1870), + [sym__concat] = ACTIONS(5199), + [sym_variable_name] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1159), + [sym_word] = ACTIONS(1159), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [1871] = { + [sym__concat] = ACTIONS(1196), + [sym_variable_name] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1198), + [anon_sym_RPAREN] = ACTIONS(1198), + [anon_sym_SEMI_SEMI] = ACTIONS(1198), + [anon_sym_PIPE_AMP] = ACTIONS(1198), + [anon_sym_AMP_AMP] = ACTIONS(1198), + [anon_sym_PIPE_PIPE] = ACTIONS(1198), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1198), + [sym_word] = ACTIONS(1198), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + }, + [1872] = { + [sym_concatenation] = STATE(2265), + [sym_string] = STATE(2264), + [sym_simple_expansion] = STATE(2264), + [sym_expansion] = STATE(2264), + [sym_command_substitution] = STATE(2264), + [sym_process_substitution] = STATE(2264), + [anon_sym_RBRACE] = ACTIONS(5202), + [sym__special_characters] = ACTIONS(5204), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5206), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5208), + }, + [1873] = { + [sym__concat] = ACTIONS(1241), + [sym_variable_name] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_RPAREN] = ACTIONS(1243), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1243), + [sym_word] = ACTIONS(1243), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1243), + }, + [1874] = { + [sym_concatenation] = STATE(2269), + [sym_string] = STATE(2268), + [sym_simple_expansion] = STATE(2268), + [sym_expansion] = STATE(2268), + [sym_command_substitution] = STATE(2268), + [sym_process_substitution] = STATE(2268), + [anon_sym_RBRACE] = ACTIONS(5210), + [sym__special_characters] = ACTIONS(5212), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5214), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5216), + }, + [1875] = { + [anon_sym_EQ] = ACTIONS(5218), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1876] = { + [anon_sym_RBRACE] = ACTIONS(5220), + [anon_sym_EQ] = ACTIONS(5222), + [anon_sym_COLON] = ACTIONS(5224), + [anon_sym_COLON_QMARK] = ACTIONS(5222), + [anon_sym_COLON_DASH] = ACTIONS(5222), + [anon_sym_PERCENT] = ACTIONS(5222), + [anon_sym_SLASH] = ACTIONS(5222), + [anon_sym_DASH] = ACTIONS(5222), + [sym_comment] = ACTIONS(48), + }, + [1877] = { + [anon_sym_RBRACE] = ACTIONS(5226), + [anon_sym_EQ] = ACTIONS(5228), + [anon_sym_COLON] = ACTIONS(5230), + [anon_sym_COLON_QMARK] = ACTIONS(5228), + [anon_sym_COLON_DASH] = ACTIONS(5228), + [anon_sym_PERCENT] = ACTIONS(5228), + [anon_sym_SLASH] = ACTIONS(5228), + [anon_sym_DASH] = ACTIONS(5228), + [sym_comment] = ACTIONS(48), + }, + [1878] = { + [anon_sym_RBRACE] = ACTIONS(5202), + [anon_sym_EQ] = ACTIONS(5218), + [anon_sym_COLON] = ACTIONS(5232), + [anon_sym_COLON_QMARK] = ACTIONS(5218), + [anon_sym_COLON_DASH] = ACTIONS(5218), + [anon_sym_PERCENT] = ACTIONS(5218), + [anon_sym_SLASH] = ACTIONS(5218), + [anon_sym_DASH] = ACTIONS(5218), + [sym_comment] = ACTIONS(48), + }, + [1879] = { + [sym__concat] = ACTIONS(1269), + [sym_variable_name] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_RPAREN] = ACTIONS(1271), + [anon_sym_SEMI_SEMI] = ACTIONS(1271), + [anon_sym_PIPE_AMP] = ACTIONS(1271), + [anon_sym_AMP_AMP] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1271), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1271), + [sym_word] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_LF] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + }, + [1880] = { + [sym_concatenation] = STATE(2278), + [sym_string] = STATE(2277), + [sym_simple_expansion] = STATE(2277), + [sym_expansion] = STATE(2277), + [sym_command_substitution] = STATE(2277), + [sym_process_substitution] = STATE(2277), + [anon_sym_RBRACE] = ACTIONS(5234), + [sym__special_characters] = ACTIONS(5236), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5238), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5240), + }, + [1881] = { + [sym__concat] = ACTIONS(1281), + [sym_variable_name] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_RPAREN] = ACTIONS(1283), + [anon_sym_SEMI_SEMI] = ACTIONS(1283), + [anon_sym_PIPE_AMP] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1283), + [anon_sym_PIPE_PIPE] = ACTIONS(1283), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1283), + [sym_word] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + }, + [1882] = { + [sym__concat] = ACTIONS(1379), + [sym_variable_name] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_RPAREN] = ACTIONS(1381), + [anon_sym_SEMI_SEMI] = ACTIONS(1381), + [anon_sym_PIPE_AMP] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [anon_sym_PIPE_PIPE] = ACTIONS(1381), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1381), + [sym_word] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_LF] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + }, + [1883] = { + [sym__concat] = ACTIONS(1513), + [sym_variable_name] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_SEMI_SEMI] = ACTIONS(1515), + [anon_sym_PIPE_AMP] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE_PIPE] = ACTIONS(1515), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1515), + [sym_word] = ACTIONS(1515), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + }, + [1884] = { + [sym_file_descriptor] = ACTIONS(4464), + [sym__concat] = ACTIONS(4464), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_RPAREN] = ACTIONS(4466), + [anon_sym_SEMI_SEMI] = ACTIONS(4466), + [anon_sym_PIPE_AMP] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_PIPE_PIPE] = ACTIONS(4466), + [anon_sym_LT] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4466), + [anon_sym_GT_GT] = ACTIONS(4466), + [anon_sym_AMP_GT] = ACTIONS(4466), + [anon_sym_AMP_GT_GT] = ACTIONS(4466), + [anon_sym_LT_AMP] = ACTIONS(4466), + [anon_sym_GT_AMP] = ACTIONS(4466), + [anon_sym_LT_LT] = ACTIONS(4466), + [anon_sym_LT_LT_DASH] = ACTIONS(4466), + [anon_sym_LT_LT_LT] = ACTIONS(4466), + [sym__special_characters] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4466), + [sym_raw_string] = ACTIONS(4466), + [anon_sym_DOLLAR] = ACTIONS(4466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4466), + [anon_sym_BQUOTE] = ACTIONS(4466), + [anon_sym_LT_LPAREN] = ACTIONS(4466), + [anon_sym_GT_LPAREN] = ACTIONS(4466), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4466), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym_LF] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4466), + }, + [1885] = { + [sym_file_descriptor] = ACTIONS(4468), + [sym__concat] = ACTIONS(4468), + [anon_sym_PIPE] = ACTIONS(4470), + [anon_sym_RPAREN] = ACTIONS(4470), + [anon_sym_SEMI_SEMI] = ACTIONS(4470), + [anon_sym_PIPE_AMP] = ACTIONS(4470), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE_PIPE] = ACTIONS(4470), + [anon_sym_LT] = ACTIONS(4470), + [anon_sym_GT] = ACTIONS(4470), + [anon_sym_GT_GT] = ACTIONS(4470), + [anon_sym_AMP_GT] = ACTIONS(4470), + [anon_sym_AMP_GT_GT] = ACTIONS(4470), + [anon_sym_LT_AMP] = ACTIONS(4470), + [anon_sym_GT_AMP] = ACTIONS(4470), + [anon_sym_LT_LT] = ACTIONS(4470), + [anon_sym_LT_LT_DASH] = ACTIONS(4470), + [anon_sym_LT_LT_LT] = ACTIONS(4470), + [sym__special_characters] = ACTIONS(4470), + [anon_sym_DQUOTE] = ACTIONS(4470), + [sym_raw_string] = ACTIONS(4470), + [anon_sym_DOLLAR] = ACTIONS(4470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4470), + [anon_sym_BQUOTE] = ACTIONS(4470), + [anon_sym_LT_LPAREN] = ACTIONS(4470), + [anon_sym_GT_LPAREN] = ACTIONS(4470), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4470), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_LF] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4470), + }, + [1886] = { + [sym_file_descriptor] = ACTIONS(4472), + [sym__concat] = ACTIONS(4472), + [anon_sym_PIPE] = ACTIONS(4474), + [anon_sym_RPAREN] = ACTIONS(4474), + [anon_sym_SEMI_SEMI] = ACTIONS(4474), + [anon_sym_PIPE_AMP] = ACTIONS(4474), + [anon_sym_AMP_AMP] = ACTIONS(4474), + [anon_sym_PIPE_PIPE] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4474), + [anon_sym_GT] = ACTIONS(4474), + [anon_sym_GT_GT] = ACTIONS(4474), + [anon_sym_AMP_GT] = ACTIONS(4474), + [anon_sym_AMP_GT_GT] = ACTIONS(4474), + [anon_sym_LT_AMP] = ACTIONS(4474), + [anon_sym_GT_AMP] = ACTIONS(4474), + [anon_sym_LT_LT] = ACTIONS(4474), + [anon_sym_LT_LT_DASH] = ACTIONS(4474), + [anon_sym_LT_LT_LT] = ACTIONS(4474), + [sym__special_characters] = ACTIONS(4474), + [anon_sym_DQUOTE] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(4474), + [anon_sym_DOLLAR] = ACTIONS(4474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4474), + [anon_sym_BQUOTE] = ACTIONS(4474), + [anon_sym_LT_LPAREN] = ACTIONS(4474), + [anon_sym_GT_LPAREN] = ACTIONS(4474), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4474), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym_LF] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4474), + }, + [1887] = { + [sym_file_descriptor] = ACTIONS(4476), + [sym__concat] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(4478), + [anon_sym_RPAREN] = ACTIONS(4478), + [anon_sym_SEMI_SEMI] = ACTIONS(4478), + [anon_sym_PIPE_AMP] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4478), + [anon_sym_GT] = ACTIONS(4478), + [anon_sym_GT_GT] = ACTIONS(4478), + [anon_sym_AMP_GT] = ACTIONS(4478), + [anon_sym_AMP_GT_GT] = ACTIONS(4478), + [anon_sym_LT_AMP] = ACTIONS(4478), + [anon_sym_GT_AMP] = ACTIONS(4478), + [anon_sym_LT_LT] = ACTIONS(4478), + [anon_sym_LT_LT_DASH] = ACTIONS(4478), + [anon_sym_LT_LT_LT] = ACTIONS(4478), + [sym__special_characters] = ACTIONS(4478), + [anon_sym_DQUOTE] = ACTIONS(4478), + [sym_raw_string] = ACTIONS(4478), + [anon_sym_DOLLAR] = ACTIONS(4478), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), + [anon_sym_BQUOTE] = ACTIONS(4478), + [anon_sym_LT_LPAREN] = ACTIONS(4478), + [anon_sym_GT_LPAREN] = ACTIONS(4478), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4478), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_LF] = ACTIONS(4478), + [anon_sym_AMP] = ACTIONS(4478), + }, + [1888] = { + [sym_file_descriptor] = ACTIONS(4480), + [sym__concat] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(4482), + [anon_sym_RPAREN] = ACTIONS(4482), + [anon_sym_SEMI_SEMI] = ACTIONS(4482), + [anon_sym_PIPE_AMP] = ACTIONS(4482), + [anon_sym_AMP_AMP] = ACTIONS(4482), + [anon_sym_PIPE_PIPE] = ACTIONS(4482), + [anon_sym_LT] = ACTIONS(4482), + [anon_sym_GT] = ACTIONS(4482), + [anon_sym_GT_GT] = ACTIONS(4482), + [anon_sym_AMP_GT] = ACTIONS(4482), + [anon_sym_AMP_GT_GT] = ACTIONS(4482), + [anon_sym_LT_AMP] = ACTIONS(4482), + [anon_sym_GT_AMP] = ACTIONS(4482), + [anon_sym_LT_LT] = ACTIONS(4482), + [anon_sym_LT_LT_DASH] = ACTIONS(4482), + [anon_sym_LT_LT_LT] = ACTIONS(4482), + [sym__special_characters] = ACTIONS(4482), + [anon_sym_DQUOTE] = ACTIONS(4482), + [sym_raw_string] = ACTIONS(4482), + [anon_sym_DOLLAR] = ACTIONS(4482), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4482), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4482), + [anon_sym_GT_LPAREN] = ACTIONS(4482), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4482), + [anon_sym_LF] = ACTIONS(4482), + [anon_sym_AMP] = ACTIONS(4482), + }, + [1889] = { + [sym_file_descriptor] = ACTIONS(4484), + [sym__concat] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(4486), + [anon_sym_RPAREN] = ACTIONS(4486), + [anon_sym_SEMI_SEMI] = ACTIONS(4486), + [anon_sym_PIPE_AMP] = ACTIONS(4486), + [anon_sym_AMP_AMP] = ACTIONS(4486), + [anon_sym_PIPE_PIPE] = ACTIONS(4486), + [anon_sym_LT] = ACTIONS(4486), + [anon_sym_GT] = ACTIONS(4486), + [anon_sym_GT_GT] = ACTIONS(4486), + [anon_sym_AMP_GT] = ACTIONS(4486), + [anon_sym_AMP_GT_GT] = ACTIONS(4486), + [anon_sym_LT_AMP] = ACTIONS(4486), + [anon_sym_GT_AMP] = ACTIONS(4486), + [anon_sym_LT_LT] = ACTIONS(4486), + [anon_sym_LT_LT_DASH] = ACTIONS(4486), + [anon_sym_LT_LT_LT] = ACTIONS(4486), + [sym__special_characters] = ACTIONS(4486), + [anon_sym_DQUOTE] = ACTIONS(4486), + [sym_raw_string] = ACTIONS(4486), + [anon_sym_DOLLAR] = ACTIONS(4486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4486), + [anon_sym_BQUOTE] = ACTIONS(4486), + [anon_sym_LT_LPAREN] = ACTIONS(4486), + [anon_sym_GT_LPAREN] = ACTIONS(4486), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4486), + [anon_sym_SEMI] = ACTIONS(4486), + [anon_sym_LF] = ACTIONS(4486), + [anon_sym_AMP] = ACTIONS(4486), + }, + [1890] = { + [sym_file_descriptor] = ACTIONS(2176), + [sym__concat] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_RPAREN] = ACTIONS(2178), + [anon_sym_SEMI_SEMI] = ACTIONS(2178), + [anon_sym_PIPE_AMP] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2178), + [anon_sym_PIPE_PIPE] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2178), + [anon_sym_AMP_GT] = ACTIONS(2178), + [anon_sym_AMP_GT_GT] = ACTIONS(2178), + [anon_sym_LT_AMP] = ACTIONS(2178), + [anon_sym_GT_AMP] = ACTIONS(2178), + [anon_sym_LT_LT] = ACTIONS(2178), + [anon_sym_LT_LT_DASH] = ACTIONS(2178), + [anon_sym_LT_LT_LT] = ACTIONS(2178), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_LF] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + }, + [1891] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5242), + [sym_comment] = ACTIONS(48), + }, + [1892] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5244), + [sym_comment] = ACTIONS(48), + }, + [1893] = { + [anon_sym_RBRACE] = ACTIONS(5244), + [sym_comment] = ACTIONS(48), + }, + [1894] = { + [sym_file_descriptor] = ACTIONS(2214), + [sym__concat] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2216), + [anon_sym_RPAREN] = ACTIONS(2216), + [anon_sym_SEMI_SEMI] = ACTIONS(2216), + [anon_sym_PIPE_AMP] = ACTIONS(2216), + [anon_sym_AMP_AMP] = ACTIONS(2216), + [anon_sym_PIPE_PIPE] = ACTIONS(2216), + [anon_sym_LT] = ACTIONS(2216), + [anon_sym_GT] = ACTIONS(2216), + [anon_sym_GT_GT] = ACTIONS(2216), + [anon_sym_AMP_GT] = ACTIONS(2216), + [anon_sym_AMP_GT_GT] = ACTIONS(2216), + [anon_sym_LT_AMP] = ACTIONS(2216), + [anon_sym_GT_AMP] = ACTIONS(2216), + [anon_sym_LT_LT] = ACTIONS(2216), + [anon_sym_LT_LT_DASH] = ACTIONS(2216), + [anon_sym_LT_LT_LT] = ACTIONS(2216), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_LF] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2216), + }, + [1895] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5246), + [sym_comment] = ACTIONS(48), + }, + [1896] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5248), + [sym_comment] = ACTIONS(48), + }, + [1897] = { + [anon_sym_RBRACE] = ACTIONS(5248), + [sym_comment] = ACTIONS(48), + }, + [1898] = { + [sym_concatenation] = STATE(2285), + [sym_string] = STATE(2284), + [sym_simple_expansion] = STATE(2284), + [sym_expansion] = STATE(2284), + [sym_command_substitution] = STATE(2284), + [sym_process_substitution] = STATE(2284), + [anon_sym_RBRACE] = ACTIONS(5244), + [sym__special_characters] = ACTIONS(5250), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5252), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5254), + }, + [1899] = { + [sym_file_descriptor] = ACTIONS(2228), + [sym__concat] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2230), + [anon_sym_RPAREN] = ACTIONS(2230), + [anon_sym_SEMI_SEMI] = ACTIONS(2230), + [anon_sym_PIPE_AMP] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2230), + [anon_sym_PIPE_PIPE] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2230), + [anon_sym_GT] = ACTIONS(2230), + [anon_sym_GT_GT] = ACTIONS(2230), + [anon_sym_AMP_GT] = ACTIONS(2230), + [anon_sym_AMP_GT_GT] = ACTIONS(2230), + [anon_sym_LT_AMP] = ACTIONS(2230), + [anon_sym_GT_AMP] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(2230), + [anon_sym_LT_LT_DASH] = ACTIONS(2230), + [anon_sym_LT_LT_LT] = ACTIONS(2230), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_LF] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2230), + }, + [1900] = { + [sym_concatenation] = STATE(2289), + [sym_string] = STATE(2288), + [sym_simple_expansion] = STATE(2288), + [sym_expansion] = STATE(2288), + [sym_command_substitution] = STATE(2288), + [sym_process_substitution] = STATE(2288), + [anon_sym_RBRACE] = ACTIONS(5256), + [sym__special_characters] = ACTIONS(5258), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5260), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5262), + }, + [1901] = { + [sym_file_descriptor] = ACTIONS(2240), + [sym__concat] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_RPAREN] = ACTIONS(2242), + [anon_sym_SEMI_SEMI] = ACTIONS(2242), + [anon_sym_PIPE_AMP] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2242), + [anon_sym_GT_GT] = ACTIONS(2242), + [anon_sym_AMP_GT] = ACTIONS(2242), + [anon_sym_AMP_GT_GT] = ACTIONS(2242), + [anon_sym_LT_AMP] = ACTIONS(2242), + [anon_sym_GT_AMP] = ACTIONS(2242), + [anon_sym_LT_LT] = ACTIONS(2242), + [anon_sym_LT_LT_DASH] = ACTIONS(2242), + [anon_sym_LT_LT_LT] = ACTIONS(2242), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_LF] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + }, + [1902] = { + [sym_concatenation] = STATE(2293), + [sym_string] = STATE(2292), + [sym_simple_expansion] = STATE(2292), + [sym_expansion] = STATE(2292), + [sym_command_substitution] = STATE(2292), + [sym_process_substitution] = STATE(2292), + [anon_sym_RBRACE] = ACTIONS(5264), + [sym__special_characters] = ACTIONS(5266), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5268), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5270), + }, + [1903] = { + [sym_file_descriptor] = ACTIONS(2252), + [sym__concat] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_RPAREN] = ACTIONS(2254), + [anon_sym_SEMI_SEMI] = ACTIONS(2254), + [anon_sym_PIPE_AMP] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_GT_GT] = ACTIONS(2254), + [anon_sym_AMP_GT] = ACTIONS(2254), + [anon_sym_AMP_GT_GT] = ACTIONS(2254), + [anon_sym_LT_AMP] = ACTIONS(2254), + [anon_sym_GT_AMP] = ACTIONS(2254), + [anon_sym_LT_LT] = ACTIONS(2254), + [anon_sym_LT_LT_DASH] = ACTIONS(2254), + [anon_sym_LT_LT_LT] = ACTIONS(2254), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LF] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + }, + [1904] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5272), + [sym_comment] = ACTIONS(48), + }, + [1905] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5274), + [sym_comment] = ACTIONS(48), + }, + [1906] = { + [anon_sym_RBRACE] = ACTIONS(5274), + [sym_comment] = ACTIONS(48), + }, + [1907] = { + [sym__concat] = ACTIONS(2176), + [sym_variable_name] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_SEMI_SEMI] = ACTIONS(2178), + [anon_sym_PIPE_AMP] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2178), + [anon_sym_PIPE_PIPE] = ACTIONS(2178), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2178), + [sym_word] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_LF] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + }, + [1908] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5276), + [sym_comment] = ACTIONS(48), + }, + [1909] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5278), + [sym_comment] = ACTIONS(48), + }, + [1910] = { + [anon_sym_RBRACE] = ACTIONS(5278), + [sym_comment] = ACTIONS(48), + }, + [1911] = { + [sym__concat] = ACTIONS(2214), + [sym_variable_name] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2216), + [anon_sym_SEMI_SEMI] = ACTIONS(2216), + [anon_sym_PIPE_AMP] = ACTIONS(2216), + [anon_sym_AMP_AMP] = ACTIONS(2216), + [anon_sym_PIPE_PIPE] = ACTIONS(2216), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2216), + [sym_word] = ACTIONS(2216), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_LF] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2216), + }, + [1912] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5280), + [sym_comment] = ACTIONS(48), + }, + [1913] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5282), + [sym_comment] = ACTIONS(48), + }, + [1914] = { + [anon_sym_RBRACE] = ACTIONS(5282), + [sym_comment] = ACTIONS(48), + }, + [1915] = { + [sym_concatenation] = STATE(2302), + [sym_string] = STATE(2301), + [sym_simple_expansion] = STATE(2301), + [sym_expansion] = STATE(2301), + [sym_command_substitution] = STATE(2301), + [sym_process_substitution] = STATE(2301), + [anon_sym_RBRACE] = ACTIONS(5278), + [sym__special_characters] = ACTIONS(5284), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5286), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5288), + }, + [1916] = { + [sym__concat] = ACTIONS(2228), + [sym_variable_name] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2230), + [anon_sym_SEMI_SEMI] = ACTIONS(2230), + [anon_sym_PIPE_AMP] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2230), + [anon_sym_PIPE_PIPE] = ACTIONS(2230), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2230), + [sym_word] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_LF] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2230), + }, + [1917] = { + [sym_concatenation] = STATE(2306), + [sym_string] = STATE(2305), + [sym_simple_expansion] = STATE(2305), + [sym_expansion] = STATE(2305), + [sym_command_substitution] = STATE(2305), + [sym_process_substitution] = STATE(2305), + [anon_sym_RBRACE] = ACTIONS(5290), + [sym__special_characters] = ACTIONS(5292), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5294), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5296), + }, + [1918] = { + [sym__concat] = ACTIONS(2240), + [sym_variable_name] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_SEMI_SEMI] = ACTIONS(2242), + [anon_sym_PIPE_AMP] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2242), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2242), + [sym_word] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_LF] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + }, + [1919] = { + [sym_concatenation] = STATE(2310), + [sym_string] = STATE(2309), + [sym_simple_expansion] = STATE(2309), + [sym_expansion] = STATE(2309), + [sym_command_substitution] = STATE(2309), + [sym_process_substitution] = STATE(2309), + [anon_sym_RBRACE] = ACTIONS(5298), + [sym__special_characters] = ACTIONS(5300), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5302), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5304), + }, + [1920] = { + [sym__concat] = ACTIONS(2252), + [sym_variable_name] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_SEMI_SEMI] = ACTIONS(2254), + [anon_sym_PIPE_AMP] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2254), + [sym_word] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LF] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + }, + [1921] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5306), + [sym_comment] = ACTIONS(48), + }, + [1922] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5308), + [sym_comment] = ACTIONS(48), + }, + [1923] = { + [anon_sym_RBRACE] = ACTIONS(5308), + [sym_comment] = ACTIONS(48), + }, + [1924] = { + [sym_file_descriptor] = ACTIONS(4464), + [sym__concat] = ACTIONS(4464), + [sym_variable_name] = ACTIONS(4464), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_GT_GT] = ACTIONS(4464), + [anon_sym_AMP_GT] = ACTIONS(5310), + [anon_sym_AMP_GT_GT] = ACTIONS(4464), + [anon_sym_LT_AMP] = ACTIONS(4464), + [anon_sym_GT_AMP] = ACTIONS(4464), + [sym__special_characters] = ACTIONS(5310), + [anon_sym_DQUOTE] = ACTIONS(4464), + [sym_raw_string] = ACTIONS(4464), + [anon_sym_DOLLAR] = ACTIONS(5310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4464), + [anon_sym_BQUOTE] = ACTIONS(4464), + [anon_sym_LT_LPAREN] = ACTIONS(4464), + [anon_sym_GT_LPAREN] = ACTIONS(4464), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5310), + }, + [1925] = { + [sym_file_descriptor] = ACTIONS(4468), + [sym__concat] = ACTIONS(4468), + [sym_variable_name] = ACTIONS(4468), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_AMP_GT] = ACTIONS(5312), + [anon_sym_AMP_GT_GT] = ACTIONS(4468), + [anon_sym_LT_AMP] = ACTIONS(4468), + [anon_sym_GT_AMP] = ACTIONS(4468), + [sym__special_characters] = ACTIONS(5312), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym_raw_string] = ACTIONS(4468), + [anon_sym_DOLLAR] = ACTIONS(5312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4468), + [anon_sym_BQUOTE] = ACTIONS(4468), + [anon_sym_LT_LPAREN] = ACTIONS(4468), + [anon_sym_GT_LPAREN] = ACTIONS(4468), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5312), + }, + [1926] = { + [sym_file_descriptor] = ACTIONS(4472), + [sym__concat] = ACTIONS(4472), + [sym_variable_name] = ACTIONS(4472), + [anon_sym_LT] = ACTIONS(5314), + [anon_sym_GT] = ACTIONS(5314), + [anon_sym_GT_GT] = ACTIONS(4472), + [anon_sym_AMP_GT] = ACTIONS(5314), + [anon_sym_AMP_GT_GT] = ACTIONS(4472), + [anon_sym_LT_AMP] = ACTIONS(4472), + [anon_sym_GT_AMP] = ACTIONS(4472), + [sym__special_characters] = ACTIONS(5314), + [anon_sym_DQUOTE] = ACTIONS(4472), + [sym_raw_string] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(5314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4472), + [anon_sym_BQUOTE] = ACTIONS(4472), + [anon_sym_LT_LPAREN] = ACTIONS(4472), + [anon_sym_GT_LPAREN] = ACTIONS(4472), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5314), + }, + [1927] = { + [sym_file_descriptor] = ACTIONS(4476), + [sym__concat] = ACTIONS(4476), + [sym_variable_name] = ACTIONS(4476), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_GT_GT] = ACTIONS(4476), + [anon_sym_AMP_GT] = ACTIONS(5316), + [anon_sym_AMP_GT_GT] = ACTIONS(4476), + [anon_sym_LT_AMP] = ACTIONS(4476), + [anon_sym_GT_AMP] = ACTIONS(4476), + [sym__special_characters] = ACTIONS(5316), + [anon_sym_DQUOTE] = ACTIONS(4476), + [sym_raw_string] = ACTIONS(4476), + [anon_sym_DOLLAR] = ACTIONS(5316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4476), + [anon_sym_BQUOTE] = ACTIONS(4476), + [anon_sym_LT_LPAREN] = ACTIONS(4476), + [anon_sym_GT_LPAREN] = ACTIONS(4476), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5316), + }, + [1928] = { + [sym_file_descriptor] = ACTIONS(4480), + [sym__concat] = ACTIONS(4480), + [sym_variable_name] = ACTIONS(4480), + [anon_sym_LT] = ACTIONS(5318), + [anon_sym_GT] = ACTIONS(5318), + [anon_sym_GT_GT] = ACTIONS(4480), + [anon_sym_AMP_GT] = ACTIONS(5318), + [anon_sym_AMP_GT_GT] = ACTIONS(4480), + [anon_sym_LT_AMP] = ACTIONS(4480), + [anon_sym_GT_AMP] = ACTIONS(4480), + [sym__special_characters] = ACTIONS(5318), + [anon_sym_DQUOTE] = ACTIONS(4480), + [sym_raw_string] = ACTIONS(4480), + [anon_sym_DOLLAR] = ACTIONS(5318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4480), + [anon_sym_LT_LPAREN] = ACTIONS(4480), + [anon_sym_GT_LPAREN] = ACTIONS(4480), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5318), + }, + [1929] = { + [sym_file_descriptor] = ACTIONS(4484), + [sym__concat] = ACTIONS(4484), + [sym_variable_name] = ACTIONS(4484), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_GT_GT] = ACTIONS(4484), + [anon_sym_AMP_GT] = ACTIONS(5320), + [anon_sym_AMP_GT_GT] = ACTIONS(4484), + [anon_sym_LT_AMP] = ACTIONS(4484), + [anon_sym_GT_AMP] = ACTIONS(4484), + [sym__special_characters] = ACTIONS(5320), + [anon_sym_DQUOTE] = ACTIONS(4484), + [sym_raw_string] = ACTIONS(4484), + [anon_sym_DOLLAR] = ACTIONS(5320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4484), + [anon_sym_BQUOTE] = ACTIONS(4484), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5320), + }, + [1930] = { + [sym__concat] = ACTIONS(4464), + [anon_sym_DQUOTE] = ACTIONS(4466), + [sym__string_content] = ACTIONS(5310), + [anon_sym_DOLLAR] = ACTIONS(4466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4466), + [anon_sym_BQUOTE] = ACTIONS(4466), + [sym_comment] = ACTIONS(110), + }, + [1931] = { + [sym__concat] = ACTIONS(4468), + [anon_sym_DQUOTE] = ACTIONS(4470), + [sym__string_content] = ACTIONS(5312), + [anon_sym_DOLLAR] = ACTIONS(4470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4470), + [anon_sym_BQUOTE] = ACTIONS(4470), + [sym_comment] = ACTIONS(110), + }, + [1932] = { + [sym__concat] = ACTIONS(4472), + [anon_sym_DQUOTE] = ACTIONS(4474), + [sym__string_content] = ACTIONS(5314), + [anon_sym_DOLLAR] = ACTIONS(4474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4474), + [anon_sym_BQUOTE] = ACTIONS(4474), + [sym_comment] = ACTIONS(110), + }, + [1933] = { + [sym__concat] = ACTIONS(4476), + [anon_sym_DQUOTE] = ACTIONS(4478), + [sym__string_content] = ACTIONS(5316), + [anon_sym_DOLLAR] = ACTIONS(4478), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), + [anon_sym_BQUOTE] = ACTIONS(4478), + [sym_comment] = ACTIONS(110), + }, + [1934] = { + [sym__concat] = ACTIONS(4480), + [anon_sym_DQUOTE] = ACTIONS(4482), + [sym__string_content] = ACTIONS(5318), + [anon_sym_DOLLAR] = ACTIONS(4482), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4482), + [anon_sym_BQUOTE] = ACTIONS(4482), + [sym_comment] = ACTIONS(110), + }, + [1935] = { + [sym__concat] = ACTIONS(4484), + [anon_sym_DQUOTE] = ACTIONS(4486), + [sym__string_content] = ACTIONS(5320), + [anon_sym_DOLLAR] = ACTIONS(4486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4486), + [anon_sym_BQUOTE] = ACTIONS(4486), + [sym_comment] = ACTIONS(110), + }, + [1936] = { + [sym__concat] = ACTIONS(2176), + [anon_sym_RBRACE] = ACTIONS(2176), + [sym_comment] = ACTIONS(48), + }, + [1937] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5322), + [sym_comment] = ACTIONS(48), + }, + [1938] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5324), + [sym_comment] = ACTIONS(48), + }, + [1939] = { + [anon_sym_RBRACE] = ACTIONS(5324), + [sym_comment] = ACTIONS(48), + }, + [1940] = { + [sym__concat] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2214), + [sym_comment] = ACTIONS(48), + }, + [1941] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5326), + [sym_comment] = ACTIONS(48), + }, + [1942] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5328), + [sym_comment] = ACTIONS(48), + }, + [1943] = { + [anon_sym_RBRACE] = ACTIONS(5328), + [sym_comment] = ACTIONS(48), + }, + [1944] = { + [sym_concatenation] = STATE(2319), + [sym_string] = STATE(2318), + [sym_simple_expansion] = STATE(2318), + [sym_expansion] = STATE(2318), + [sym_command_substitution] = STATE(2318), + [sym_process_substitution] = STATE(2318), + [anon_sym_RBRACE] = ACTIONS(5324), + [sym__special_characters] = ACTIONS(5330), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5332), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5334), + }, + [1945] = { + [sym__concat] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [sym_comment] = ACTIONS(48), + }, + [1946] = { + [sym_concatenation] = STATE(2323), + [sym_string] = STATE(2322), + [sym_simple_expansion] = STATE(2322), + [sym_expansion] = STATE(2322), + [sym_command_substitution] = STATE(2322), + [sym_process_substitution] = STATE(2322), + [anon_sym_RBRACE] = ACTIONS(5336), + [sym__special_characters] = ACTIONS(5338), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5340), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5342), + }, + [1947] = { + [sym__concat] = ACTIONS(2240), + [anon_sym_RBRACE] = ACTIONS(2240), + [sym_comment] = ACTIONS(48), + }, + [1948] = { + [sym_concatenation] = STATE(2327), + [sym_string] = STATE(2326), + [sym_simple_expansion] = STATE(2326), + [sym_expansion] = STATE(2326), + [sym_command_substitution] = STATE(2326), + [sym_process_substitution] = STATE(2326), + [anon_sym_RBRACE] = ACTIONS(5344), + [sym__special_characters] = ACTIONS(5346), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5348), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5350), + }, + [1949] = { + [sym__concat] = ACTIONS(2252), + [anon_sym_RBRACE] = ACTIONS(2252), + [sym_comment] = ACTIONS(48), + }, + [1950] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5352), + [sym_comment] = ACTIONS(48), + }, + [1951] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5354), + [sym_comment] = ACTIONS(48), + }, + [1952] = { + [anon_sym_RBRACE] = ACTIONS(5354), + [sym_comment] = ACTIONS(48), + }, + [1953] = { + [sym_file_descriptor] = ACTIONS(2176), + [sym__concat] = ACTIONS(2176), + [sym_variable_name] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(3271), + [anon_sym_RPAREN] = ACTIONS(2176), + [anon_sym_PIPE_AMP] = ACTIONS(2176), + [anon_sym_AMP_AMP] = ACTIONS(2176), + [anon_sym_PIPE_PIPE] = ACTIONS(3271), + [anon_sym_LT] = ACTIONS(3271), + [anon_sym_GT] = ACTIONS(3271), + [anon_sym_GT_GT] = ACTIONS(2176), + [anon_sym_AMP_GT] = ACTIONS(3271), + [anon_sym_AMP_GT_GT] = ACTIONS(2176), + [anon_sym_LT_AMP] = ACTIONS(2176), + [anon_sym_GT_AMP] = ACTIONS(2176), + [sym__special_characters] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(2176), + [sym_raw_string] = ACTIONS(2176), + [anon_sym_DOLLAR] = ACTIONS(3271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2176), + [anon_sym_BQUOTE] = ACTIONS(2176), + [anon_sym_LT_LPAREN] = ACTIONS(2176), + [anon_sym_GT_LPAREN] = ACTIONS(2176), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2178), + }, + [1954] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5356), + [sym_comment] = ACTIONS(48), + }, + [1955] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5358), + [sym_comment] = ACTIONS(48), + }, + [1956] = { + [anon_sym_RBRACE] = ACTIONS(5358), + [sym_comment] = ACTIONS(48), + }, + [1957] = { + [sym_file_descriptor] = ACTIONS(2214), + [sym__concat] = ACTIONS(2214), + [sym_variable_name] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_RPAREN] = ACTIONS(2214), + [anon_sym_PIPE_AMP] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_GT] = ACTIONS(3277), + [anon_sym_GT_GT] = ACTIONS(2214), + [anon_sym_AMP_GT] = ACTIONS(3277), + [anon_sym_AMP_GT_GT] = ACTIONS(2214), + [anon_sym_LT_AMP] = ACTIONS(2214), + [anon_sym_GT_AMP] = ACTIONS(2214), + [sym__special_characters] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(2214), + [sym_raw_string] = ACTIONS(2214), + [anon_sym_DOLLAR] = ACTIONS(3277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2214), + [anon_sym_BQUOTE] = ACTIONS(2214), + [anon_sym_LT_LPAREN] = ACTIONS(2214), + [anon_sym_GT_LPAREN] = ACTIONS(2214), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2216), + }, + [1958] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5360), + [sym_comment] = ACTIONS(48), + }, + [1959] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5362), + [sym_comment] = ACTIONS(48), + }, + [1960] = { + [anon_sym_RBRACE] = ACTIONS(5362), + [sym_comment] = ACTIONS(48), + }, + [1961] = { + [sym_concatenation] = STATE(2336), + [sym_string] = STATE(2335), + [sym_simple_expansion] = STATE(2335), + [sym_expansion] = STATE(2335), + [sym_command_substitution] = STATE(2335), + [sym_process_substitution] = STATE(2335), + [anon_sym_RBRACE] = ACTIONS(5358), + [sym__special_characters] = ACTIONS(5364), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5366), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5368), + }, + [1962] = { + [sym_file_descriptor] = ACTIONS(2228), + [sym__concat] = ACTIONS(2228), + [sym_variable_name] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(3289), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_PIPE_AMP] = ACTIONS(2228), + [anon_sym_AMP_AMP] = ACTIONS(2228), + [anon_sym_PIPE_PIPE] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_GT] = ACTIONS(3289), + [anon_sym_GT_GT] = ACTIONS(2228), + [anon_sym_AMP_GT] = ACTIONS(3289), + [anon_sym_AMP_GT_GT] = ACTIONS(2228), + [anon_sym_LT_AMP] = ACTIONS(2228), + [anon_sym_GT_AMP] = ACTIONS(2228), + [sym__special_characters] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(2228), + [sym_raw_string] = ACTIONS(2228), + [anon_sym_DOLLAR] = ACTIONS(3289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2228), + [anon_sym_BQUOTE] = ACTIONS(2228), + [anon_sym_LT_LPAREN] = ACTIONS(2228), + [anon_sym_GT_LPAREN] = ACTIONS(2228), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2230), + }, + [1963] = { + [sym_concatenation] = STATE(2340), + [sym_string] = STATE(2339), + [sym_simple_expansion] = STATE(2339), + [sym_expansion] = STATE(2339), + [sym_command_substitution] = STATE(2339), + [sym_process_substitution] = STATE(2339), + [anon_sym_RBRACE] = ACTIONS(5370), + [sym__special_characters] = ACTIONS(5372), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5374), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5376), + }, + [1964] = { + [sym_file_descriptor] = ACTIONS(2240), + [sym__concat] = ACTIONS(2240), + [sym_variable_name] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_RPAREN] = ACTIONS(2240), + [anon_sym_PIPE_AMP] = ACTIONS(2240), + [anon_sym_AMP_AMP] = ACTIONS(2240), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_GT] = ACTIONS(3299), + [anon_sym_GT_GT] = ACTIONS(2240), + [anon_sym_AMP_GT] = ACTIONS(3299), + [anon_sym_AMP_GT_GT] = ACTIONS(2240), + [anon_sym_LT_AMP] = ACTIONS(2240), + [anon_sym_GT_AMP] = ACTIONS(2240), + [sym__special_characters] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(2240), + [sym_raw_string] = ACTIONS(2240), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2240), + [anon_sym_BQUOTE] = ACTIONS(2240), + [anon_sym_LT_LPAREN] = ACTIONS(2240), + [anon_sym_GT_LPAREN] = ACTIONS(2240), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2242), + }, + [1965] = { + [sym_concatenation] = STATE(2344), + [sym_string] = STATE(2343), + [sym_simple_expansion] = STATE(2343), + [sym_expansion] = STATE(2343), + [sym_command_substitution] = STATE(2343), + [sym_process_substitution] = STATE(2343), + [anon_sym_RBRACE] = ACTIONS(5378), + [sym__special_characters] = ACTIONS(5380), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5382), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5384), + }, + [1966] = { + [sym_file_descriptor] = ACTIONS(2252), + [sym__concat] = ACTIONS(2252), + [sym_variable_name] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_RPAREN] = ACTIONS(2252), + [anon_sym_PIPE_AMP] = ACTIONS(2252), + [anon_sym_AMP_AMP] = ACTIONS(2252), + [anon_sym_PIPE_PIPE] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_GT] = ACTIONS(3309), + [anon_sym_GT_GT] = ACTIONS(2252), + [anon_sym_AMP_GT] = ACTIONS(3309), + [anon_sym_AMP_GT_GT] = ACTIONS(2252), + [anon_sym_LT_AMP] = ACTIONS(2252), + [anon_sym_GT_AMP] = ACTIONS(2252), + [sym__special_characters] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(2252), + [sym_raw_string] = ACTIONS(2252), + [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2252), + [anon_sym_BQUOTE] = ACTIONS(2252), + [anon_sym_LT_LPAREN] = ACTIONS(2252), + [anon_sym_GT_LPAREN] = ACTIONS(2252), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2254), + }, + [1967] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5386), + [sym_comment] = ACTIONS(48), + }, + [1968] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5388), + [sym_comment] = ACTIONS(48), + }, + [1969] = { + [anon_sym_RBRACE] = ACTIONS(5388), + [sym_comment] = ACTIONS(48), + }, + [1970] = { + [anon_sym_PIPE] = ACTIONS(5390), + [anon_sym_RPAREN] = ACTIONS(5392), + [anon_sym_PIPE_AMP] = ACTIONS(5392), + [anon_sym_AMP_AMP] = ACTIONS(5392), + [anon_sym_PIPE_PIPE] = ACTIONS(5392), + [anon_sym_BQUOTE] = ACTIONS(5392), + [sym_comment] = ACTIONS(48), + }, + [1971] = { + [anon_sym_PIPE] = ACTIONS(5394), + [anon_sym_RPAREN] = ACTIONS(5396), + [anon_sym_PIPE_AMP] = ACTIONS(5396), + [anon_sym_AMP_AMP] = ACTIONS(5396), + [anon_sym_PIPE_PIPE] = ACTIONS(5396), + [anon_sym_BQUOTE] = ACTIONS(5396), + [sym_comment] = ACTIONS(48), + }, + [1972] = { + [anon_sym_fi] = ACTIONS(5398), + [sym_comment] = ACTIONS(48), + }, + [1973] = { + [anon_sym_PIPE] = ACTIONS(5400), + [anon_sym_RPAREN] = ACTIONS(5402), + [anon_sym_PIPE_AMP] = ACTIONS(5402), + [anon_sym_AMP_AMP] = ACTIONS(5402), + [anon_sym_PIPE_PIPE] = ACTIONS(5402), + [anon_sym_BQUOTE] = ACTIONS(5402), + [sym_comment] = ACTIONS(48), + }, + [1974] = { + [sym_case_item] = STATE(857), + [sym_concatenation] = STATE(858), + [sym_string] = STATE(851), + [sym_simple_expansion] = STATE(851), + [sym_expansion] = STATE(851), + [sym_command_substitution] = STATE(851), + [sym_process_substitution] = STATE(851), + [aux_sym_case_statement_repeat1] = STATE(1331), + [anon_sym_esac] = ACTIONS(5404), + [sym__special_characters] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1807), + [sym_raw_string] = ACTIONS(1809), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1815), + [anon_sym_BQUOTE] = ACTIONS(1817), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1821), + }, + [1975] = { + [anon_sym_PIPE] = ACTIONS(5406), + [anon_sym_RPAREN] = ACTIONS(5408), + [anon_sym_PIPE_AMP] = ACTIONS(5408), + [anon_sym_AMP_AMP] = ACTIONS(5408), + [anon_sym_PIPE_PIPE] = ACTIONS(5408), + [anon_sym_BQUOTE] = ACTIONS(5408), + [sym_comment] = ACTIONS(48), + }, + [1976] = { + [sym_case_item] = STATE(857), + [sym_concatenation] = STATE(858), + [sym_string] = STATE(851), + [sym_simple_expansion] = STATE(851), + [sym_expansion] = STATE(851), + [sym_command_substitution] = STATE(851), + [sym_process_substitution] = STATE(851), + [aux_sym_case_statement_repeat1] = STATE(1331), + [anon_sym_esac] = ACTIONS(5410), + [sym__special_characters] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1807), + [sym_raw_string] = ACTIONS(1809), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1813), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1815), + [anon_sym_BQUOTE] = ACTIONS(1817), + [anon_sym_LT_LPAREN] = ACTIONS(1819), + [anon_sym_GT_LPAREN] = ACTIONS(1819), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(1821), + }, + [1977] = { + [anon_sym_PIPE] = ACTIONS(5412), + [anon_sym_RPAREN] = ACTIONS(5414), + [anon_sym_PIPE_AMP] = ACTIONS(5414), + [anon_sym_AMP_AMP] = ACTIONS(5414), + [anon_sym_PIPE_PIPE] = ACTIONS(5414), + [anon_sym_BQUOTE] = ACTIONS(5414), + [sym_comment] = ACTIONS(48), + }, + [1978] = { + [aux_sym_concatenation_repeat1] = STATE(1982), + [sym__concat] = ACTIONS(4567), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(816), + [anon_sym_PIPE_AMP] = ACTIONS(816), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [sym_comment] = ACTIONS(48), + }, + [1979] = { + [aux_sym_concatenation_repeat1] = STATE(1982), + [sym__concat] = ACTIONS(4567), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(820), + [anon_sym_PIPE_AMP] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [sym_comment] = ACTIONS(48), + }, + [1980] = { + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_RPAREN] = ACTIONS(820), + [anon_sym_PIPE_AMP] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_comment] = ACTIONS(48), + }, + [1981] = { + [sym_string] = STATE(2350), + [sym_simple_expansion] = STATE(2350), + [sym_expansion] = STATE(2350), + [sym_command_substitution] = STATE(2350), + [sym_process_substitution] = STATE(2350), + [sym__special_characters] = ACTIONS(5416), + [anon_sym_DQUOTE] = ACTIONS(3511), + [sym_raw_string] = ACTIONS(5418), + [anon_sym_DOLLAR] = ACTIONS(3515), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3517), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3519), + [anon_sym_BQUOTE] = ACTIONS(3521), + [anon_sym_LT_LPAREN] = ACTIONS(3523), + [anon_sym_GT_LPAREN] = ACTIONS(3523), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5416), + }, + [1982] = { + [aux_sym_concatenation_repeat1] = STATE(2351), + [sym__concat] = ACTIONS(4567), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_RPAREN] = ACTIONS(478), + [anon_sym_PIPE_AMP] = ACTIONS(478), + [anon_sym_AMP_AMP] = ACTIONS(478), + [anon_sym_PIPE_PIPE] = ACTIONS(478), + [sym_comment] = ACTIONS(48), + }, + [1983] = { + [sym__concat] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(1119), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_PIPE_AMP] = ACTIONS(482), + [anon_sym_AMP_AMP] = ACTIONS(482), + [anon_sym_PIPE_PIPE] = ACTIONS(482), + [sym_comment] = ACTIONS(48), + }, + [1984] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(5420), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [1985] = { + [sym__concat] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_RPAREN] = ACTIONS(510), + [anon_sym_PIPE_AMP] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_PIPE_PIPE] = ACTIONS(510), + [sym_comment] = ACTIONS(48), + }, + [1986] = { + [sym__concat] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_RPAREN] = ACTIONS(514), + [anon_sym_PIPE_AMP] = ACTIONS(514), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [sym_comment] = ACTIONS(48), + }, + [1987] = { + [anon_sym_EQ] = ACTIONS(5422), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [1988] = { + [anon_sym_RBRACE] = ACTIONS(5424), + [anon_sym_EQ] = ACTIONS(5426), + [anon_sym_COLON] = ACTIONS(5428), + [anon_sym_COLON_QMARK] = ACTIONS(5426), + [anon_sym_COLON_DASH] = ACTIONS(5426), + [anon_sym_PERCENT] = ACTIONS(5426), + [anon_sym_SLASH] = ACTIONS(5426), + [anon_sym_DASH] = ACTIONS(5426), + [sym_comment] = ACTIONS(48), + }, + [1989] = { + [sym_subscript] = STATE(2359), + [sym_variable_name] = ACTIONS(5430), + [anon_sym_DOLLAR] = ACTIONS(5432), + [anon_sym_DASH] = ACTIONS(5432), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5434), + [anon_sym_STAR] = ACTIONS(5432), + [anon_sym_AT] = ACTIONS(5432), + [anon_sym_QMARK] = ACTIONS(5432), + [anon_sym_0] = ACTIONS(5436), + [anon_sym__] = ACTIONS(5436), + }, + [1990] = { + [anon_sym_RBRACE] = ACTIONS(5438), + [anon_sym_EQ] = ACTIONS(5440), + [anon_sym_COLON] = ACTIONS(5442), + [anon_sym_COLON_QMARK] = ACTIONS(5440), + [anon_sym_COLON_DASH] = ACTIONS(5440), + [anon_sym_PERCENT] = ACTIONS(5440), + [anon_sym_SLASH] = ACTIONS(5440), + [anon_sym_DASH] = ACTIONS(5440), + [sym_comment] = ACTIONS(48), + }, + [1991] = { + [anon_sym_RBRACE] = ACTIONS(5444), + [anon_sym_EQ] = ACTIONS(5422), + [anon_sym_COLON] = ACTIONS(5446), + [anon_sym_COLON_QMARK] = ACTIONS(5422), + [anon_sym_COLON_DASH] = ACTIONS(5422), + [anon_sym_PERCENT] = ACTIONS(5422), + [anon_sym_SLASH] = ACTIONS(5422), + [anon_sym_DASH] = ACTIONS(5422), + [sym_comment] = ACTIONS(48), + }, + [1992] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(5448), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1993] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(5448), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1994] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(5448), + [sym_comment] = ACTIONS(48), + }, + [1995] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(5448), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1996] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(5450), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [1997] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(5450), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [1998] = { + [sym_variable_name] = ACTIONS(2766), + [anon_sym_PIPE] = ACTIONS(4488), + [anon_sym_RPAREN] = ACTIONS(2766), + [anon_sym_PIPE_AMP] = ACTIONS(2766), + [anon_sym_AMP_AMP] = ACTIONS(2766), + [anon_sym_PIPE_PIPE] = ACTIONS(4488), + [anon_sym_BQUOTE] = ACTIONS(2766), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4488), + [sym_word] = ACTIONS(2768), + }, + [1999] = { + [sym__concat] = ACTIONS(1157), + [sym_variable_name] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(1157), + [anon_sym_PIPE_AMP] = ACTIONS(1157), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(2079), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2079), + [sym_word] = ACTIONS(1159), + }, + [2000] = { + [aux_sym_concatenation_repeat1] = STATE(2000), + [sym__concat] = ACTIONS(5452), + [sym_variable_name] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(1157), + [anon_sym_PIPE_AMP] = ACTIONS(1157), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(2079), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2079), + [sym_word] = ACTIONS(1159), + }, + [2001] = { + [sym__concat] = ACTIONS(1196), + [sym_variable_name] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_RPAREN] = ACTIONS(1196), + [anon_sym_PIPE_AMP] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_PIPE_PIPE] = ACTIONS(2084), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2084), + [sym_word] = ACTIONS(1198), + }, + [2002] = { + [sym_concatenation] = STATE(2368), + [sym_string] = STATE(2367), + [sym_simple_expansion] = STATE(2367), + [sym_expansion] = STATE(2367), + [sym_command_substitution] = STATE(2367), + [sym_process_substitution] = STATE(2367), + [anon_sym_RBRACE] = ACTIONS(5455), + [sym__special_characters] = ACTIONS(5457), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5459), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5461), + }, + [2003] = { + [sym__concat] = ACTIONS(1241), + [sym_variable_name] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_PIPE_AMP] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1241), + [anon_sym_PIPE_PIPE] = ACTIONS(2094), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2094), + [sym_word] = ACTIONS(1243), + }, + [2004] = { + [sym_concatenation] = STATE(2372), + [sym_string] = STATE(2371), + [sym_simple_expansion] = STATE(2371), + [sym_expansion] = STATE(2371), + [sym_command_substitution] = STATE(2371), + [sym_process_substitution] = STATE(2371), + [anon_sym_RBRACE] = ACTIONS(5463), + [sym__special_characters] = ACTIONS(5465), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5467), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5469), + }, + [2005] = { + [anon_sym_EQ] = ACTIONS(5471), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [2006] = { + [anon_sym_RBRACE] = ACTIONS(5473), + [anon_sym_EQ] = ACTIONS(5475), + [anon_sym_COLON] = ACTIONS(5477), + [anon_sym_COLON_QMARK] = ACTIONS(5475), + [anon_sym_COLON_DASH] = ACTIONS(5475), + [anon_sym_PERCENT] = ACTIONS(5475), + [anon_sym_SLASH] = ACTIONS(5475), + [anon_sym_DASH] = ACTIONS(5475), + [sym_comment] = ACTIONS(48), + }, + [2007] = { + [anon_sym_RBRACE] = ACTIONS(5479), + [anon_sym_EQ] = ACTIONS(5481), + [anon_sym_COLON] = ACTIONS(5483), + [anon_sym_COLON_QMARK] = ACTIONS(5481), + [anon_sym_COLON_DASH] = ACTIONS(5481), + [anon_sym_PERCENT] = ACTIONS(5481), + [anon_sym_SLASH] = ACTIONS(5481), + [anon_sym_DASH] = ACTIONS(5481), + [sym_comment] = ACTIONS(48), + }, + [2008] = { + [anon_sym_RBRACE] = ACTIONS(5455), + [anon_sym_EQ] = ACTIONS(5471), + [anon_sym_COLON] = ACTIONS(5485), + [anon_sym_COLON_QMARK] = ACTIONS(5471), + [anon_sym_COLON_DASH] = ACTIONS(5471), + [anon_sym_PERCENT] = ACTIONS(5471), + [anon_sym_SLASH] = ACTIONS(5471), + [anon_sym_DASH] = ACTIONS(5471), + [sym_comment] = ACTIONS(48), + }, + [2009] = { + [sym__concat] = ACTIONS(1269), + [sym_variable_name] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_RPAREN] = ACTIONS(1269), + [anon_sym_PIPE_AMP] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2120), + [sym_word] = ACTIONS(1271), + }, + [2010] = { + [sym_concatenation] = STATE(2381), + [sym_string] = STATE(2380), + [sym_simple_expansion] = STATE(2380), + [sym_expansion] = STATE(2380), + [sym_command_substitution] = STATE(2380), + [sym_process_substitution] = STATE(2380), + [anon_sym_RBRACE] = ACTIONS(5487), + [sym__special_characters] = ACTIONS(5489), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5491), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5493), + }, + [2011] = { + [sym__concat] = ACTIONS(1281), + [sym_variable_name] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_RPAREN] = ACTIONS(1281), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(2130), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2130), + [sym_word] = ACTIONS(1283), + }, + [2012] = { + [sym__concat] = ACTIONS(1379), + [sym_variable_name] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_RPAREN] = ACTIONS(1379), + [anon_sym_PIPE_AMP] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(2132), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2132), + [sym_word] = ACTIONS(1381), + }, + [2013] = { + [sym__concat] = ACTIONS(1513), + [sym_variable_name] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(1513), + [anon_sym_PIPE_AMP] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(2134), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2134), + [sym_word] = ACTIONS(1515), + }, + [2014] = { + [sym_file_descriptor] = ACTIONS(4464), + [sym__concat] = ACTIONS(4464), + [anon_sym_PIPE] = ACTIONS(5310), + [anon_sym_RPAREN] = ACTIONS(4464), + [anon_sym_PIPE_AMP] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(5310), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_GT_GT] = ACTIONS(4464), + [anon_sym_AMP_GT] = ACTIONS(5310), + [anon_sym_AMP_GT_GT] = ACTIONS(4464), + [anon_sym_LT_AMP] = ACTIONS(4464), + [anon_sym_GT_AMP] = ACTIONS(4464), + [anon_sym_LT_LT] = ACTIONS(5310), + [anon_sym_LT_LT_DASH] = ACTIONS(4464), + [anon_sym_LT_LT_LT] = ACTIONS(4464), + [sym__special_characters] = ACTIONS(5310), + [anon_sym_DQUOTE] = ACTIONS(4464), + [sym_raw_string] = ACTIONS(4464), + [anon_sym_DOLLAR] = ACTIONS(5310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4464), + [anon_sym_BQUOTE] = ACTIONS(4464), + [anon_sym_LT_LPAREN] = ACTIONS(4464), + [anon_sym_GT_LPAREN] = ACTIONS(4464), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4466), + }, + [2015] = { + [sym_file_descriptor] = ACTIONS(4468), + [sym__concat] = ACTIONS(4468), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_RPAREN] = ACTIONS(4468), + [anon_sym_PIPE_AMP] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(5312), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_AMP_GT] = ACTIONS(5312), + [anon_sym_AMP_GT_GT] = ACTIONS(4468), + [anon_sym_LT_AMP] = ACTIONS(4468), + [anon_sym_GT_AMP] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(5312), + [anon_sym_LT_LT_DASH] = ACTIONS(4468), + [anon_sym_LT_LT_LT] = ACTIONS(4468), + [sym__special_characters] = ACTIONS(5312), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym_raw_string] = ACTIONS(4468), + [anon_sym_DOLLAR] = ACTIONS(5312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4468), + [anon_sym_BQUOTE] = ACTIONS(4468), + [anon_sym_LT_LPAREN] = ACTIONS(4468), + [anon_sym_GT_LPAREN] = ACTIONS(4468), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4470), + }, + [2016] = { + [sym_file_descriptor] = ACTIONS(4472), + [sym__concat] = ACTIONS(4472), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_RPAREN] = ACTIONS(4472), + [anon_sym_PIPE_AMP] = ACTIONS(4472), + [anon_sym_AMP_AMP] = ACTIONS(4472), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_LT] = ACTIONS(5314), + [anon_sym_GT] = ACTIONS(5314), + [anon_sym_GT_GT] = ACTIONS(4472), + [anon_sym_AMP_GT] = ACTIONS(5314), + [anon_sym_AMP_GT_GT] = ACTIONS(4472), + [anon_sym_LT_AMP] = ACTIONS(4472), + [anon_sym_GT_AMP] = ACTIONS(4472), + [anon_sym_LT_LT] = ACTIONS(5314), + [anon_sym_LT_LT_DASH] = ACTIONS(4472), + [anon_sym_LT_LT_LT] = ACTIONS(4472), + [sym__special_characters] = ACTIONS(5314), + [anon_sym_DQUOTE] = ACTIONS(4472), + [sym_raw_string] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(5314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4472), + [anon_sym_BQUOTE] = ACTIONS(4472), + [anon_sym_LT_LPAREN] = ACTIONS(4472), + [anon_sym_GT_LPAREN] = ACTIONS(4472), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4474), + }, + [2017] = { + [sym_file_descriptor] = ACTIONS(4476), + [sym__concat] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_RPAREN] = ACTIONS(4476), + [anon_sym_PIPE_AMP] = ACTIONS(4476), + [anon_sym_AMP_AMP] = ACTIONS(4476), + [anon_sym_PIPE_PIPE] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_GT_GT] = ACTIONS(4476), + [anon_sym_AMP_GT] = ACTIONS(5316), + [anon_sym_AMP_GT_GT] = ACTIONS(4476), + [anon_sym_LT_AMP] = ACTIONS(4476), + [anon_sym_GT_AMP] = ACTIONS(4476), + [anon_sym_LT_LT] = ACTIONS(5316), + [anon_sym_LT_LT_DASH] = ACTIONS(4476), + [anon_sym_LT_LT_LT] = ACTIONS(4476), + [sym__special_characters] = ACTIONS(5316), + [anon_sym_DQUOTE] = ACTIONS(4476), + [sym_raw_string] = ACTIONS(4476), + [anon_sym_DOLLAR] = ACTIONS(5316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4476), + [anon_sym_BQUOTE] = ACTIONS(4476), + [anon_sym_LT_LPAREN] = ACTIONS(4476), + [anon_sym_GT_LPAREN] = ACTIONS(4476), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4478), + }, + [2018] = { + [sym_file_descriptor] = ACTIONS(4480), + [sym__concat] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(5318), + [anon_sym_RPAREN] = ACTIONS(4480), + [anon_sym_PIPE_AMP] = ACTIONS(4480), + [anon_sym_AMP_AMP] = ACTIONS(4480), + [anon_sym_PIPE_PIPE] = ACTIONS(5318), + [anon_sym_LT] = ACTIONS(5318), + [anon_sym_GT] = ACTIONS(5318), + [anon_sym_GT_GT] = ACTIONS(4480), + [anon_sym_AMP_GT] = ACTIONS(5318), + [anon_sym_AMP_GT_GT] = ACTIONS(4480), + [anon_sym_LT_AMP] = ACTIONS(4480), + [anon_sym_GT_AMP] = ACTIONS(4480), + [anon_sym_LT_LT] = ACTIONS(5318), + [anon_sym_LT_LT_DASH] = ACTIONS(4480), + [anon_sym_LT_LT_LT] = ACTIONS(4480), + [sym__special_characters] = ACTIONS(5318), + [anon_sym_DQUOTE] = ACTIONS(4480), + [sym_raw_string] = ACTIONS(4480), + [anon_sym_DOLLAR] = ACTIONS(5318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4480), + [anon_sym_LT_LPAREN] = ACTIONS(4480), + [anon_sym_GT_LPAREN] = ACTIONS(4480), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4482), + }, + [2019] = { + [sym_file_descriptor] = ACTIONS(4484), + [sym__concat] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_RPAREN] = ACTIONS(4484), + [anon_sym_PIPE_AMP] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_GT_GT] = ACTIONS(4484), + [anon_sym_AMP_GT] = ACTIONS(5320), + [anon_sym_AMP_GT_GT] = ACTIONS(4484), + [anon_sym_LT_AMP] = ACTIONS(4484), + [anon_sym_GT_AMP] = ACTIONS(4484), + [anon_sym_LT_LT] = ACTIONS(5320), + [anon_sym_LT_LT_DASH] = ACTIONS(4484), + [anon_sym_LT_LT_LT] = ACTIONS(4484), + [sym__special_characters] = ACTIONS(5320), + [anon_sym_DQUOTE] = ACTIONS(4484), + [sym_raw_string] = ACTIONS(4484), + [anon_sym_DOLLAR] = ACTIONS(5320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4484), + [anon_sym_BQUOTE] = ACTIONS(4484), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4486), + }, + [2020] = { + [sym_file_descriptor] = ACTIONS(2176), + [sym__concat] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(3271), + [anon_sym_RPAREN] = ACTIONS(2176), + [anon_sym_PIPE_AMP] = ACTIONS(2176), + [anon_sym_AMP_AMP] = ACTIONS(2176), + [anon_sym_PIPE_PIPE] = ACTIONS(2176), + [anon_sym_LT] = ACTIONS(3271), + [anon_sym_GT] = ACTIONS(3271), + [anon_sym_GT_GT] = ACTIONS(2176), + [anon_sym_AMP_GT] = ACTIONS(3271), + [anon_sym_AMP_GT_GT] = ACTIONS(2176), + [anon_sym_LT_AMP] = ACTIONS(2176), + [anon_sym_GT_AMP] = ACTIONS(2176), + [anon_sym_LT_LT] = ACTIONS(3271), + [anon_sym_LT_LT_DASH] = ACTIONS(2176), + [anon_sym_LT_LT_LT] = ACTIONS(2176), + [sym_comment] = ACTIONS(48), + }, + [2021] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5495), + [sym_comment] = ACTIONS(48), + }, + [2022] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5497), + [sym_comment] = ACTIONS(48), + }, + [2023] = { + [anon_sym_RBRACE] = ACTIONS(5497), + [sym_comment] = ACTIONS(48), + }, + [2024] = { + [sym_file_descriptor] = ACTIONS(2214), + [sym__concat] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_RPAREN] = ACTIONS(2214), + [anon_sym_PIPE_AMP] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_GT] = ACTIONS(3277), + [anon_sym_GT_GT] = ACTIONS(2214), + [anon_sym_AMP_GT] = ACTIONS(3277), + [anon_sym_AMP_GT_GT] = ACTIONS(2214), + [anon_sym_LT_AMP] = ACTIONS(2214), + [anon_sym_GT_AMP] = ACTIONS(2214), + [anon_sym_LT_LT] = ACTIONS(3277), + [anon_sym_LT_LT_DASH] = ACTIONS(2214), + [anon_sym_LT_LT_LT] = ACTIONS(2214), + [sym_comment] = ACTIONS(48), + }, + [2025] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5499), + [sym_comment] = ACTIONS(48), + }, + [2026] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5501), + [sym_comment] = ACTIONS(48), + }, + [2027] = { + [anon_sym_RBRACE] = ACTIONS(5501), + [sym_comment] = ACTIONS(48), + }, + [2028] = { + [sym_concatenation] = STATE(2388), + [sym_string] = STATE(2387), + [sym_simple_expansion] = STATE(2387), + [sym_expansion] = STATE(2387), + [sym_command_substitution] = STATE(2387), + [sym_process_substitution] = STATE(2387), + [anon_sym_RBRACE] = ACTIONS(5497), + [sym__special_characters] = ACTIONS(5503), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5505), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5507), + }, + [2029] = { + [sym_file_descriptor] = ACTIONS(2228), + [sym__concat] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(3289), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_PIPE_AMP] = ACTIONS(2228), + [anon_sym_AMP_AMP] = ACTIONS(2228), + [anon_sym_PIPE_PIPE] = ACTIONS(2228), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_GT] = ACTIONS(3289), + [anon_sym_GT_GT] = ACTIONS(2228), + [anon_sym_AMP_GT] = ACTIONS(3289), + [anon_sym_AMP_GT_GT] = ACTIONS(2228), + [anon_sym_LT_AMP] = ACTIONS(2228), + [anon_sym_GT_AMP] = ACTIONS(2228), + [anon_sym_LT_LT] = ACTIONS(3289), + [anon_sym_LT_LT_DASH] = ACTIONS(2228), + [anon_sym_LT_LT_LT] = ACTIONS(2228), + [sym_comment] = ACTIONS(48), + }, + [2030] = { + [sym_concatenation] = STATE(2392), + [sym_string] = STATE(2391), + [sym_simple_expansion] = STATE(2391), + [sym_expansion] = STATE(2391), + [sym_command_substitution] = STATE(2391), + [sym_process_substitution] = STATE(2391), + [anon_sym_RBRACE] = ACTIONS(5509), + [sym__special_characters] = ACTIONS(5511), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5513), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5515), + }, + [2031] = { + [sym_file_descriptor] = ACTIONS(2240), + [sym__concat] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_RPAREN] = ACTIONS(2240), + [anon_sym_PIPE_AMP] = ACTIONS(2240), + [anon_sym_AMP_AMP] = ACTIONS(2240), + [anon_sym_PIPE_PIPE] = ACTIONS(2240), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_GT] = ACTIONS(3299), + [anon_sym_GT_GT] = ACTIONS(2240), + [anon_sym_AMP_GT] = ACTIONS(3299), + [anon_sym_AMP_GT_GT] = ACTIONS(2240), + [anon_sym_LT_AMP] = ACTIONS(2240), + [anon_sym_GT_AMP] = ACTIONS(2240), + [anon_sym_LT_LT] = ACTIONS(3299), + [anon_sym_LT_LT_DASH] = ACTIONS(2240), + [anon_sym_LT_LT_LT] = ACTIONS(2240), + [sym_comment] = ACTIONS(48), + }, + [2032] = { + [sym_concatenation] = STATE(2396), + [sym_string] = STATE(2395), + [sym_simple_expansion] = STATE(2395), + [sym_expansion] = STATE(2395), + [sym_command_substitution] = STATE(2395), + [sym_process_substitution] = STATE(2395), + [anon_sym_RBRACE] = ACTIONS(5517), + [sym__special_characters] = ACTIONS(5519), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5521), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5523), + }, + [2033] = { + [sym_file_descriptor] = ACTIONS(2252), + [sym__concat] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_RPAREN] = ACTIONS(2252), + [anon_sym_PIPE_AMP] = ACTIONS(2252), + [anon_sym_AMP_AMP] = ACTIONS(2252), + [anon_sym_PIPE_PIPE] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_GT] = ACTIONS(3309), + [anon_sym_GT_GT] = ACTIONS(2252), + [anon_sym_AMP_GT] = ACTIONS(3309), + [anon_sym_AMP_GT_GT] = ACTIONS(2252), + [anon_sym_LT_AMP] = ACTIONS(2252), + [anon_sym_GT_AMP] = ACTIONS(2252), + [anon_sym_LT_LT] = ACTIONS(3309), + [anon_sym_LT_LT_DASH] = ACTIONS(2252), + [anon_sym_LT_LT_LT] = ACTIONS(2252), + [sym_comment] = ACTIONS(48), + }, + [2034] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5525), + [sym_comment] = ACTIONS(48), + }, + [2035] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5527), + [sym_comment] = ACTIONS(48), + }, + [2036] = { + [anon_sym_RBRACE] = ACTIONS(5527), + [sym_comment] = ACTIONS(48), + }, + [2037] = { + [sym_file_descriptor] = ACTIONS(2176), + [sym__concat] = ACTIONS(2176), + [sym_variable_name] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(3271), + [anon_sym_PIPE_AMP] = ACTIONS(2176), + [anon_sym_AMP_AMP] = ACTIONS(2176), + [anon_sym_PIPE_PIPE] = ACTIONS(3271), + [anon_sym_LT] = ACTIONS(3271), + [anon_sym_GT] = ACTIONS(3271), + [anon_sym_GT_GT] = ACTIONS(2176), + [anon_sym_AMP_GT] = ACTIONS(3271), + [anon_sym_AMP_GT_GT] = ACTIONS(2176), + [anon_sym_LT_AMP] = ACTIONS(2176), + [anon_sym_GT_AMP] = ACTIONS(2176), + [sym__special_characters] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(2176), + [sym_raw_string] = ACTIONS(2176), + [anon_sym_DOLLAR] = ACTIONS(3271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2176), + [anon_sym_BQUOTE] = ACTIONS(2176), + [anon_sym_LT_LPAREN] = ACTIONS(2176), + [anon_sym_GT_LPAREN] = ACTIONS(2176), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2178), + }, + [2038] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5529), + [sym_comment] = ACTIONS(48), + }, + [2039] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5531), + [sym_comment] = ACTIONS(48), + }, + [2040] = { + [anon_sym_RBRACE] = ACTIONS(5531), + [sym_comment] = ACTIONS(48), + }, + [2041] = { + [sym_file_descriptor] = ACTIONS(2214), + [sym__concat] = ACTIONS(2214), + [sym_variable_name] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_PIPE_AMP] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_GT] = ACTIONS(3277), + [anon_sym_GT_GT] = ACTIONS(2214), + [anon_sym_AMP_GT] = ACTIONS(3277), + [anon_sym_AMP_GT_GT] = ACTIONS(2214), + [anon_sym_LT_AMP] = ACTIONS(2214), + [anon_sym_GT_AMP] = ACTIONS(2214), + [sym__special_characters] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(2214), + [sym_raw_string] = ACTIONS(2214), + [anon_sym_DOLLAR] = ACTIONS(3277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2214), + [anon_sym_BQUOTE] = ACTIONS(2214), + [anon_sym_LT_LPAREN] = ACTIONS(2214), + [anon_sym_GT_LPAREN] = ACTIONS(2214), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2216), + }, + [2042] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5533), + [sym_comment] = ACTIONS(48), + }, + [2043] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5535), + [sym_comment] = ACTIONS(48), + }, + [2044] = { + [anon_sym_RBRACE] = ACTIONS(5535), + [sym_comment] = ACTIONS(48), + }, + [2045] = { + [sym_concatenation] = STATE(2405), + [sym_string] = STATE(2404), + [sym_simple_expansion] = STATE(2404), + [sym_expansion] = STATE(2404), + [sym_command_substitution] = STATE(2404), + [sym_process_substitution] = STATE(2404), + [anon_sym_RBRACE] = ACTIONS(5531), + [sym__special_characters] = ACTIONS(5537), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5539), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5541), + }, + [2046] = { + [sym_file_descriptor] = ACTIONS(2228), + [sym__concat] = ACTIONS(2228), + [sym_variable_name] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(3289), + [anon_sym_PIPE_AMP] = ACTIONS(2228), + [anon_sym_AMP_AMP] = ACTIONS(2228), + [anon_sym_PIPE_PIPE] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_GT] = ACTIONS(3289), + [anon_sym_GT_GT] = ACTIONS(2228), + [anon_sym_AMP_GT] = ACTIONS(3289), + [anon_sym_AMP_GT_GT] = ACTIONS(2228), + [anon_sym_LT_AMP] = ACTIONS(2228), + [anon_sym_GT_AMP] = ACTIONS(2228), + [sym__special_characters] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(2228), + [sym_raw_string] = ACTIONS(2228), + [anon_sym_DOLLAR] = ACTIONS(3289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2228), + [anon_sym_BQUOTE] = ACTIONS(2228), + [anon_sym_LT_LPAREN] = ACTIONS(2228), + [anon_sym_GT_LPAREN] = ACTIONS(2228), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2230), + }, + [2047] = { + [sym_concatenation] = STATE(2409), + [sym_string] = STATE(2408), + [sym_simple_expansion] = STATE(2408), + [sym_expansion] = STATE(2408), + [sym_command_substitution] = STATE(2408), + [sym_process_substitution] = STATE(2408), + [anon_sym_RBRACE] = ACTIONS(5543), + [sym__special_characters] = ACTIONS(5545), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5547), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5549), + }, + [2048] = { + [sym_file_descriptor] = ACTIONS(2240), + [sym__concat] = ACTIONS(2240), + [sym_variable_name] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_PIPE_AMP] = ACTIONS(2240), + [anon_sym_AMP_AMP] = ACTIONS(2240), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_GT] = ACTIONS(3299), + [anon_sym_GT_GT] = ACTIONS(2240), + [anon_sym_AMP_GT] = ACTIONS(3299), + [anon_sym_AMP_GT_GT] = ACTIONS(2240), + [anon_sym_LT_AMP] = ACTIONS(2240), + [anon_sym_GT_AMP] = ACTIONS(2240), + [sym__special_characters] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(2240), + [sym_raw_string] = ACTIONS(2240), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2240), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2240), + [anon_sym_BQUOTE] = ACTIONS(2240), + [anon_sym_LT_LPAREN] = ACTIONS(2240), + [anon_sym_GT_LPAREN] = ACTIONS(2240), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2242), + }, + [2049] = { + [sym_concatenation] = STATE(2413), + [sym_string] = STATE(2412), + [sym_simple_expansion] = STATE(2412), + [sym_expansion] = STATE(2412), + [sym_command_substitution] = STATE(2412), + [sym_process_substitution] = STATE(2412), + [anon_sym_RBRACE] = ACTIONS(5551), + [sym__special_characters] = ACTIONS(5553), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5555), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5557), + }, + [2050] = { + [sym_file_descriptor] = ACTIONS(2252), + [sym__concat] = ACTIONS(2252), + [sym_variable_name] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_PIPE_AMP] = ACTIONS(2252), + [anon_sym_AMP_AMP] = ACTIONS(2252), + [anon_sym_PIPE_PIPE] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_GT] = ACTIONS(3309), + [anon_sym_GT_GT] = ACTIONS(2252), + [anon_sym_AMP_GT] = ACTIONS(3309), + [anon_sym_AMP_GT_GT] = ACTIONS(2252), + [anon_sym_LT_AMP] = ACTIONS(2252), + [anon_sym_GT_AMP] = ACTIONS(2252), + [sym__special_characters] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(2252), + [sym_raw_string] = ACTIONS(2252), + [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2252), + [anon_sym_BQUOTE] = ACTIONS(2252), + [anon_sym_LT_LPAREN] = ACTIONS(2252), + [anon_sym_GT_LPAREN] = ACTIONS(2252), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(2254), + }, + [2051] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5559), + [sym_comment] = ACTIONS(48), + }, + [2052] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5561), + [sym_comment] = ACTIONS(48), + }, + [2053] = { + [anon_sym_RBRACE] = ACTIONS(5561), + [sym_comment] = ACTIONS(48), + }, + [2054] = { + [aux_sym_concatenation_repeat1] = STATE(2057), + [sym__concat] = ACTIONS(4735), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(816), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [anon_sym_BQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(48), + }, + [2055] = { + [aux_sym_concatenation_repeat1] = STATE(2057), + [sym__concat] = ACTIONS(4735), + [anon_sym_PIPE] = ACTIONS(822), + [anon_sym_PIPE_AMP] = ACTIONS(820), + [anon_sym_AMP_AMP] = ACTIONS(820), + [anon_sym_PIPE_PIPE] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(820), + [sym_comment] = ACTIONS(48), + }, + [2056] = { + [sym_string] = STATE(2416), + [sym_simple_expansion] = STATE(2416), + [sym_expansion] = STATE(2416), + [sym_command_substitution] = STATE(2416), + [sym_process_substitution] = STATE(2416), + [sym__special_characters] = ACTIONS(5563), + [anon_sym_DQUOTE] = ACTIONS(3679), + [sym_raw_string] = ACTIONS(5565), + [anon_sym_DOLLAR] = ACTIONS(3683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3685), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3687), + [anon_sym_BQUOTE] = ACTIONS(3689), + [anon_sym_LT_LPAREN] = ACTIONS(3691), + [anon_sym_GT_LPAREN] = ACTIONS(3691), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5563), + }, + [2057] = { + [aux_sym_concatenation_repeat1] = STATE(2417), + [sym__concat] = ACTIONS(4735), + [anon_sym_PIPE] = ACTIONS(1117), + [anon_sym_PIPE_AMP] = ACTIONS(478), + [anon_sym_AMP_AMP] = ACTIONS(478), + [anon_sym_PIPE_PIPE] = ACTIONS(478), + [anon_sym_BQUOTE] = ACTIONS(478), + [sym_comment] = ACTIONS(48), + }, + [2058] = { + [sym__concat] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(1119), + [anon_sym_PIPE_AMP] = ACTIONS(482), + [anon_sym_AMP_AMP] = ACTIONS(482), + [anon_sym_PIPE_PIPE] = ACTIONS(482), + [anon_sym_BQUOTE] = ACTIONS(482), + [sym_comment] = ACTIONS(48), + }, + [2059] = { + [sym_simple_expansion] = STATE(85), + [sym_expansion] = STATE(85), + [sym_command_substitution] = STATE(85), + [aux_sym_string_repeat1] = STATE(283), + [anon_sym_DQUOTE] = ACTIONS(5567), + [sym__string_content] = ACTIONS(142), + [anon_sym_DOLLAR] = ACTIONS(144), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(146), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(148), + [anon_sym_BQUOTE] = ACTIONS(150), + [sym_comment] = ACTIONS(110), + }, + [2060] = { + [sym__concat] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(1123), + [anon_sym_PIPE_AMP] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(510), + [anon_sym_PIPE_PIPE] = ACTIONS(510), + [anon_sym_BQUOTE] = ACTIONS(510), + [sym_comment] = ACTIONS(48), + }, + [2061] = { + [sym__concat] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(1125), + [anon_sym_PIPE_AMP] = ACTIONS(514), + [anon_sym_AMP_AMP] = ACTIONS(514), + [anon_sym_PIPE_PIPE] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(514), + [sym_comment] = ACTIONS(48), + }, + [2062] = { + [anon_sym_EQ] = ACTIONS(5569), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [2063] = { + [anon_sym_RBRACE] = ACTIONS(5571), + [anon_sym_EQ] = ACTIONS(5573), + [anon_sym_COLON] = ACTIONS(5575), + [anon_sym_COLON_QMARK] = ACTIONS(5573), + [anon_sym_COLON_DASH] = ACTIONS(5573), + [anon_sym_PERCENT] = ACTIONS(5573), + [anon_sym_SLASH] = ACTIONS(5573), + [anon_sym_DASH] = ACTIONS(5573), + [sym_comment] = ACTIONS(48), + }, + [2064] = { + [sym_subscript] = STATE(2425), + [sym_variable_name] = ACTIONS(5577), + [anon_sym_DOLLAR] = ACTIONS(5579), + [anon_sym_DASH] = ACTIONS(5579), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5581), + [anon_sym_STAR] = ACTIONS(5579), + [anon_sym_AT] = ACTIONS(5579), + [anon_sym_QMARK] = ACTIONS(5579), + [anon_sym_0] = ACTIONS(5583), + [anon_sym__] = ACTIONS(5583), + }, + [2065] = { + [anon_sym_RBRACE] = ACTIONS(5585), + [anon_sym_EQ] = ACTIONS(5587), + [anon_sym_COLON] = ACTIONS(5589), + [anon_sym_COLON_QMARK] = ACTIONS(5587), + [anon_sym_COLON_DASH] = ACTIONS(5587), + [anon_sym_PERCENT] = ACTIONS(5587), + [anon_sym_SLASH] = ACTIONS(5587), + [anon_sym_DASH] = ACTIONS(5587), + [sym_comment] = ACTIONS(48), + }, + [2066] = { + [anon_sym_RBRACE] = ACTIONS(5591), + [anon_sym_EQ] = ACTIONS(5569), + [anon_sym_COLON] = ACTIONS(5593), + [anon_sym_COLON_QMARK] = ACTIONS(5569), + [anon_sym_COLON_DASH] = ACTIONS(5569), + [anon_sym_PERCENT] = ACTIONS(5569), + [anon_sym_SLASH] = ACTIONS(5569), + [anon_sym_DASH] = ACTIONS(5569), + [sym_comment] = ACTIONS(48), + }, + [2067] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(5595), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [2068] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(5595), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [2069] = { + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(660), + [anon_sym_BQUOTE] = ACTIONS(5595), + [sym_comment] = ACTIONS(48), + }, + [2070] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(656), + [anon_sym_PIPE_AMP] = ACTIONS(658), + [anon_sym_AMP_AMP] = ACTIONS(660), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(5595), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [2071] = { + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(5597), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [sym_comment] = ACTIONS(48), + }, + [2072] = { + [sym_file_descriptor] = ACTIONS(272), + [sym_variable_name] = ACTIONS(272), + [anon_sym_PIPE] = ACTIONS(594), + [anon_sym_RPAREN] = ACTIONS(5597), + [anon_sym_PIPE_AMP] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_LT] = ACTIONS(276), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(272), + [anon_sym_AMP_GT] = ACTIONS(276), + [anon_sym_AMP_GT_GT] = ACTIONS(272), + [anon_sym_LT_AMP] = ACTIONS(272), + [anon_sym_GT_AMP] = ACTIONS(272), + [sym__special_characters] = ACTIONS(276), + [anon_sym_DQUOTE] = ACTIONS(272), + [sym_raw_string] = ACTIONS(272), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(272), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(272), + [anon_sym_LT_LPAREN] = ACTIONS(272), + [anon_sym_GT_LPAREN] = ACTIONS(272), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(274), + }, + [2073] = { + [sym__concat] = ACTIONS(1157), + [sym_variable_name] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_PIPE_AMP] = ACTIONS(1157), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(2079), + [anon_sym_BQUOTE] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2079), + [sym_word] = ACTIONS(1159), + }, + [2074] = { + [aux_sym_concatenation_repeat1] = STATE(2074), + [sym__concat] = ACTIONS(5599), + [sym_variable_name] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_PIPE_AMP] = ACTIONS(1157), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(2079), + [anon_sym_BQUOTE] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2079), + [sym_word] = ACTIONS(1159), + }, + [2075] = { + [sym__concat] = ACTIONS(1196), + [sym_variable_name] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_PIPE_AMP] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_PIPE_PIPE] = ACTIONS(2084), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2084), + [sym_word] = ACTIONS(1198), + }, + [2076] = { + [sym_concatenation] = STATE(2434), + [sym_string] = STATE(2433), + [sym_simple_expansion] = STATE(2433), + [sym_expansion] = STATE(2433), + [sym_command_substitution] = STATE(2433), + [sym_process_substitution] = STATE(2433), + [anon_sym_RBRACE] = ACTIONS(5602), + [sym__special_characters] = ACTIONS(5604), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5606), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5608), + }, + [2077] = { + [sym__concat] = ACTIONS(1241), + [sym_variable_name] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_PIPE_AMP] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1241), + [anon_sym_PIPE_PIPE] = ACTIONS(2094), + [anon_sym_BQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2094), + [sym_word] = ACTIONS(1243), + }, + [2078] = { + [sym_concatenation] = STATE(2438), + [sym_string] = STATE(2437), + [sym_simple_expansion] = STATE(2437), + [sym_expansion] = STATE(2437), + [sym_command_substitution] = STATE(2437), + [sym_process_substitution] = STATE(2437), + [anon_sym_RBRACE] = ACTIONS(5610), + [sym__special_characters] = ACTIONS(5612), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5614), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5616), + }, + [2079] = { + [anon_sym_EQ] = ACTIONS(5618), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [2080] = { + [anon_sym_RBRACE] = ACTIONS(5620), + [anon_sym_EQ] = ACTIONS(5622), + [anon_sym_COLON] = ACTIONS(5624), + [anon_sym_COLON_QMARK] = ACTIONS(5622), + [anon_sym_COLON_DASH] = ACTIONS(5622), + [anon_sym_PERCENT] = ACTIONS(5622), + [anon_sym_SLASH] = ACTIONS(5622), + [anon_sym_DASH] = ACTIONS(5622), + [sym_comment] = ACTIONS(48), + }, + [2081] = { + [anon_sym_RBRACE] = ACTIONS(5626), + [anon_sym_EQ] = ACTIONS(5628), + [anon_sym_COLON] = ACTIONS(5630), + [anon_sym_COLON_QMARK] = ACTIONS(5628), + [anon_sym_COLON_DASH] = ACTIONS(5628), + [anon_sym_PERCENT] = ACTIONS(5628), + [anon_sym_SLASH] = ACTIONS(5628), + [anon_sym_DASH] = ACTIONS(5628), + [sym_comment] = ACTIONS(48), + }, + [2082] = { + [anon_sym_RBRACE] = ACTIONS(5602), + [anon_sym_EQ] = ACTIONS(5618), + [anon_sym_COLON] = ACTIONS(5632), + [anon_sym_COLON_QMARK] = ACTIONS(5618), + [anon_sym_COLON_DASH] = ACTIONS(5618), + [anon_sym_PERCENT] = ACTIONS(5618), + [anon_sym_SLASH] = ACTIONS(5618), + [anon_sym_DASH] = ACTIONS(5618), + [sym_comment] = ACTIONS(48), + }, + [2083] = { + [sym__concat] = ACTIONS(1269), + [sym_variable_name] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_PIPE_AMP] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), + [anon_sym_BQUOTE] = ACTIONS(1269), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2120), + [sym_word] = ACTIONS(1271), + }, + [2084] = { + [sym_concatenation] = STATE(2447), + [sym_string] = STATE(2446), + [sym_simple_expansion] = STATE(2446), + [sym_expansion] = STATE(2446), + [sym_command_substitution] = STATE(2446), + [sym_process_substitution] = STATE(2446), + [anon_sym_RBRACE] = ACTIONS(5634), + [sym__special_characters] = ACTIONS(5636), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5638), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5640), + }, + [2085] = { + [sym__concat] = ACTIONS(1281), + [sym_variable_name] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(2130), + [anon_sym_BQUOTE] = ACTIONS(1281), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2130), + [sym_word] = ACTIONS(1283), + }, + [2086] = { + [sym__concat] = ACTIONS(1379), + [sym_variable_name] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_PIPE_AMP] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(2132), + [anon_sym_BQUOTE] = ACTIONS(1379), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2132), + [sym_word] = ACTIONS(1381), + }, + [2087] = { + [sym__concat] = ACTIONS(1513), + [sym_variable_name] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_PIPE_AMP] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(2134), + [anon_sym_BQUOTE] = ACTIONS(1513), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2134), + [sym_word] = ACTIONS(1515), + }, + [2088] = { + [sym_file_descriptor] = ACTIONS(4464), + [sym__concat] = ACTIONS(4464), + [anon_sym_PIPE] = ACTIONS(5310), + [anon_sym_PIPE_AMP] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(5310), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_GT_GT] = ACTIONS(4464), + [anon_sym_AMP_GT] = ACTIONS(5310), + [anon_sym_AMP_GT_GT] = ACTIONS(4464), + [anon_sym_LT_AMP] = ACTIONS(4464), + [anon_sym_GT_AMP] = ACTIONS(4464), + [anon_sym_LT_LT] = ACTIONS(5310), + [anon_sym_LT_LT_DASH] = ACTIONS(4464), + [anon_sym_LT_LT_LT] = ACTIONS(4464), + [sym__special_characters] = ACTIONS(5310), + [anon_sym_DQUOTE] = ACTIONS(4464), + [sym_raw_string] = ACTIONS(4464), + [anon_sym_DOLLAR] = ACTIONS(5310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4464), + [anon_sym_BQUOTE] = ACTIONS(4464), + [anon_sym_LT_LPAREN] = ACTIONS(4464), + [anon_sym_GT_LPAREN] = ACTIONS(4464), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4466), + }, + [2089] = { + [sym_file_descriptor] = ACTIONS(4468), + [sym__concat] = ACTIONS(4468), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_PIPE_AMP] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(5312), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_AMP_GT] = ACTIONS(5312), + [anon_sym_AMP_GT_GT] = ACTIONS(4468), + [anon_sym_LT_AMP] = ACTIONS(4468), + [anon_sym_GT_AMP] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(5312), + [anon_sym_LT_LT_DASH] = ACTIONS(4468), + [anon_sym_LT_LT_LT] = ACTIONS(4468), + [sym__special_characters] = ACTIONS(5312), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym_raw_string] = ACTIONS(4468), + [anon_sym_DOLLAR] = ACTIONS(5312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4468), + [anon_sym_BQUOTE] = ACTIONS(4468), + [anon_sym_LT_LPAREN] = ACTIONS(4468), + [anon_sym_GT_LPAREN] = ACTIONS(4468), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4470), + }, + [2090] = { + [sym_file_descriptor] = ACTIONS(4472), + [sym__concat] = ACTIONS(4472), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_PIPE_AMP] = ACTIONS(4472), + [anon_sym_AMP_AMP] = ACTIONS(4472), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_LT] = ACTIONS(5314), + [anon_sym_GT] = ACTIONS(5314), + [anon_sym_GT_GT] = ACTIONS(4472), + [anon_sym_AMP_GT] = ACTIONS(5314), + [anon_sym_AMP_GT_GT] = ACTIONS(4472), + [anon_sym_LT_AMP] = ACTIONS(4472), + [anon_sym_GT_AMP] = ACTIONS(4472), + [anon_sym_LT_LT] = ACTIONS(5314), + [anon_sym_LT_LT_DASH] = ACTIONS(4472), + [anon_sym_LT_LT_LT] = ACTIONS(4472), + [sym__special_characters] = ACTIONS(5314), + [anon_sym_DQUOTE] = ACTIONS(4472), + [sym_raw_string] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(5314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4472), + [anon_sym_BQUOTE] = ACTIONS(4472), + [anon_sym_LT_LPAREN] = ACTIONS(4472), + [anon_sym_GT_LPAREN] = ACTIONS(4472), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4474), + }, + [2091] = { + [sym_file_descriptor] = ACTIONS(4476), + [sym__concat] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_PIPE_AMP] = ACTIONS(4476), + [anon_sym_AMP_AMP] = ACTIONS(4476), + [anon_sym_PIPE_PIPE] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_GT_GT] = ACTIONS(4476), + [anon_sym_AMP_GT] = ACTIONS(5316), + [anon_sym_AMP_GT_GT] = ACTIONS(4476), + [anon_sym_LT_AMP] = ACTIONS(4476), + [anon_sym_GT_AMP] = ACTIONS(4476), + [anon_sym_LT_LT] = ACTIONS(5316), + [anon_sym_LT_LT_DASH] = ACTIONS(4476), + [anon_sym_LT_LT_LT] = ACTIONS(4476), + [sym__special_characters] = ACTIONS(5316), + [anon_sym_DQUOTE] = ACTIONS(4476), + [sym_raw_string] = ACTIONS(4476), + [anon_sym_DOLLAR] = ACTIONS(5316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4476), + [anon_sym_BQUOTE] = ACTIONS(4476), + [anon_sym_LT_LPAREN] = ACTIONS(4476), + [anon_sym_GT_LPAREN] = ACTIONS(4476), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4478), + }, + [2092] = { + [sym_file_descriptor] = ACTIONS(4480), + [sym__concat] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(5318), + [anon_sym_PIPE_AMP] = ACTIONS(4480), + [anon_sym_AMP_AMP] = ACTIONS(4480), + [anon_sym_PIPE_PIPE] = ACTIONS(5318), + [anon_sym_LT] = ACTIONS(5318), + [anon_sym_GT] = ACTIONS(5318), + [anon_sym_GT_GT] = ACTIONS(4480), + [anon_sym_AMP_GT] = ACTIONS(5318), + [anon_sym_AMP_GT_GT] = ACTIONS(4480), + [anon_sym_LT_AMP] = ACTIONS(4480), + [anon_sym_GT_AMP] = ACTIONS(4480), + [anon_sym_LT_LT] = ACTIONS(5318), + [anon_sym_LT_LT_DASH] = ACTIONS(4480), + [anon_sym_LT_LT_LT] = ACTIONS(4480), + [sym__special_characters] = ACTIONS(5318), + [anon_sym_DQUOTE] = ACTIONS(4480), + [sym_raw_string] = ACTIONS(4480), + [anon_sym_DOLLAR] = ACTIONS(5318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4480), + [anon_sym_LT_LPAREN] = ACTIONS(4480), + [anon_sym_GT_LPAREN] = ACTIONS(4480), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4482), + }, + [2093] = { + [sym_file_descriptor] = ACTIONS(4484), + [sym__concat] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_PIPE_AMP] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_GT_GT] = ACTIONS(4484), + [anon_sym_AMP_GT] = ACTIONS(5320), + [anon_sym_AMP_GT_GT] = ACTIONS(4484), + [anon_sym_LT_AMP] = ACTIONS(4484), + [anon_sym_GT_AMP] = ACTIONS(4484), + [anon_sym_LT_LT] = ACTIONS(5320), + [anon_sym_LT_LT_DASH] = ACTIONS(4484), + [anon_sym_LT_LT_LT] = ACTIONS(4484), + [sym__special_characters] = ACTIONS(5320), + [anon_sym_DQUOTE] = ACTIONS(4484), + [sym_raw_string] = ACTIONS(4484), + [anon_sym_DOLLAR] = ACTIONS(5320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4484), + [anon_sym_BQUOTE] = ACTIONS(4484), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4486), + }, + [2094] = { + [sym_file_descriptor] = ACTIONS(2176), + [sym__concat] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(3271), + [anon_sym_PIPE_AMP] = ACTIONS(2176), + [anon_sym_AMP_AMP] = ACTIONS(2176), + [anon_sym_PIPE_PIPE] = ACTIONS(2176), + [anon_sym_LT] = ACTIONS(3271), + [anon_sym_GT] = ACTIONS(3271), + [anon_sym_GT_GT] = ACTIONS(2176), + [anon_sym_AMP_GT] = ACTIONS(3271), + [anon_sym_AMP_GT_GT] = ACTIONS(2176), + [anon_sym_LT_AMP] = ACTIONS(2176), + [anon_sym_GT_AMP] = ACTIONS(2176), + [anon_sym_LT_LT] = ACTIONS(3271), + [anon_sym_LT_LT_DASH] = ACTIONS(2176), + [anon_sym_LT_LT_LT] = ACTIONS(2176), + [anon_sym_BQUOTE] = ACTIONS(2176), + [sym_comment] = ACTIONS(48), + }, + [2095] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5642), + [sym_comment] = ACTIONS(48), + }, + [2096] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5644), + [sym_comment] = ACTIONS(48), + }, + [2097] = { + [anon_sym_RBRACE] = ACTIONS(5644), + [sym_comment] = ACTIONS(48), + }, + [2098] = { + [sym_file_descriptor] = ACTIONS(2214), + [sym__concat] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_PIPE_AMP] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_GT] = ACTIONS(3277), + [anon_sym_GT_GT] = ACTIONS(2214), + [anon_sym_AMP_GT] = ACTIONS(3277), + [anon_sym_AMP_GT_GT] = ACTIONS(2214), + [anon_sym_LT_AMP] = ACTIONS(2214), + [anon_sym_GT_AMP] = ACTIONS(2214), + [anon_sym_LT_LT] = ACTIONS(3277), + [anon_sym_LT_LT_DASH] = ACTIONS(2214), + [anon_sym_LT_LT_LT] = ACTIONS(2214), + [anon_sym_BQUOTE] = ACTIONS(2214), + [sym_comment] = ACTIONS(48), + }, + [2099] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5646), + [sym_comment] = ACTIONS(48), + }, + [2100] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5648), + [sym_comment] = ACTIONS(48), + }, + [2101] = { + [anon_sym_RBRACE] = ACTIONS(5648), + [sym_comment] = ACTIONS(48), + }, + [2102] = { + [sym_concatenation] = STATE(2454), + [sym_string] = STATE(2453), + [sym_simple_expansion] = STATE(2453), + [sym_expansion] = STATE(2453), + [sym_command_substitution] = STATE(2453), + [sym_process_substitution] = STATE(2453), + [anon_sym_RBRACE] = ACTIONS(5644), + [sym__special_characters] = ACTIONS(5650), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5652), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5654), + }, + [2103] = { + [sym_file_descriptor] = ACTIONS(2228), + [sym__concat] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(3289), + [anon_sym_PIPE_AMP] = ACTIONS(2228), + [anon_sym_AMP_AMP] = ACTIONS(2228), + [anon_sym_PIPE_PIPE] = ACTIONS(2228), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_GT] = ACTIONS(3289), + [anon_sym_GT_GT] = ACTIONS(2228), + [anon_sym_AMP_GT] = ACTIONS(3289), + [anon_sym_AMP_GT_GT] = ACTIONS(2228), + [anon_sym_LT_AMP] = ACTIONS(2228), + [anon_sym_GT_AMP] = ACTIONS(2228), + [anon_sym_LT_LT] = ACTIONS(3289), + [anon_sym_LT_LT_DASH] = ACTIONS(2228), + [anon_sym_LT_LT_LT] = ACTIONS(2228), + [anon_sym_BQUOTE] = ACTIONS(2228), + [sym_comment] = ACTIONS(48), + }, + [2104] = { + [sym_concatenation] = STATE(2458), + [sym_string] = STATE(2457), + [sym_simple_expansion] = STATE(2457), + [sym_expansion] = STATE(2457), + [sym_command_substitution] = STATE(2457), + [sym_process_substitution] = STATE(2457), + [anon_sym_RBRACE] = ACTIONS(5656), + [sym__special_characters] = ACTIONS(5658), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5660), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5662), + }, + [2105] = { + [sym_file_descriptor] = ACTIONS(2240), + [sym__concat] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_PIPE_AMP] = ACTIONS(2240), + [anon_sym_AMP_AMP] = ACTIONS(2240), + [anon_sym_PIPE_PIPE] = ACTIONS(2240), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_GT] = ACTIONS(3299), + [anon_sym_GT_GT] = ACTIONS(2240), + [anon_sym_AMP_GT] = ACTIONS(3299), + [anon_sym_AMP_GT_GT] = ACTIONS(2240), + [anon_sym_LT_AMP] = ACTIONS(2240), + [anon_sym_GT_AMP] = ACTIONS(2240), + [anon_sym_LT_LT] = ACTIONS(3299), + [anon_sym_LT_LT_DASH] = ACTIONS(2240), + [anon_sym_LT_LT_LT] = ACTIONS(2240), + [anon_sym_BQUOTE] = ACTIONS(2240), + [sym_comment] = ACTIONS(48), + }, + [2106] = { + [sym_concatenation] = STATE(2462), + [sym_string] = STATE(2461), + [sym_simple_expansion] = STATE(2461), + [sym_expansion] = STATE(2461), + [sym_command_substitution] = STATE(2461), + [sym_process_substitution] = STATE(2461), + [anon_sym_RBRACE] = ACTIONS(5664), + [sym__special_characters] = ACTIONS(5666), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5668), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5670), + }, + [2107] = { + [sym_file_descriptor] = ACTIONS(2252), + [sym__concat] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_PIPE_AMP] = ACTIONS(2252), + [anon_sym_AMP_AMP] = ACTIONS(2252), + [anon_sym_PIPE_PIPE] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_GT] = ACTIONS(3309), + [anon_sym_GT_GT] = ACTIONS(2252), + [anon_sym_AMP_GT] = ACTIONS(3309), + [anon_sym_AMP_GT_GT] = ACTIONS(2252), + [anon_sym_LT_AMP] = ACTIONS(2252), + [anon_sym_GT_AMP] = ACTIONS(2252), + [anon_sym_LT_LT] = ACTIONS(3309), + [anon_sym_LT_LT_DASH] = ACTIONS(2252), + [anon_sym_LT_LT_LT] = ACTIONS(2252), + [anon_sym_BQUOTE] = ACTIONS(2252), + [sym_comment] = ACTIONS(48), + }, + [2108] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5672), + [sym_comment] = ACTIONS(48), + }, + [2109] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5674), + [sym_comment] = ACTIONS(48), + }, + [2110] = { + [anon_sym_RBRACE] = ACTIONS(5674), + [sym_comment] = ACTIONS(48), + }, + [2111] = { + [sym_file_descriptor] = ACTIONS(3353), + [sym__concat] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(3355), + [anon_sym_SEMI_SEMI] = ACTIONS(3355), + [anon_sym_PIPE_AMP] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_LT] = ACTIONS(3355), + [anon_sym_GT] = ACTIONS(3355), + [anon_sym_GT_GT] = ACTIONS(3355), + [anon_sym_AMP_GT] = ACTIONS(3355), + [anon_sym_AMP_GT_GT] = ACTIONS(3355), + [anon_sym_LT_AMP] = ACTIONS(3355), + [anon_sym_GT_AMP] = ACTIONS(3355), + [anon_sym_LT_LT] = ACTIONS(3355), + [anon_sym_LT_LT_DASH] = ACTIONS(3355), + [anon_sym_LT_LT_LT] = ACTIONS(3355), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_LF] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3355), + }, + [2112] = { + [sym_file_descriptor] = ACTIONS(3359), + [sym__concat] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3361), + [anon_sym_SEMI_SEMI] = ACTIONS(3361), + [anon_sym_PIPE_AMP] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_GT] = ACTIONS(3361), + [anon_sym_GT_GT] = ACTIONS(3361), + [anon_sym_AMP_GT] = ACTIONS(3361), + [anon_sym_AMP_GT_GT] = ACTIONS(3361), + [anon_sym_LT_AMP] = ACTIONS(3361), + [anon_sym_GT_AMP] = ACTIONS(3361), + [anon_sym_LT_LT] = ACTIONS(3361), + [anon_sym_LT_LT_DASH] = ACTIONS(3361), + [anon_sym_LT_LT_LT] = ACTIONS(3361), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_LF] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3361), + }, + [2113] = { + [sym_file_descriptor] = ACTIONS(3401), + [sym__concat] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(3403), + [anon_sym_SEMI_SEMI] = ACTIONS(3403), + [anon_sym_PIPE_AMP] = ACTIONS(3403), + [anon_sym_AMP_AMP] = ACTIONS(3403), + [anon_sym_PIPE_PIPE] = ACTIONS(3403), + [anon_sym_LT] = ACTIONS(3403), + [anon_sym_GT] = ACTIONS(3403), + [anon_sym_GT_GT] = ACTIONS(3403), + [anon_sym_AMP_GT] = ACTIONS(3403), + [anon_sym_AMP_GT_GT] = ACTIONS(3403), + [anon_sym_LT_AMP] = ACTIONS(3403), + [anon_sym_GT_AMP] = ACTIONS(3403), + [anon_sym_LT_LT] = ACTIONS(3403), + [anon_sym_LT_LT_DASH] = ACTIONS(3403), + [anon_sym_LT_LT_LT] = ACTIONS(3403), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_LF] = ACTIONS(3403), + [anon_sym_AMP] = ACTIONS(3403), + }, + [2114] = { + [sym_file_descriptor] = ACTIONS(3405), + [sym__concat] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(3407), + [anon_sym_SEMI_SEMI] = ACTIONS(3407), + [anon_sym_PIPE_AMP] = ACTIONS(3407), + [anon_sym_AMP_AMP] = ACTIONS(3407), + [anon_sym_PIPE_PIPE] = ACTIONS(3407), + [anon_sym_LT] = ACTIONS(3407), + [anon_sym_GT] = ACTIONS(3407), + [anon_sym_GT_GT] = ACTIONS(3407), + [anon_sym_AMP_GT] = ACTIONS(3407), + [anon_sym_AMP_GT_GT] = ACTIONS(3407), + [anon_sym_LT_AMP] = ACTIONS(3407), + [anon_sym_GT_AMP] = ACTIONS(3407), + [anon_sym_LT_LT] = ACTIONS(3407), + [anon_sym_LT_LT_DASH] = ACTIONS(3407), + [anon_sym_LT_LT_LT] = ACTIONS(3407), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_LF] = ACTIONS(3407), + [anon_sym_AMP] = ACTIONS(3407), + }, + [2115] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5676), + [sym_comment] = ACTIONS(48), + }, + [2116] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5678), + [sym_comment] = ACTIONS(48), + }, + [2117] = { + [anon_sym_RBRACE] = ACTIONS(5678), + [sym_comment] = ACTIONS(48), + }, + [2118] = { + [sym_file_descriptor] = ACTIONS(3413), + [sym__concat] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(3415), + [anon_sym_SEMI_SEMI] = ACTIONS(3415), + [anon_sym_PIPE_AMP] = ACTIONS(3415), + [anon_sym_AMP_AMP] = ACTIONS(3415), + [anon_sym_PIPE_PIPE] = ACTIONS(3415), + [anon_sym_LT] = ACTIONS(3415), + [anon_sym_GT] = ACTIONS(3415), + [anon_sym_GT_GT] = ACTIONS(3415), + [anon_sym_AMP_GT] = ACTIONS(3415), + [anon_sym_AMP_GT_GT] = ACTIONS(3415), + [anon_sym_LT_AMP] = ACTIONS(3415), + [anon_sym_GT_AMP] = ACTIONS(3415), + [anon_sym_LT_LT] = ACTIONS(3415), + [anon_sym_LT_LT_DASH] = ACTIONS(3415), + [anon_sym_LT_LT_LT] = ACTIONS(3415), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_LF] = ACTIONS(3415), + [anon_sym_AMP] = ACTIONS(3415), + }, + [2119] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5680), + [sym_comment] = ACTIONS(48), + }, + [2120] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5682), + [sym_comment] = ACTIONS(48), + }, + [2121] = { + [anon_sym_RBRACE] = ACTIONS(5682), + [sym_comment] = ACTIONS(48), + }, + [2122] = { + [sym_file_descriptor] = ACTIONS(3421), + [sym__concat] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(3423), + [anon_sym_SEMI_SEMI] = ACTIONS(3423), + [anon_sym_PIPE_AMP] = ACTIONS(3423), + [anon_sym_AMP_AMP] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3423), + [anon_sym_GT] = ACTIONS(3423), + [anon_sym_GT_GT] = ACTIONS(3423), + [anon_sym_AMP_GT] = ACTIONS(3423), + [anon_sym_AMP_GT_GT] = ACTIONS(3423), + [anon_sym_LT_AMP] = ACTIONS(3423), + [anon_sym_GT_AMP] = ACTIONS(3423), + [anon_sym_LT_LT] = ACTIONS(3423), + [anon_sym_LT_LT_DASH] = ACTIONS(3423), + [anon_sym_LT_LT_LT] = ACTIONS(3423), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_LF] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3423), + }, + [2123] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5684), + [sym_comment] = ACTIONS(48), + }, + [2124] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5686), + [sym_comment] = ACTIONS(48), + }, + [2125] = { + [anon_sym_RBRACE] = ACTIONS(5686), + [sym_comment] = ACTIONS(48), + }, + [2126] = { + [sym_file_descriptor] = ACTIONS(3429), + [sym__concat] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_SEMI_SEMI] = ACTIONS(3431), + [anon_sym_PIPE_AMP] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_PIPE_PIPE] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_AMP_GT] = ACTIONS(3431), + [anon_sym_AMP_GT_GT] = ACTIONS(3431), + [anon_sym_LT_AMP] = ACTIONS(3431), + [anon_sym_GT_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_LT_LT_DASH] = ACTIONS(3431), + [anon_sym_LT_LT_LT] = ACTIONS(3431), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_LF] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + }, + [2127] = { + [sym_file_descriptor] = ACTIONS(3433), + [sym__concat] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(3435), + [anon_sym_SEMI_SEMI] = ACTIONS(3435), + [anon_sym_PIPE_AMP] = ACTIONS(3435), + [anon_sym_AMP_AMP] = ACTIONS(3435), + [anon_sym_PIPE_PIPE] = ACTIONS(3435), + [anon_sym_LT] = ACTIONS(3435), + [anon_sym_GT] = ACTIONS(3435), + [anon_sym_GT_GT] = ACTIONS(3435), + [anon_sym_AMP_GT] = ACTIONS(3435), + [anon_sym_AMP_GT_GT] = ACTIONS(3435), + [anon_sym_LT_AMP] = ACTIONS(3435), + [anon_sym_GT_AMP] = ACTIONS(3435), + [anon_sym_LT_LT] = ACTIONS(3435), + [anon_sym_LT_LT_DASH] = ACTIONS(3435), + [anon_sym_LT_LT_LT] = ACTIONS(3435), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_LF] = ACTIONS(3435), + [anon_sym_AMP] = ACTIONS(3435), + }, + [2128] = { + [sym__heredoc_middle] = ACTIONS(2176), + [sym__heredoc_end] = ACTIONS(2176), + [anon_sym_DOLLAR] = ACTIONS(3271), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2176), + [sym_comment] = ACTIONS(48), + }, + [2129] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5688), + [sym_comment] = ACTIONS(48), + }, + [2130] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5690), + [sym_comment] = ACTIONS(48), + }, + [2131] = { + [anon_sym_RBRACE] = ACTIONS(5690), + [sym_comment] = ACTIONS(48), + }, + [2132] = { + [sym__heredoc_middle] = ACTIONS(2214), + [sym__heredoc_end] = ACTIONS(2214), + [anon_sym_DOLLAR] = ACTIONS(3277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2214), + [sym_comment] = ACTIONS(48), + }, + [2133] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5692), + [sym_comment] = ACTIONS(48), + }, + [2134] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5694), + [sym_comment] = ACTIONS(48), + }, + [2135] = { + [anon_sym_RBRACE] = ACTIONS(5694), + [sym_comment] = ACTIONS(48), + }, + [2136] = { + [sym_concatenation] = STATE(2477), + [sym_string] = STATE(2476), + [sym_simple_expansion] = STATE(2476), + [sym_expansion] = STATE(2476), + [sym_command_substitution] = STATE(2476), + [sym_process_substitution] = STATE(2476), + [anon_sym_RBRACE] = ACTIONS(5690), + [sym__special_characters] = ACTIONS(5696), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5698), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5700), + }, + [2137] = { + [sym__heredoc_middle] = ACTIONS(2228), + [sym__heredoc_end] = ACTIONS(2228), + [anon_sym_DOLLAR] = ACTIONS(3289), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2228), + [sym_comment] = ACTIONS(48), + }, + [2138] = { + [sym_concatenation] = STATE(2481), + [sym_string] = STATE(2480), + [sym_simple_expansion] = STATE(2480), + [sym_expansion] = STATE(2480), + [sym_command_substitution] = STATE(2480), + [sym_process_substitution] = STATE(2480), + [anon_sym_RBRACE] = ACTIONS(5702), + [sym__special_characters] = ACTIONS(5704), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5706), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5708), + }, + [2139] = { + [sym__heredoc_middle] = ACTIONS(2240), + [sym__heredoc_end] = ACTIONS(2240), + [anon_sym_DOLLAR] = ACTIONS(3299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2240), + [sym_comment] = ACTIONS(48), + }, + [2140] = { + [sym_concatenation] = STATE(2485), + [sym_string] = STATE(2484), + [sym_simple_expansion] = STATE(2484), + [sym_expansion] = STATE(2484), + [sym_command_substitution] = STATE(2484), + [sym_process_substitution] = STATE(2484), + [anon_sym_RBRACE] = ACTIONS(5710), + [sym__special_characters] = ACTIONS(5712), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5714), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5716), + }, + [2141] = { + [sym__heredoc_middle] = ACTIONS(2252), + [sym__heredoc_end] = ACTIONS(2252), + [anon_sym_DOLLAR] = ACTIONS(3309), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2252), + [sym_comment] = ACTIONS(48), + }, + [2142] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5718), + [sym_comment] = ACTIONS(48), + }, + [2143] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5720), + [sym_comment] = ACTIONS(48), + }, + [2144] = { + [anon_sym_RBRACE] = ACTIONS(5720), + [sym_comment] = ACTIONS(48), + }, + [2145] = { + [sym__concat] = ACTIONS(3353), + [anon_sym_RPAREN] = ACTIONS(3353), + [sym__special_characters] = ACTIONS(4381), + [anon_sym_DQUOTE] = ACTIONS(3353), + [sym_raw_string] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(4381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3353), + [anon_sym_BQUOTE] = ACTIONS(3353), + [anon_sym_LT_LPAREN] = ACTIONS(3353), + [anon_sym_GT_LPAREN] = ACTIONS(3353), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4381), + }, + [2146] = { + [sym__concat] = ACTIONS(3359), + [anon_sym_RPAREN] = ACTIONS(3359), + [sym__special_characters] = ACTIONS(4383), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(4383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [anon_sym_LT_LPAREN] = ACTIONS(3359), + [anon_sym_GT_LPAREN] = ACTIONS(3359), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4383), + }, + [2147] = { + [sym__concat] = ACTIONS(3401), + [anon_sym_RPAREN] = ACTIONS(3401), + [sym__special_characters] = ACTIONS(4385), + [anon_sym_DQUOTE] = ACTIONS(3401), + [sym_raw_string] = ACTIONS(3401), + [anon_sym_DOLLAR] = ACTIONS(4385), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3401), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3401), + [anon_sym_BQUOTE] = ACTIONS(3401), + [anon_sym_LT_LPAREN] = ACTIONS(3401), + [anon_sym_GT_LPAREN] = ACTIONS(3401), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4385), + }, + [2148] = { + [sym__concat] = ACTIONS(3405), + [anon_sym_RPAREN] = ACTIONS(3405), + [sym__special_characters] = ACTIONS(4387), + [anon_sym_DQUOTE] = ACTIONS(3405), + [sym_raw_string] = ACTIONS(3405), + [anon_sym_DOLLAR] = ACTIONS(4387), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3405), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3405), + [anon_sym_BQUOTE] = ACTIONS(3405), + [anon_sym_LT_LPAREN] = ACTIONS(3405), + [anon_sym_GT_LPAREN] = ACTIONS(3405), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4387), + }, + [2149] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5722), + [sym_comment] = ACTIONS(48), + }, + [2150] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5724), + [sym_comment] = ACTIONS(48), + }, + [2151] = { + [anon_sym_RBRACE] = ACTIONS(5724), + [sym_comment] = ACTIONS(48), + }, + [2152] = { + [sym__concat] = ACTIONS(3413), + [anon_sym_RPAREN] = ACTIONS(3413), + [sym__special_characters] = ACTIONS(4393), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR] = ACTIONS(4393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3413), + [anon_sym_BQUOTE] = ACTIONS(3413), + [anon_sym_LT_LPAREN] = ACTIONS(3413), + [anon_sym_GT_LPAREN] = ACTIONS(3413), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4393), + }, + [2153] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5726), + [sym_comment] = ACTIONS(48), + }, + [2154] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5728), + [sym_comment] = ACTIONS(48), + }, + [2155] = { + [anon_sym_RBRACE] = ACTIONS(5728), + [sym_comment] = ACTIONS(48), + }, + [2156] = { + [sym__concat] = ACTIONS(3421), + [anon_sym_RPAREN] = ACTIONS(3421), + [sym__special_characters] = ACTIONS(4399), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_raw_string] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(4399), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3421), + [anon_sym_BQUOTE] = ACTIONS(3421), + [anon_sym_LT_LPAREN] = ACTIONS(3421), + [anon_sym_GT_LPAREN] = ACTIONS(3421), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4399), + }, + [2157] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5730), + [sym_comment] = ACTIONS(48), + }, + [2158] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5732), + [sym_comment] = ACTIONS(48), + }, + [2159] = { + [anon_sym_RBRACE] = ACTIONS(5732), + [sym_comment] = ACTIONS(48), + }, + [2160] = { + [sym__concat] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [sym__special_characters] = ACTIONS(4405), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym_raw_string] = ACTIONS(3429), + [anon_sym_DOLLAR] = ACTIONS(4405), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3429), + [anon_sym_BQUOTE] = ACTIONS(3429), + [anon_sym_LT_LPAREN] = ACTIONS(3429), + [anon_sym_GT_LPAREN] = ACTIONS(3429), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4405), + }, + [2161] = { + [sym__concat] = ACTIONS(3433), + [anon_sym_RPAREN] = ACTIONS(3433), + [sym__special_characters] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(3433), + [sym_raw_string] = ACTIONS(3433), + [anon_sym_DOLLAR] = ACTIONS(4407), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3433), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3433), + [anon_sym_BQUOTE] = ACTIONS(3433), + [anon_sym_LT_LPAREN] = ACTIONS(3433), + [anon_sym_GT_LPAREN] = ACTIONS(3433), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4407), + }, + [2162] = { + [sym_file_descriptor] = ACTIONS(4464), + [sym__concat] = ACTIONS(4464), + [sym_variable_name] = ACTIONS(4464), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_SEMI_SEMI] = ACTIONS(4466), + [anon_sym_PIPE_AMP] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_PIPE_PIPE] = ACTIONS(4466), + [anon_sym_LT] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4466), + [anon_sym_GT_GT] = ACTIONS(4466), + [anon_sym_AMP_GT] = ACTIONS(4466), + [anon_sym_AMP_GT_GT] = ACTIONS(4466), + [anon_sym_LT_AMP] = ACTIONS(4466), + [anon_sym_GT_AMP] = ACTIONS(4466), + [sym__special_characters] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4466), + [sym_raw_string] = ACTIONS(4466), + [anon_sym_DOLLAR] = ACTIONS(4466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4466), + [anon_sym_BQUOTE] = ACTIONS(4466), + [anon_sym_LT_LPAREN] = ACTIONS(4466), + [anon_sym_GT_LPAREN] = ACTIONS(4466), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4466), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym_LF] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4466), + }, + [2163] = { + [sym_file_descriptor] = ACTIONS(4468), + [sym__concat] = ACTIONS(4468), + [sym_variable_name] = ACTIONS(4468), + [anon_sym_PIPE] = ACTIONS(4470), + [anon_sym_SEMI_SEMI] = ACTIONS(4470), + [anon_sym_PIPE_AMP] = ACTIONS(4470), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE_PIPE] = ACTIONS(4470), + [anon_sym_LT] = ACTIONS(4470), + [anon_sym_GT] = ACTIONS(4470), + [anon_sym_GT_GT] = ACTIONS(4470), + [anon_sym_AMP_GT] = ACTIONS(4470), + [anon_sym_AMP_GT_GT] = ACTIONS(4470), + [anon_sym_LT_AMP] = ACTIONS(4470), + [anon_sym_GT_AMP] = ACTIONS(4470), + [sym__special_characters] = ACTIONS(4470), + [anon_sym_DQUOTE] = ACTIONS(4470), + [sym_raw_string] = ACTIONS(4470), + [anon_sym_DOLLAR] = ACTIONS(4470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4470), + [anon_sym_BQUOTE] = ACTIONS(4470), + [anon_sym_LT_LPAREN] = ACTIONS(4470), + [anon_sym_GT_LPAREN] = ACTIONS(4470), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4470), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_LF] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4470), + }, + [2164] = { + [sym_file_descriptor] = ACTIONS(4472), + [sym__concat] = ACTIONS(4472), + [sym_variable_name] = ACTIONS(4472), + [anon_sym_PIPE] = ACTIONS(4474), + [anon_sym_SEMI_SEMI] = ACTIONS(4474), + [anon_sym_PIPE_AMP] = ACTIONS(4474), + [anon_sym_AMP_AMP] = ACTIONS(4474), + [anon_sym_PIPE_PIPE] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4474), + [anon_sym_GT] = ACTIONS(4474), + [anon_sym_GT_GT] = ACTIONS(4474), + [anon_sym_AMP_GT] = ACTIONS(4474), + [anon_sym_AMP_GT_GT] = ACTIONS(4474), + [anon_sym_LT_AMP] = ACTIONS(4474), + [anon_sym_GT_AMP] = ACTIONS(4474), + [sym__special_characters] = ACTIONS(4474), + [anon_sym_DQUOTE] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(4474), + [anon_sym_DOLLAR] = ACTIONS(4474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4474), + [anon_sym_BQUOTE] = ACTIONS(4474), + [anon_sym_LT_LPAREN] = ACTIONS(4474), + [anon_sym_GT_LPAREN] = ACTIONS(4474), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4474), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym_LF] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4474), + }, + [2165] = { + [sym_file_descriptor] = ACTIONS(4476), + [sym__concat] = ACTIONS(4476), + [sym_variable_name] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(4478), + [anon_sym_SEMI_SEMI] = ACTIONS(4478), + [anon_sym_PIPE_AMP] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4478), + [anon_sym_GT] = ACTIONS(4478), + [anon_sym_GT_GT] = ACTIONS(4478), + [anon_sym_AMP_GT] = ACTIONS(4478), + [anon_sym_AMP_GT_GT] = ACTIONS(4478), + [anon_sym_LT_AMP] = ACTIONS(4478), + [anon_sym_GT_AMP] = ACTIONS(4478), + [sym__special_characters] = ACTIONS(4478), + [anon_sym_DQUOTE] = ACTIONS(4478), + [sym_raw_string] = ACTIONS(4478), + [anon_sym_DOLLAR] = ACTIONS(4478), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), + [anon_sym_BQUOTE] = ACTIONS(4478), + [anon_sym_LT_LPAREN] = ACTIONS(4478), + [anon_sym_GT_LPAREN] = ACTIONS(4478), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4478), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_LF] = ACTIONS(4478), + [anon_sym_AMP] = ACTIONS(4478), + }, + [2166] = { + [sym_file_descriptor] = ACTIONS(4480), + [sym__concat] = ACTIONS(4480), + [sym_variable_name] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(4482), + [anon_sym_SEMI_SEMI] = ACTIONS(4482), + [anon_sym_PIPE_AMP] = ACTIONS(4482), + [anon_sym_AMP_AMP] = ACTIONS(4482), + [anon_sym_PIPE_PIPE] = ACTIONS(4482), + [anon_sym_LT] = ACTIONS(4482), + [anon_sym_GT] = ACTIONS(4482), + [anon_sym_GT_GT] = ACTIONS(4482), + [anon_sym_AMP_GT] = ACTIONS(4482), + [anon_sym_AMP_GT_GT] = ACTIONS(4482), + [anon_sym_LT_AMP] = ACTIONS(4482), + [anon_sym_GT_AMP] = ACTIONS(4482), + [sym__special_characters] = ACTIONS(4482), + [anon_sym_DQUOTE] = ACTIONS(4482), + [sym_raw_string] = ACTIONS(4482), + [anon_sym_DOLLAR] = ACTIONS(4482), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4482), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4482), + [anon_sym_GT_LPAREN] = ACTIONS(4482), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4482), + [anon_sym_LF] = ACTIONS(4482), + [anon_sym_AMP] = ACTIONS(4482), + }, + [2167] = { + [sym_file_descriptor] = ACTIONS(4484), + [sym__concat] = ACTIONS(4484), + [sym_variable_name] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(4486), + [anon_sym_SEMI_SEMI] = ACTIONS(4486), + [anon_sym_PIPE_AMP] = ACTIONS(4486), + [anon_sym_AMP_AMP] = ACTIONS(4486), + [anon_sym_PIPE_PIPE] = ACTIONS(4486), + [anon_sym_LT] = ACTIONS(4486), + [anon_sym_GT] = ACTIONS(4486), + [anon_sym_GT_GT] = ACTIONS(4486), + [anon_sym_AMP_GT] = ACTIONS(4486), + [anon_sym_AMP_GT_GT] = ACTIONS(4486), + [anon_sym_LT_AMP] = ACTIONS(4486), + [anon_sym_GT_AMP] = ACTIONS(4486), + [sym__special_characters] = ACTIONS(4486), + [anon_sym_DQUOTE] = ACTIONS(4486), + [sym_raw_string] = ACTIONS(4486), + [anon_sym_DOLLAR] = ACTIONS(4486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4486), + [anon_sym_BQUOTE] = ACTIONS(4486), + [anon_sym_LT_LPAREN] = ACTIONS(4486), + [anon_sym_GT_LPAREN] = ACTIONS(4486), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4486), + [anon_sym_SEMI] = ACTIONS(4486), + [anon_sym_LF] = ACTIONS(4486), + [anon_sym_AMP] = ACTIONS(4486), + }, + [2168] = { + [sym__concat] = ACTIONS(4464), + [anon_sym_RBRACK] = ACTIONS(4464), + [sym_comment] = ACTIONS(48), + }, + [2169] = { + [sym__concat] = ACTIONS(4468), + [anon_sym_RBRACK] = ACTIONS(4468), + [sym_comment] = ACTIONS(48), + }, + [2170] = { + [sym__concat] = ACTIONS(4472), + [anon_sym_RBRACK] = ACTIONS(4472), + [sym_comment] = ACTIONS(48), + }, + [2171] = { + [sym__concat] = ACTIONS(4476), + [anon_sym_RBRACK] = ACTIONS(4476), + [sym_comment] = ACTIONS(48), + }, + [2172] = { + [sym__concat] = ACTIONS(4480), + [anon_sym_RBRACK] = ACTIONS(4480), + [sym_comment] = ACTIONS(48), + }, + [2173] = { + [sym__concat] = ACTIONS(4484), + [anon_sym_RBRACK] = ACTIONS(4484), + [sym_comment] = ACTIONS(48), + }, + [2174] = { + [sym__concat] = ACTIONS(3353), + [anon_sym_SEMI_SEMI] = ACTIONS(3355), + [sym__special_characters] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [sym_raw_string] = ACTIONS(3355), + [anon_sym_DOLLAR] = ACTIONS(3355), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3355), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3355), + [anon_sym_BQUOTE] = ACTIONS(3355), + [anon_sym_LT_LPAREN] = ACTIONS(3355), + [anon_sym_GT_LPAREN] = ACTIONS(3355), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_LF] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3355), + }, + [2175] = { + [sym__concat] = ACTIONS(3359), + [anon_sym_SEMI_SEMI] = ACTIONS(3361), + [sym__special_characters] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [sym_raw_string] = ACTIONS(3361), + [anon_sym_DOLLAR] = ACTIONS(3361), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3361), + [anon_sym_BQUOTE] = ACTIONS(3361), + [anon_sym_LT_LPAREN] = ACTIONS(3361), + [anon_sym_GT_LPAREN] = ACTIONS(3361), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_LF] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3361), + }, + [2176] = { + [sym__concat] = ACTIONS(3401), + [anon_sym_SEMI_SEMI] = ACTIONS(3403), + [sym__special_characters] = ACTIONS(3403), + [anon_sym_DQUOTE] = ACTIONS(3403), + [sym_raw_string] = ACTIONS(3403), + [anon_sym_DOLLAR] = ACTIONS(3403), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3403), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3403), + [anon_sym_BQUOTE] = ACTIONS(3403), + [anon_sym_LT_LPAREN] = ACTIONS(3403), + [anon_sym_GT_LPAREN] = ACTIONS(3403), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_LF] = ACTIONS(3403), + [anon_sym_AMP] = ACTIONS(3403), + }, + [2177] = { + [sym__concat] = ACTIONS(3405), + [anon_sym_SEMI_SEMI] = ACTIONS(3407), + [sym__special_characters] = ACTIONS(3407), + [anon_sym_DQUOTE] = ACTIONS(3407), + [sym_raw_string] = ACTIONS(3407), + [anon_sym_DOLLAR] = ACTIONS(3407), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3407), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3407), + [anon_sym_BQUOTE] = ACTIONS(3407), + [anon_sym_LT_LPAREN] = ACTIONS(3407), + [anon_sym_GT_LPAREN] = ACTIONS(3407), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3407), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_LF] = ACTIONS(3407), + [anon_sym_AMP] = ACTIONS(3407), + }, + [2178] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5734), + [sym_comment] = ACTIONS(48), + }, + [2179] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5736), + [sym_comment] = ACTIONS(48), + }, + [2180] = { + [anon_sym_RBRACE] = ACTIONS(5736), + [sym_comment] = ACTIONS(48), + }, + [2181] = { + [sym__concat] = ACTIONS(3413), + [anon_sym_SEMI_SEMI] = ACTIONS(3415), + [sym__special_characters] = ACTIONS(3415), + [anon_sym_DQUOTE] = ACTIONS(3415), + [sym_raw_string] = ACTIONS(3415), + [anon_sym_DOLLAR] = ACTIONS(3415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3415), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3415), + [anon_sym_BQUOTE] = ACTIONS(3415), + [anon_sym_LT_LPAREN] = ACTIONS(3415), + [anon_sym_GT_LPAREN] = ACTIONS(3415), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_LF] = ACTIONS(3415), + [anon_sym_AMP] = ACTIONS(3415), + }, + [2182] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5738), + [sym_comment] = ACTIONS(48), + }, + [2183] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5740), + [sym_comment] = ACTIONS(48), + }, + [2184] = { + [anon_sym_RBRACE] = ACTIONS(5740), + [sym_comment] = ACTIONS(48), + }, + [2185] = { + [sym__concat] = ACTIONS(3421), + [anon_sym_SEMI_SEMI] = ACTIONS(3423), + [sym__special_characters] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_raw_string] = ACTIONS(3423), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3423), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3423), + [anon_sym_BQUOTE] = ACTIONS(3423), + [anon_sym_LT_LPAREN] = ACTIONS(3423), + [anon_sym_GT_LPAREN] = ACTIONS(3423), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_LF] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3423), + }, + [2186] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5742), + [sym_comment] = ACTIONS(48), + }, + [2187] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5744), + [sym_comment] = ACTIONS(48), + }, + [2188] = { + [anon_sym_RBRACE] = ACTIONS(5744), + [sym_comment] = ACTIONS(48), + }, + [2189] = { + [sym__concat] = ACTIONS(3429), + [anon_sym_SEMI_SEMI] = ACTIONS(3431), + [sym__special_characters] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym_raw_string] = ACTIONS(3431), + [anon_sym_DOLLAR] = ACTIONS(3431), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3431), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3431), + [anon_sym_BQUOTE] = ACTIONS(3431), + [anon_sym_LT_LPAREN] = ACTIONS(3431), + [anon_sym_GT_LPAREN] = ACTIONS(3431), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_LF] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + }, + [2190] = { + [sym__concat] = ACTIONS(3433), + [anon_sym_SEMI_SEMI] = ACTIONS(3435), + [sym__special_characters] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(3435), + [sym_raw_string] = ACTIONS(3435), + [anon_sym_DOLLAR] = ACTIONS(3435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3435), + [anon_sym_BQUOTE] = ACTIONS(3435), + [anon_sym_LT_LPAREN] = ACTIONS(3435), + [anon_sym_GT_LPAREN] = ACTIONS(3435), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3435), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_LF] = ACTIONS(3435), + [anon_sym_AMP] = ACTIONS(3435), + }, + [2191] = { + [anon_sym_esac] = ACTIONS(5746), + [sym__special_characters] = ACTIONS(5746), + [anon_sym_DQUOTE] = ACTIONS(5748), + [sym_raw_string] = ACTIONS(5748), + [anon_sym_DOLLAR] = ACTIONS(5746), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5748), + [anon_sym_BQUOTE] = ACTIONS(5748), + [anon_sym_LT_LPAREN] = ACTIONS(5748), + [anon_sym_GT_LPAREN] = ACTIONS(5748), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5750), + }, + [2192] = { + [sym__terminated_statement] = STATE(22), + [sym_for_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_function_definition] = STATE(23), + [sym_subshell] = STATE(23), + [sym_pipeline] = STATE(23), + [sym_list] = STATE(23), + [sym_command] = STATE(23), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(25), + [sym_declaration_command] = STATE(23), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(736), + [sym_variable_name] = ACTIONS(739), + [anon_sym_for] = ACTIONS(744), + [anon_sym_while] = ACTIONS(747), + [anon_sym_if] = ACTIONS(750), + [anon_sym_case] = ACTIONS(753), + [anon_sym_SEMI_SEMI] = ACTIONS(742), + [anon_sym_function] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_declare] = ACTIONS(762), + [anon_sym_typeset] = ACTIONS(762), + [anon_sym_export] = ACTIONS(762), + [anon_sym_readonly] = ACTIONS(762), + [anon_sym_local] = ACTIONS(762), + [anon_sym_LT] = ACTIONS(765), + [anon_sym_GT] = ACTIONS(765), + [anon_sym_GT_GT] = ACTIONS(768), + [anon_sym_AMP_GT] = ACTIONS(765), + [anon_sym_AMP_GT_GT] = ACTIONS(768), + [anon_sym_LT_AMP] = ACTIONS(768), + [anon_sym_GT_AMP] = ACTIONS(768), + [sym__special_characters] = ACTIONS(771), + [anon_sym_DQUOTE] = ACTIONS(774), + [sym_raw_string] = ACTIONS(777), + [anon_sym_DOLLAR] = ACTIONS(780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(786), + [anon_sym_BQUOTE] = ACTIONS(789), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(795), + }, + [2193] = { + [sym__terminated_statement] = STATE(22), + [sym_for_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_function_definition] = STATE(23), + [sym_subshell] = STATE(23), + [sym_pipeline] = STATE(23), + [sym_list] = STATE(23), + [sym_command] = STATE(23), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(25), + [sym_declaration_command] = STATE(23), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_SEMI_SEMI] = ACTIONS(5752), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), + }, + [2194] = { + [anon_sym_esac] = ACTIONS(5754), + [sym__special_characters] = ACTIONS(5754), + [anon_sym_DQUOTE] = ACTIONS(5756), + [sym_raw_string] = ACTIONS(5756), + [anon_sym_DOLLAR] = ACTIONS(5754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5756), + [anon_sym_BQUOTE] = ACTIONS(5756), + [anon_sym_LT_LPAREN] = ACTIONS(5756), + [anon_sym_GT_LPAREN] = ACTIONS(5756), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5758), + }, + [2195] = { + [sym__terminated_statement] = STATE(22), + [sym_for_statement] = STATE(23), + [sym_while_statement] = STATE(23), + [sym_if_statement] = STATE(23), + [sym_case_statement] = STATE(23), + [sym_function_definition] = STATE(23), + [sym_subshell] = STATE(23), + [sym_pipeline] = STATE(23), + [sym_list] = STATE(23), + [sym_command] = STATE(23), + [sym_command_name] = STATE(24), + [sym_variable_assignment] = STATE(25), + [sym_declaration_command] = STATE(23), + [sym_subscript] = STATE(26), + [sym_file_redirect] = STATE(27), + [sym_concatenation] = STATE(28), + [sym_string] = STATE(14), + [sym_simple_expansion] = STATE(14), + [sym_expansion] = STATE(14), + [sym_command_substitution] = STATE(14), + [sym_process_substitution] = STATE(14), + [aux_sym_program_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(30), + [sym_file_descriptor] = ACTIONS(8), + [sym_variable_name] = ACTIONS(10), + [anon_sym_for] = ACTIONS(14), + [anon_sym_while] = ACTIONS(16), + [anon_sym_if] = ACTIONS(18), + [anon_sym_case] = ACTIONS(20), + [anon_sym_SEMI_SEMI] = ACTIONS(5760), + [anon_sym_function] = ACTIONS(22), + [anon_sym_LPAREN] = ACTIONS(24), + [anon_sym_declare] = ACTIONS(26), + [anon_sym_typeset] = ACTIONS(26), + [anon_sym_export] = ACTIONS(26), + [anon_sym_readonly] = ACTIONS(26), + [anon_sym_local] = ACTIONS(26), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(30), + [anon_sym_AMP_GT] = ACTIONS(28), + [anon_sym_AMP_GT_GT] = ACTIONS(30), + [anon_sym_LT_AMP] = ACTIONS(30), + [anon_sym_GT_AMP] = ACTIONS(30), + [sym__special_characters] = ACTIONS(32), + [anon_sym_DQUOTE] = ACTIONS(34), + [sym_raw_string] = ACTIONS(36), + [anon_sym_DOLLAR] = ACTIONS(38), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(40), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(42), + [anon_sym_BQUOTE] = ACTIONS(44), + [anon_sym_LT_LPAREN] = ACTIONS(46), + [anon_sym_GT_LPAREN] = ACTIONS(46), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(50), + }, + [2196] = { + [sym__concat] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2176), + [anon_sym_RPAREN] = ACTIONS(2176), + [sym_comment] = ACTIONS(48), + }, + [2197] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5762), + [sym_comment] = ACTIONS(48), + }, + [2198] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5764), + [sym_comment] = ACTIONS(48), + }, + [2199] = { + [anon_sym_RBRACE] = ACTIONS(5764), + [sym_comment] = ACTIONS(48), + }, + [2200] = { + [sym__concat] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_RPAREN] = ACTIONS(2214), + [sym_comment] = ACTIONS(48), + }, + [2201] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5766), + [sym_comment] = ACTIONS(48), + }, + [2202] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5768), + [sym_comment] = ACTIONS(48), + }, + [2203] = { + [anon_sym_RBRACE] = ACTIONS(5768), + [sym_comment] = ACTIONS(48), + }, + [2204] = { + [sym_concatenation] = STATE(2508), + [sym_string] = STATE(2507), + [sym_simple_expansion] = STATE(2507), + [sym_expansion] = STATE(2507), + [sym_command_substitution] = STATE(2507), + [sym_process_substitution] = STATE(2507), + [anon_sym_RBRACE] = ACTIONS(5764), + [sym__special_characters] = ACTIONS(5770), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5772), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5774), + }, + [2205] = { + [sym__concat] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [sym_comment] = ACTIONS(48), + }, + [2206] = { + [sym_concatenation] = STATE(2512), + [sym_string] = STATE(2511), + [sym_simple_expansion] = STATE(2511), + [sym_expansion] = STATE(2511), + [sym_command_substitution] = STATE(2511), + [sym_process_substitution] = STATE(2511), + [anon_sym_RBRACE] = ACTIONS(5776), + [sym__special_characters] = ACTIONS(5778), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5780), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5782), + }, + [2207] = { + [sym__concat] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2240), + [anon_sym_RPAREN] = ACTIONS(2240), + [sym_comment] = ACTIONS(48), + }, + [2208] = { + [sym_concatenation] = STATE(2516), + [sym_string] = STATE(2515), + [sym_simple_expansion] = STATE(2515), + [sym_expansion] = STATE(2515), + [sym_command_substitution] = STATE(2515), + [sym_process_substitution] = STATE(2515), + [anon_sym_RBRACE] = ACTIONS(5784), + [sym__special_characters] = ACTIONS(5786), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5788), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5790), + }, + [2209] = { + [sym__concat] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_RPAREN] = ACTIONS(2252), + [sym_comment] = ACTIONS(48), + }, + [2210] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5792), + [sym_comment] = ACTIONS(48), + }, + [2211] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5794), + [sym_comment] = ACTIONS(48), + }, + [2212] = { + [anon_sym_RBRACE] = ACTIONS(5794), + [sym_comment] = ACTIONS(48), + }, + [2213] = { + [sym__concat] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_SEMI_SEMI] = ACTIONS(2178), + [anon_sym_PIPE_AMP] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2178), + [anon_sym_PIPE_PIPE] = ACTIONS(2178), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_LF] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + }, + [2214] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5796), + [sym_comment] = ACTIONS(48), + }, + [2215] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5798), + [sym_comment] = ACTIONS(48), + }, + [2216] = { + [anon_sym_RBRACE] = ACTIONS(5798), + [sym_comment] = ACTIONS(48), + }, + [2217] = { + [sym__concat] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2216), + [anon_sym_SEMI_SEMI] = ACTIONS(2216), + [anon_sym_PIPE_AMP] = ACTIONS(2216), + [anon_sym_AMP_AMP] = ACTIONS(2216), + [anon_sym_PIPE_PIPE] = ACTIONS(2216), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_LF] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2216), + }, + [2218] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5800), + [sym_comment] = ACTIONS(48), + }, + [2219] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5802), + [sym_comment] = ACTIONS(48), + }, + [2220] = { + [anon_sym_RBRACE] = ACTIONS(5802), + [sym_comment] = ACTIONS(48), + }, + [2221] = { + [sym_concatenation] = STATE(2525), + [sym_string] = STATE(2524), + [sym_simple_expansion] = STATE(2524), + [sym_expansion] = STATE(2524), + [sym_command_substitution] = STATE(2524), + [sym_process_substitution] = STATE(2524), + [anon_sym_RBRACE] = ACTIONS(5798), + [sym__special_characters] = ACTIONS(5804), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5806), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5808), + }, + [2222] = { + [sym__concat] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2230), + [anon_sym_SEMI_SEMI] = ACTIONS(2230), + [anon_sym_PIPE_AMP] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2230), + [anon_sym_PIPE_PIPE] = ACTIONS(2230), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_LF] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2230), + }, + [2223] = { + [sym_concatenation] = STATE(2529), + [sym_string] = STATE(2528), + [sym_simple_expansion] = STATE(2528), + [sym_expansion] = STATE(2528), + [sym_command_substitution] = STATE(2528), + [sym_process_substitution] = STATE(2528), + [anon_sym_RBRACE] = ACTIONS(5810), + [sym__special_characters] = ACTIONS(5812), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5814), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5816), + }, + [2224] = { + [sym__concat] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_SEMI_SEMI] = ACTIONS(2242), + [anon_sym_PIPE_AMP] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2242), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_LF] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + }, + [2225] = { + [sym_concatenation] = STATE(2533), + [sym_string] = STATE(2532), + [sym_simple_expansion] = STATE(2532), + [sym_expansion] = STATE(2532), + [sym_command_substitution] = STATE(2532), + [sym_process_substitution] = STATE(2532), + [anon_sym_RBRACE] = ACTIONS(5818), + [sym__special_characters] = ACTIONS(5820), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5822), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5824), + }, + [2226] = { + [sym__concat] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_SEMI_SEMI] = ACTIONS(2254), + [anon_sym_PIPE_AMP] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LF] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + }, + [2227] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5826), + [sym_comment] = ACTIONS(48), + }, + [2228] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5828), + [sym_comment] = ACTIONS(48), + }, + [2229] = { + [anon_sym_RBRACE] = ACTIONS(5828), + [sym_comment] = ACTIONS(48), + }, + [2230] = { + [sym_file_descriptor] = ACTIONS(3353), + [sym__concat] = ACTIONS(3353), + [sym_variable_name] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(3355), + [anon_sym_RPAREN] = ACTIONS(3355), + [anon_sym_SEMI_SEMI] = ACTIONS(3355), + [anon_sym_PIPE_AMP] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_LT] = ACTIONS(3355), + [anon_sym_GT] = ACTIONS(3355), + [anon_sym_GT_GT] = ACTIONS(3355), + [anon_sym_AMP_GT] = ACTIONS(3355), + [anon_sym_AMP_GT_GT] = ACTIONS(3355), + [anon_sym_LT_AMP] = ACTIONS(3355), + [anon_sym_GT_AMP] = ACTIONS(3355), + [sym__special_characters] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [sym_raw_string] = ACTIONS(3355), + [anon_sym_DOLLAR] = ACTIONS(3355), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3355), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3355), + [anon_sym_BQUOTE] = ACTIONS(3355), + [anon_sym_LT_LPAREN] = ACTIONS(3355), + [anon_sym_GT_LPAREN] = ACTIONS(3355), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_LF] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3355), + }, + [2231] = { + [sym_file_descriptor] = ACTIONS(3359), + [sym__concat] = ACTIONS(3359), + [sym_variable_name] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3361), + [anon_sym_RPAREN] = ACTIONS(3361), + [anon_sym_SEMI_SEMI] = ACTIONS(3361), + [anon_sym_PIPE_AMP] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_GT] = ACTIONS(3361), + [anon_sym_GT_GT] = ACTIONS(3361), + [anon_sym_AMP_GT] = ACTIONS(3361), + [anon_sym_AMP_GT_GT] = ACTIONS(3361), + [anon_sym_LT_AMP] = ACTIONS(3361), + [anon_sym_GT_AMP] = ACTIONS(3361), + [sym__special_characters] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [sym_raw_string] = ACTIONS(3361), + [anon_sym_DOLLAR] = ACTIONS(3361), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3361), + [anon_sym_BQUOTE] = ACTIONS(3361), + [anon_sym_LT_LPAREN] = ACTIONS(3361), + [anon_sym_GT_LPAREN] = ACTIONS(3361), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_LF] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3361), + }, + [2232] = { + [sym_file_descriptor] = ACTIONS(3401), + [sym__concat] = ACTIONS(3401), + [sym_variable_name] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(3403), + [anon_sym_RPAREN] = ACTIONS(3403), + [anon_sym_SEMI_SEMI] = ACTIONS(3403), + [anon_sym_PIPE_AMP] = ACTIONS(3403), + [anon_sym_AMP_AMP] = ACTIONS(3403), + [anon_sym_PIPE_PIPE] = ACTIONS(3403), + [anon_sym_LT] = ACTIONS(3403), + [anon_sym_GT] = ACTIONS(3403), + [anon_sym_GT_GT] = ACTIONS(3403), + [anon_sym_AMP_GT] = ACTIONS(3403), + [anon_sym_AMP_GT_GT] = ACTIONS(3403), + [anon_sym_LT_AMP] = ACTIONS(3403), + [anon_sym_GT_AMP] = ACTIONS(3403), + [sym__special_characters] = ACTIONS(3403), + [anon_sym_DQUOTE] = ACTIONS(3403), + [sym_raw_string] = ACTIONS(3403), + [anon_sym_DOLLAR] = ACTIONS(3403), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3403), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3403), + [anon_sym_BQUOTE] = ACTIONS(3403), + [anon_sym_LT_LPAREN] = ACTIONS(3403), + [anon_sym_GT_LPAREN] = ACTIONS(3403), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_LF] = ACTIONS(3403), + [anon_sym_AMP] = ACTIONS(3403), + }, + [2233] = { + [sym_file_descriptor] = ACTIONS(3405), + [sym__concat] = ACTIONS(3405), + [sym_variable_name] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(3407), + [anon_sym_RPAREN] = ACTIONS(3407), + [anon_sym_SEMI_SEMI] = ACTIONS(3407), + [anon_sym_PIPE_AMP] = ACTIONS(3407), + [anon_sym_AMP_AMP] = ACTIONS(3407), + [anon_sym_PIPE_PIPE] = ACTIONS(3407), + [anon_sym_LT] = ACTIONS(3407), + [anon_sym_GT] = ACTIONS(3407), + [anon_sym_GT_GT] = ACTIONS(3407), + [anon_sym_AMP_GT] = ACTIONS(3407), + [anon_sym_AMP_GT_GT] = ACTIONS(3407), + [anon_sym_LT_AMP] = ACTIONS(3407), + [anon_sym_GT_AMP] = ACTIONS(3407), + [sym__special_characters] = ACTIONS(3407), + [anon_sym_DQUOTE] = ACTIONS(3407), + [sym_raw_string] = ACTIONS(3407), + [anon_sym_DOLLAR] = ACTIONS(3407), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3407), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3407), + [anon_sym_BQUOTE] = ACTIONS(3407), + [anon_sym_LT_LPAREN] = ACTIONS(3407), + [anon_sym_GT_LPAREN] = ACTIONS(3407), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3407), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_LF] = ACTIONS(3407), + [anon_sym_AMP] = ACTIONS(3407), + }, + [2234] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5830), + [sym_comment] = ACTIONS(48), + }, + [2235] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5832), + [sym_comment] = ACTIONS(48), + }, + [2236] = { + [anon_sym_RBRACE] = ACTIONS(5832), + [sym_comment] = ACTIONS(48), + }, + [2237] = { + [sym_file_descriptor] = ACTIONS(3413), + [sym__concat] = ACTIONS(3413), + [sym_variable_name] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(3415), + [anon_sym_RPAREN] = ACTIONS(3415), + [anon_sym_SEMI_SEMI] = ACTIONS(3415), + [anon_sym_PIPE_AMP] = ACTIONS(3415), + [anon_sym_AMP_AMP] = ACTIONS(3415), + [anon_sym_PIPE_PIPE] = ACTIONS(3415), + [anon_sym_LT] = ACTIONS(3415), + [anon_sym_GT] = ACTIONS(3415), + [anon_sym_GT_GT] = ACTIONS(3415), + [anon_sym_AMP_GT] = ACTIONS(3415), + [anon_sym_AMP_GT_GT] = ACTIONS(3415), + [anon_sym_LT_AMP] = ACTIONS(3415), + [anon_sym_GT_AMP] = ACTIONS(3415), + [sym__special_characters] = ACTIONS(3415), + [anon_sym_DQUOTE] = ACTIONS(3415), + [sym_raw_string] = ACTIONS(3415), + [anon_sym_DOLLAR] = ACTIONS(3415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3415), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3415), + [anon_sym_BQUOTE] = ACTIONS(3415), + [anon_sym_LT_LPAREN] = ACTIONS(3415), + [anon_sym_GT_LPAREN] = ACTIONS(3415), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_LF] = ACTIONS(3415), + [anon_sym_AMP] = ACTIONS(3415), + }, + [2238] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5834), + [sym_comment] = ACTIONS(48), + }, + [2239] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5836), + [sym_comment] = ACTIONS(48), + }, + [2240] = { + [anon_sym_RBRACE] = ACTIONS(5836), + [sym_comment] = ACTIONS(48), + }, + [2241] = { + [sym_file_descriptor] = ACTIONS(3421), + [sym__concat] = ACTIONS(3421), + [sym_variable_name] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(3423), + [anon_sym_RPAREN] = ACTIONS(3423), + [anon_sym_SEMI_SEMI] = ACTIONS(3423), + [anon_sym_PIPE_AMP] = ACTIONS(3423), + [anon_sym_AMP_AMP] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3423), + [anon_sym_GT] = ACTIONS(3423), + [anon_sym_GT_GT] = ACTIONS(3423), + [anon_sym_AMP_GT] = ACTIONS(3423), + [anon_sym_AMP_GT_GT] = ACTIONS(3423), + [anon_sym_LT_AMP] = ACTIONS(3423), + [anon_sym_GT_AMP] = ACTIONS(3423), + [sym__special_characters] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [sym_raw_string] = ACTIONS(3423), + [anon_sym_DOLLAR] = ACTIONS(3423), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3423), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3423), + [anon_sym_BQUOTE] = ACTIONS(3423), + [anon_sym_LT_LPAREN] = ACTIONS(3423), + [anon_sym_GT_LPAREN] = ACTIONS(3423), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_LF] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3423), + }, + [2242] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5838), + [sym_comment] = ACTIONS(48), + }, + [2243] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5840), + [sym_comment] = ACTIONS(48), + }, + [2244] = { + [anon_sym_RBRACE] = ACTIONS(5840), + [sym_comment] = ACTIONS(48), + }, + [2245] = { + [sym_file_descriptor] = ACTIONS(3429), + [sym__concat] = ACTIONS(3429), + [sym_variable_name] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_RPAREN] = ACTIONS(3431), + [anon_sym_SEMI_SEMI] = ACTIONS(3431), + [anon_sym_PIPE_AMP] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_PIPE_PIPE] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_AMP_GT] = ACTIONS(3431), + [anon_sym_AMP_GT_GT] = ACTIONS(3431), + [anon_sym_LT_AMP] = ACTIONS(3431), + [anon_sym_GT_AMP] = ACTIONS(3431), + [sym__special_characters] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym_raw_string] = ACTIONS(3431), + [anon_sym_DOLLAR] = ACTIONS(3431), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3431), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3431), + [anon_sym_BQUOTE] = ACTIONS(3431), + [anon_sym_LT_LPAREN] = ACTIONS(3431), + [anon_sym_GT_LPAREN] = ACTIONS(3431), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_LF] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + }, + [2246] = { + [sym_file_descriptor] = ACTIONS(3433), + [sym__concat] = ACTIONS(3433), + [sym_variable_name] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(3435), + [anon_sym_RPAREN] = ACTIONS(3435), + [anon_sym_SEMI_SEMI] = ACTIONS(3435), + [anon_sym_PIPE_AMP] = ACTIONS(3435), + [anon_sym_AMP_AMP] = ACTIONS(3435), + [anon_sym_PIPE_PIPE] = ACTIONS(3435), + [anon_sym_LT] = ACTIONS(3435), + [anon_sym_GT] = ACTIONS(3435), + [anon_sym_GT_GT] = ACTIONS(3435), + [anon_sym_AMP_GT] = ACTIONS(3435), + [anon_sym_AMP_GT_GT] = ACTIONS(3435), + [anon_sym_LT_AMP] = ACTIONS(3435), + [anon_sym_GT_AMP] = ACTIONS(3435), + [sym__special_characters] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(3435), + [sym_raw_string] = ACTIONS(3435), + [anon_sym_DOLLAR] = ACTIONS(3435), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3435), + [anon_sym_BQUOTE] = ACTIONS(3435), + [anon_sym_LT_LPAREN] = ACTIONS(3435), + [anon_sym_GT_LPAREN] = ACTIONS(3435), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(3435), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_LF] = ACTIONS(3435), + [anon_sym_AMP] = ACTIONS(3435), + }, + [2247] = { + [sym__concat] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [2248] = { + [aux_sym_concatenation_repeat1] = STATE(2248), + [sym__concat] = ACTIONS(5842), + [anon_sym_PIPE] = ACTIONS(1159), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_SEMI_SEMI] = ACTIONS(1159), + [anon_sym_PIPE_AMP] = ACTIONS(1159), + [anon_sym_AMP_AMP] = ACTIONS(1159), + [anon_sym_PIPE_PIPE] = ACTIONS(1159), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1159), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_AMP] = ACTIONS(1159), + }, + [2249] = { + [sym__concat] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1198), + [anon_sym_RPAREN] = ACTIONS(1198), + [anon_sym_SEMI_SEMI] = ACTIONS(1198), + [anon_sym_PIPE_AMP] = ACTIONS(1198), + [anon_sym_AMP_AMP] = ACTIONS(1198), + [anon_sym_PIPE_PIPE] = ACTIONS(1198), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LF] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + }, + [2250] = { + [sym_concatenation] = STATE(2545), + [sym_string] = STATE(2544), + [sym_simple_expansion] = STATE(2544), + [sym_expansion] = STATE(2544), + [sym_command_substitution] = STATE(2544), + [sym_process_substitution] = STATE(2544), + [anon_sym_RBRACE] = ACTIONS(5845), + [sym__special_characters] = ACTIONS(5847), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5849), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5851), + }, + [2251] = { + [sym__concat] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_RPAREN] = ACTIONS(1243), + [anon_sym_SEMI_SEMI] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1243), + [anon_sym_AMP_AMP] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_LF] = ACTIONS(1243), + [anon_sym_AMP] = ACTIONS(1243), + }, + [2252] = { + [sym_concatenation] = STATE(2549), + [sym_string] = STATE(2548), + [sym_simple_expansion] = STATE(2548), + [sym_expansion] = STATE(2548), + [sym_command_substitution] = STATE(2548), + [sym_process_substitution] = STATE(2548), + [anon_sym_RBRACE] = ACTIONS(5853), + [sym__special_characters] = ACTIONS(5855), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5857), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5859), + }, + [2253] = { + [anon_sym_EQ] = ACTIONS(5861), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [2254] = { + [anon_sym_RBRACE] = ACTIONS(5863), + [anon_sym_EQ] = ACTIONS(5865), + [anon_sym_COLON] = ACTIONS(5867), + [anon_sym_COLON_QMARK] = ACTIONS(5865), + [anon_sym_COLON_DASH] = ACTIONS(5865), + [anon_sym_PERCENT] = ACTIONS(5865), + [anon_sym_SLASH] = ACTIONS(5865), + [anon_sym_DASH] = ACTIONS(5865), + [sym_comment] = ACTIONS(48), + }, + [2255] = { + [anon_sym_RBRACE] = ACTIONS(5869), + [anon_sym_EQ] = ACTIONS(5871), + [anon_sym_COLON] = ACTIONS(5873), + [anon_sym_COLON_QMARK] = ACTIONS(5871), + [anon_sym_COLON_DASH] = ACTIONS(5871), + [anon_sym_PERCENT] = ACTIONS(5871), + [anon_sym_SLASH] = ACTIONS(5871), + [anon_sym_DASH] = ACTIONS(5871), + [sym_comment] = ACTIONS(48), + }, + [2256] = { + [anon_sym_RBRACE] = ACTIONS(5845), + [anon_sym_EQ] = ACTIONS(5861), + [anon_sym_COLON] = ACTIONS(5875), + [anon_sym_COLON_QMARK] = ACTIONS(5861), + [anon_sym_COLON_DASH] = ACTIONS(5861), + [anon_sym_PERCENT] = ACTIONS(5861), + [anon_sym_SLASH] = ACTIONS(5861), + [anon_sym_DASH] = ACTIONS(5861), + [sym_comment] = ACTIONS(48), + }, + [2257] = { + [sym__concat] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_RPAREN] = ACTIONS(1271), + [anon_sym_SEMI_SEMI] = ACTIONS(1271), + [anon_sym_PIPE_AMP] = ACTIONS(1271), + [anon_sym_AMP_AMP] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1271), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_LF] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + }, + [2258] = { + [sym_concatenation] = STATE(2558), + [sym_string] = STATE(2557), + [sym_simple_expansion] = STATE(2557), + [sym_expansion] = STATE(2557), + [sym_command_substitution] = STATE(2557), + [sym_process_substitution] = STATE(2557), + [anon_sym_RBRACE] = ACTIONS(5877), + [sym__special_characters] = ACTIONS(5879), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5881), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5883), + }, + [2259] = { + [sym__concat] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_RPAREN] = ACTIONS(1283), + [anon_sym_SEMI_SEMI] = ACTIONS(1283), + [anon_sym_PIPE_AMP] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1283), + [anon_sym_PIPE_PIPE] = ACTIONS(1283), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + }, + [2260] = { + [sym__concat] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_RPAREN] = ACTIONS(1381), + [anon_sym_SEMI_SEMI] = ACTIONS(1381), + [anon_sym_PIPE_AMP] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [anon_sym_PIPE_PIPE] = ACTIONS(1381), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1381), + [anon_sym_LF] = ACTIONS(1381), + [anon_sym_AMP] = ACTIONS(1381), + }, + [2261] = { + [sym__concat] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_SEMI_SEMI] = ACTIONS(1515), + [anon_sym_PIPE_AMP] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE_PIPE] = ACTIONS(1515), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + }, + [2262] = { + [sym__concat] = ACTIONS(2176), + [sym_variable_name] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_RPAREN] = ACTIONS(2178), + [anon_sym_SEMI_SEMI] = ACTIONS(2178), + [anon_sym_PIPE_AMP] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2178), + [anon_sym_PIPE_PIPE] = ACTIONS(2178), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2178), + [sym_word] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_LF] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + }, + [2263] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5885), + [sym_comment] = ACTIONS(48), + }, + [2264] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5887), + [sym_comment] = ACTIONS(48), + }, + [2265] = { + [anon_sym_RBRACE] = ACTIONS(5887), + [sym_comment] = ACTIONS(48), + }, + [2266] = { + [sym__concat] = ACTIONS(2214), + [sym_variable_name] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2216), + [anon_sym_RPAREN] = ACTIONS(2216), + [anon_sym_SEMI_SEMI] = ACTIONS(2216), + [anon_sym_PIPE_AMP] = ACTIONS(2216), + [anon_sym_AMP_AMP] = ACTIONS(2216), + [anon_sym_PIPE_PIPE] = ACTIONS(2216), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2216), + [sym_word] = ACTIONS(2216), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_LF] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2216), + }, + [2267] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5889), + [sym_comment] = ACTIONS(48), + }, + [2268] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5891), + [sym_comment] = ACTIONS(48), + }, + [2269] = { + [anon_sym_RBRACE] = ACTIONS(5891), + [sym_comment] = ACTIONS(48), + }, + [2270] = { + [sym_concatenation] = STATE(2565), + [sym_string] = STATE(2564), + [sym_simple_expansion] = STATE(2564), + [sym_expansion] = STATE(2564), + [sym_command_substitution] = STATE(2564), + [sym_process_substitution] = STATE(2564), + [anon_sym_RBRACE] = ACTIONS(5887), + [sym__special_characters] = ACTIONS(5893), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5895), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5897), + }, + [2271] = { + [sym__concat] = ACTIONS(2228), + [sym_variable_name] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2230), + [anon_sym_RPAREN] = ACTIONS(2230), + [anon_sym_SEMI_SEMI] = ACTIONS(2230), + [anon_sym_PIPE_AMP] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2230), + [anon_sym_PIPE_PIPE] = ACTIONS(2230), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2230), + [sym_word] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_LF] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2230), + }, + [2272] = { + [sym_concatenation] = STATE(2569), + [sym_string] = STATE(2568), + [sym_simple_expansion] = STATE(2568), + [sym_expansion] = STATE(2568), + [sym_command_substitution] = STATE(2568), + [sym_process_substitution] = STATE(2568), + [anon_sym_RBRACE] = ACTIONS(5899), + [sym__special_characters] = ACTIONS(5901), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5903), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5905), + }, + [2273] = { + [sym__concat] = ACTIONS(2240), + [sym_variable_name] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_RPAREN] = ACTIONS(2242), + [anon_sym_SEMI_SEMI] = ACTIONS(2242), + [anon_sym_PIPE_AMP] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2242), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2242), + [sym_word] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_LF] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + }, + [2274] = { + [sym_concatenation] = STATE(2573), + [sym_string] = STATE(2572), + [sym_simple_expansion] = STATE(2572), + [sym_expansion] = STATE(2572), + [sym_command_substitution] = STATE(2572), + [sym_process_substitution] = STATE(2572), + [anon_sym_RBRACE] = ACTIONS(5907), + [sym__special_characters] = ACTIONS(5909), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5911), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5913), + }, + [2275] = { + [sym__concat] = ACTIONS(2252), + [sym_variable_name] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_RPAREN] = ACTIONS(2254), + [anon_sym_SEMI_SEMI] = ACTIONS(2254), + [anon_sym_PIPE_AMP] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2254), + [sym_word] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LF] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + }, + [2276] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5915), + [sym_comment] = ACTIONS(48), + }, + [2277] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5917), + [sym_comment] = ACTIONS(48), + }, + [2278] = { + [anon_sym_RBRACE] = ACTIONS(5917), + [sym_comment] = ACTIONS(48), + }, + [2279] = { + [sym_file_descriptor] = ACTIONS(3353), + [sym__concat] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(3355), + [anon_sym_RPAREN] = ACTIONS(3355), + [anon_sym_SEMI_SEMI] = ACTIONS(3355), + [anon_sym_PIPE_AMP] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [anon_sym_LT] = ACTIONS(3355), + [anon_sym_GT] = ACTIONS(3355), + [anon_sym_GT_GT] = ACTIONS(3355), + [anon_sym_AMP_GT] = ACTIONS(3355), + [anon_sym_AMP_GT_GT] = ACTIONS(3355), + [anon_sym_LT_AMP] = ACTIONS(3355), + [anon_sym_GT_AMP] = ACTIONS(3355), + [anon_sym_LT_LT] = ACTIONS(3355), + [anon_sym_LT_LT_DASH] = ACTIONS(3355), + [anon_sym_LT_LT_LT] = ACTIONS(3355), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_LF] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3355), + }, + [2280] = { + [sym_file_descriptor] = ACTIONS(3359), + [sym__concat] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3361), + [anon_sym_RPAREN] = ACTIONS(3361), + [anon_sym_SEMI_SEMI] = ACTIONS(3361), + [anon_sym_PIPE_AMP] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_GT] = ACTIONS(3361), + [anon_sym_GT_GT] = ACTIONS(3361), + [anon_sym_AMP_GT] = ACTIONS(3361), + [anon_sym_AMP_GT_GT] = ACTIONS(3361), + [anon_sym_LT_AMP] = ACTIONS(3361), + [anon_sym_GT_AMP] = ACTIONS(3361), + [anon_sym_LT_LT] = ACTIONS(3361), + [anon_sym_LT_LT_DASH] = ACTIONS(3361), + [anon_sym_LT_LT_LT] = ACTIONS(3361), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_LF] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3361), + }, + [2281] = { + [sym_file_descriptor] = ACTIONS(3401), + [sym__concat] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(3403), + [anon_sym_RPAREN] = ACTIONS(3403), + [anon_sym_SEMI_SEMI] = ACTIONS(3403), + [anon_sym_PIPE_AMP] = ACTIONS(3403), + [anon_sym_AMP_AMP] = ACTIONS(3403), + [anon_sym_PIPE_PIPE] = ACTIONS(3403), + [anon_sym_LT] = ACTIONS(3403), + [anon_sym_GT] = ACTIONS(3403), + [anon_sym_GT_GT] = ACTIONS(3403), + [anon_sym_AMP_GT] = ACTIONS(3403), + [anon_sym_AMP_GT_GT] = ACTIONS(3403), + [anon_sym_LT_AMP] = ACTIONS(3403), + [anon_sym_GT_AMP] = ACTIONS(3403), + [anon_sym_LT_LT] = ACTIONS(3403), + [anon_sym_LT_LT_DASH] = ACTIONS(3403), + [anon_sym_LT_LT_LT] = ACTIONS(3403), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_LF] = ACTIONS(3403), + [anon_sym_AMP] = ACTIONS(3403), + }, + [2282] = { + [sym_file_descriptor] = ACTIONS(3405), + [sym__concat] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(3407), + [anon_sym_RPAREN] = ACTIONS(3407), + [anon_sym_SEMI_SEMI] = ACTIONS(3407), + [anon_sym_PIPE_AMP] = ACTIONS(3407), + [anon_sym_AMP_AMP] = ACTIONS(3407), + [anon_sym_PIPE_PIPE] = ACTIONS(3407), + [anon_sym_LT] = ACTIONS(3407), + [anon_sym_GT] = ACTIONS(3407), + [anon_sym_GT_GT] = ACTIONS(3407), + [anon_sym_AMP_GT] = ACTIONS(3407), + [anon_sym_AMP_GT_GT] = ACTIONS(3407), + [anon_sym_LT_AMP] = ACTIONS(3407), + [anon_sym_GT_AMP] = ACTIONS(3407), + [anon_sym_LT_LT] = ACTIONS(3407), + [anon_sym_LT_LT_DASH] = ACTIONS(3407), + [anon_sym_LT_LT_LT] = ACTIONS(3407), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_LF] = ACTIONS(3407), + [anon_sym_AMP] = ACTIONS(3407), + }, + [2283] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5919), + [sym_comment] = ACTIONS(48), + }, + [2284] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5921), + [sym_comment] = ACTIONS(48), + }, + [2285] = { + [anon_sym_RBRACE] = ACTIONS(5921), + [sym_comment] = ACTIONS(48), + }, + [2286] = { + [sym_file_descriptor] = ACTIONS(3413), + [sym__concat] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(3415), + [anon_sym_RPAREN] = ACTIONS(3415), + [anon_sym_SEMI_SEMI] = ACTIONS(3415), + [anon_sym_PIPE_AMP] = ACTIONS(3415), + [anon_sym_AMP_AMP] = ACTIONS(3415), + [anon_sym_PIPE_PIPE] = ACTIONS(3415), + [anon_sym_LT] = ACTIONS(3415), + [anon_sym_GT] = ACTIONS(3415), + [anon_sym_GT_GT] = ACTIONS(3415), + [anon_sym_AMP_GT] = ACTIONS(3415), + [anon_sym_AMP_GT_GT] = ACTIONS(3415), + [anon_sym_LT_AMP] = ACTIONS(3415), + [anon_sym_GT_AMP] = ACTIONS(3415), + [anon_sym_LT_LT] = ACTIONS(3415), + [anon_sym_LT_LT_DASH] = ACTIONS(3415), + [anon_sym_LT_LT_LT] = ACTIONS(3415), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_LF] = ACTIONS(3415), + [anon_sym_AMP] = ACTIONS(3415), + }, + [2287] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5923), + [sym_comment] = ACTIONS(48), + }, + [2288] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5925), + [sym_comment] = ACTIONS(48), + }, + [2289] = { + [anon_sym_RBRACE] = ACTIONS(5925), + [sym_comment] = ACTIONS(48), + }, + [2290] = { + [sym_file_descriptor] = ACTIONS(3421), + [sym__concat] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(3423), + [anon_sym_RPAREN] = ACTIONS(3423), + [anon_sym_SEMI_SEMI] = ACTIONS(3423), + [anon_sym_PIPE_AMP] = ACTIONS(3423), + [anon_sym_AMP_AMP] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3423), + [anon_sym_GT] = ACTIONS(3423), + [anon_sym_GT_GT] = ACTIONS(3423), + [anon_sym_AMP_GT] = ACTIONS(3423), + [anon_sym_AMP_GT_GT] = ACTIONS(3423), + [anon_sym_LT_AMP] = ACTIONS(3423), + [anon_sym_GT_AMP] = ACTIONS(3423), + [anon_sym_LT_LT] = ACTIONS(3423), + [anon_sym_LT_LT_DASH] = ACTIONS(3423), + [anon_sym_LT_LT_LT] = ACTIONS(3423), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_LF] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3423), + }, + [2291] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5927), + [sym_comment] = ACTIONS(48), + }, + [2292] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5929), + [sym_comment] = ACTIONS(48), + }, + [2293] = { + [anon_sym_RBRACE] = ACTIONS(5929), + [sym_comment] = ACTIONS(48), + }, + [2294] = { + [sym_file_descriptor] = ACTIONS(3429), + [sym__concat] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_RPAREN] = ACTIONS(3431), + [anon_sym_SEMI_SEMI] = ACTIONS(3431), + [anon_sym_PIPE_AMP] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_PIPE_PIPE] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_GT] = ACTIONS(3431), + [anon_sym_GT_GT] = ACTIONS(3431), + [anon_sym_AMP_GT] = ACTIONS(3431), + [anon_sym_AMP_GT_GT] = ACTIONS(3431), + [anon_sym_LT_AMP] = ACTIONS(3431), + [anon_sym_GT_AMP] = ACTIONS(3431), + [anon_sym_LT_LT] = ACTIONS(3431), + [anon_sym_LT_LT_DASH] = ACTIONS(3431), + [anon_sym_LT_LT_LT] = ACTIONS(3431), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_LF] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + }, + [2295] = { + [sym_file_descriptor] = ACTIONS(3433), + [sym__concat] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(3435), + [anon_sym_RPAREN] = ACTIONS(3435), + [anon_sym_SEMI_SEMI] = ACTIONS(3435), + [anon_sym_PIPE_AMP] = ACTIONS(3435), + [anon_sym_AMP_AMP] = ACTIONS(3435), + [anon_sym_PIPE_PIPE] = ACTIONS(3435), + [anon_sym_LT] = ACTIONS(3435), + [anon_sym_GT] = ACTIONS(3435), + [anon_sym_GT_GT] = ACTIONS(3435), + [anon_sym_AMP_GT] = ACTIONS(3435), + [anon_sym_AMP_GT_GT] = ACTIONS(3435), + [anon_sym_LT_AMP] = ACTIONS(3435), + [anon_sym_GT_AMP] = ACTIONS(3435), + [anon_sym_LT_LT] = ACTIONS(3435), + [anon_sym_LT_LT_DASH] = ACTIONS(3435), + [anon_sym_LT_LT_LT] = ACTIONS(3435), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_LF] = ACTIONS(3435), + [anon_sym_AMP] = ACTIONS(3435), + }, + [2296] = { + [sym__concat] = ACTIONS(3353), + [sym_variable_name] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(3355), + [anon_sym_SEMI_SEMI] = ACTIONS(3355), + [anon_sym_PIPE_AMP] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3355), + [sym_word] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_LF] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3355), + }, + [2297] = { + [sym__concat] = ACTIONS(3359), + [sym_variable_name] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3361), + [anon_sym_SEMI_SEMI] = ACTIONS(3361), + [anon_sym_PIPE_AMP] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3361), + [sym_word] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_LF] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3361), + }, + [2298] = { + [sym__concat] = ACTIONS(3401), + [sym_variable_name] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(3403), + [anon_sym_SEMI_SEMI] = ACTIONS(3403), + [anon_sym_PIPE_AMP] = ACTIONS(3403), + [anon_sym_AMP_AMP] = ACTIONS(3403), + [anon_sym_PIPE_PIPE] = ACTIONS(3403), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3403), + [sym_word] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_LF] = ACTIONS(3403), + [anon_sym_AMP] = ACTIONS(3403), + }, + [2299] = { + [sym__concat] = ACTIONS(3405), + [sym_variable_name] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(3407), + [anon_sym_SEMI_SEMI] = ACTIONS(3407), + [anon_sym_PIPE_AMP] = ACTIONS(3407), + [anon_sym_AMP_AMP] = ACTIONS(3407), + [anon_sym_PIPE_PIPE] = ACTIONS(3407), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3407), + [sym_word] = ACTIONS(3407), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_LF] = ACTIONS(3407), + [anon_sym_AMP] = ACTIONS(3407), + }, + [2300] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5931), + [sym_comment] = ACTIONS(48), + }, + [2301] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5933), + [sym_comment] = ACTIONS(48), + }, + [2302] = { + [anon_sym_RBRACE] = ACTIONS(5933), + [sym_comment] = ACTIONS(48), + }, + [2303] = { + [sym__concat] = ACTIONS(3413), + [sym_variable_name] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(3415), + [anon_sym_SEMI_SEMI] = ACTIONS(3415), + [anon_sym_PIPE_AMP] = ACTIONS(3415), + [anon_sym_AMP_AMP] = ACTIONS(3415), + [anon_sym_PIPE_PIPE] = ACTIONS(3415), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3415), + [sym_word] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_LF] = ACTIONS(3415), + [anon_sym_AMP] = ACTIONS(3415), + }, + [2304] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5935), + [sym_comment] = ACTIONS(48), + }, + [2305] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5937), + [sym_comment] = ACTIONS(48), + }, + [2306] = { + [anon_sym_RBRACE] = ACTIONS(5937), + [sym_comment] = ACTIONS(48), + }, + [2307] = { + [sym__concat] = ACTIONS(3421), + [sym_variable_name] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(3423), + [anon_sym_SEMI_SEMI] = ACTIONS(3423), + [anon_sym_PIPE_AMP] = ACTIONS(3423), + [anon_sym_AMP_AMP] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3423), + [sym_word] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_LF] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3423), + }, + [2308] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5939), + [sym_comment] = ACTIONS(48), + }, + [2309] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5941), + [sym_comment] = ACTIONS(48), + }, + [2310] = { + [anon_sym_RBRACE] = ACTIONS(5941), + [sym_comment] = ACTIONS(48), + }, + [2311] = { + [sym__concat] = ACTIONS(3429), + [sym_variable_name] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_SEMI_SEMI] = ACTIONS(3431), + [anon_sym_PIPE_AMP] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_PIPE_PIPE] = ACTIONS(3431), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3431), + [sym_word] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_LF] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + }, + [2312] = { + [sym__concat] = ACTIONS(3433), + [sym_variable_name] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(3435), + [anon_sym_SEMI_SEMI] = ACTIONS(3435), + [anon_sym_PIPE_AMP] = ACTIONS(3435), + [anon_sym_AMP_AMP] = ACTIONS(3435), + [anon_sym_PIPE_PIPE] = ACTIONS(3435), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3435), + [sym_word] = ACTIONS(3435), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_LF] = ACTIONS(3435), + [anon_sym_AMP] = ACTIONS(3435), + }, + [2313] = { + [sym__concat] = ACTIONS(3353), + [anon_sym_RBRACE] = ACTIONS(3353), + [sym_comment] = ACTIONS(48), + }, + [2314] = { + [sym__concat] = ACTIONS(3359), + [anon_sym_RBRACE] = ACTIONS(3359), + [sym_comment] = ACTIONS(48), + }, + [2315] = { + [sym__concat] = ACTIONS(3401), + [anon_sym_RBRACE] = ACTIONS(3401), + [sym_comment] = ACTIONS(48), + }, + [2316] = { + [sym__concat] = ACTIONS(3405), + [anon_sym_RBRACE] = ACTIONS(3405), + [sym_comment] = ACTIONS(48), + }, + [2317] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5943), + [sym_comment] = ACTIONS(48), + }, + [2318] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5945), + [sym_comment] = ACTIONS(48), + }, + [2319] = { + [anon_sym_RBRACE] = ACTIONS(5945), + [sym_comment] = ACTIONS(48), + }, + [2320] = { + [sym__concat] = ACTIONS(3413), + [anon_sym_RBRACE] = ACTIONS(3413), + [sym_comment] = ACTIONS(48), + }, + [2321] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5947), + [sym_comment] = ACTIONS(48), + }, + [2322] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5949), + [sym_comment] = ACTIONS(48), + }, + [2323] = { + [anon_sym_RBRACE] = ACTIONS(5949), + [sym_comment] = ACTIONS(48), + }, + [2324] = { + [sym__concat] = ACTIONS(3421), + [anon_sym_RBRACE] = ACTIONS(3421), + [sym_comment] = ACTIONS(48), + }, + [2325] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5951), + [sym_comment] = ACTIONS(48), + }, + [2326] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5953), + [sym_comment] = ACTIONS(48), + }, + [2327] = { + [anon_sym_RBRACE] = ACTIONS(5953), + [sym_comment] = ACTIONS(48), + }, + [2328] = { + [sym__concat] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [sym_comment] = ACTIONS(48), + }, + [2329] = { + [sym__concat] = ACTIONS(3433), + [anon_sym_RBRACE] = ACTIONS(3433), + [sym_comment] = ACTIONS(48), + }, + [2330] = { + [sym_file_descriptor] = ACTIONS(3353), + [sym__concat] = ACTIONS(3353), + [sym_variable_name] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(4381), + [anon_sym_RPAREN] = ACTIONS(3353), + [anon_sym_PIPE_AMP] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_LT] = ACTIONS(4381), + [anon_sym_GT] = ACTIONS(4381), + [anon_sym_GT_GT] = ACTIONS(3353), + [anon_sym_AMP_GT] = ACTIONS(4381), + [anon_sym_AMP_GT_GT] = ACTIONS(3353), + [anon_sym_LT_AMP] = ACTIONS(3353), + [anon_sym_GT_AMP] = ACTIONS(3353), + [sym__special_characters] = ACTIONS(4381), + [anon_sym_DQUOTE] = ACTIONS(3353), + [sym_raw_string] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(4381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3353), + [anon_sym_BQUOTE] = ACTIONS(3353), + [anon_sym_LT_LPAREN] = ACTIONS(3353), + [anon_sym_GT_LPAREN] = ACTIONS(3353), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3355), + }, + [2331] = { + [sym_file_descriptor] = ACTIONS(3359), + [sym__concat] = ACTIONS(3359), + [sym_variable_name] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(4383), + [anon_sym_RPAREN] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(4383), + [anon_sym_LT] = ACTIONS(4383), + [anon_sym_GT] = ACTIONS(4383), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_AMP_GT] = ACTIONS(4383), + [anon_sym_AMP_GT_GT] = ACTIONS(3359), + [anon_sym_LT_AMP] = ACTIONS(3359), + [anon_sym_GT_AMP] = ACTIONS(3359), + [sym__special_characters] = ACTIONS(4383), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(4383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [anon_sym_LT_LPAREN] = ACTIONS(3359), + [anon_sym_GT_LPAREN] = ACTIONS(3359), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3361), + }, + [2332] = { + [sym_file_descriptor] = ACTIONS(3401), + [sym__concat] = ACTIONS(3401), + [sym_variable_name] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(4385), + [anon_sym_RPAREN] = ACTIONS(3401), + [anon_sym_PIPE_AMP] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_PIPE_PIPE] = ACTIONS(4385), + [anon_sym_LT] = ACTIONS(4385), + [anon_sym_GT] = ACTIONS(4385), + [anon_sym_GT_GT] = ACTIONS(3401), + [anon_sym_AMP_GT] = ACTIONS(4385), + [anon_sym_AMP_GT_GT] = ACTIONS(3401), + [anon_sym_LT_AMP] = ACTIONS(3401), + [anon_sym_GT_AMP] = ACTIONS(3401), + [sym__special_characters] = ACTIONS(4385), + [anon_sym_DQUOTE] = ACTIONS(3401), + [sym_raw_string] = ACTIONS(3401), + [anon_sym_DOLLAR] = ACTIONS(4385), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3401), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3401), + [anon_sym_BQUOTE] = ACTIONS(3401), + [anon_sym_LT_LPAREN] = ACTIONS(3401), + [anon_sym_GT_LPAREN] = ACTIONS(3401), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3403), + }, + [2333] = { + [sym_file_descriptor] = ACTIONS(3405), + [sym__concat] = ACTIONS(3405), + [sym_variable_name] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(4387), + [anon_sym_RPAREN] = ACTIONS(3405), + [anon_sym_PIPE_AMP] = ACTIONS(3405), + [anon_sym_AMP_AMP] = ACTIONS(3405), + [anon_sym_PIPE_PIPE] = ACTIONS(4387), + [anon_sym_LT] = ACTIONS(4387), + [anon_sym_GT] = ACTIONS(4387), + [anon_sym_GT_GT] = ACTIONS(3405), + [anon_sym_AMP_GT] = ACTIONS(4387), + [anon_sym_AMP_GT_GT] = ACTIONS(3405), + [anon_sym_LT_AMP] = ACTIONS(3405), + [anon_sym_GT_AMP] = ACTIONS(3405), + [sym__special_characters] = ACTIONS(4387), + [anon_sym_DQUOTE] = ACTIONS(3405), + [sym_raw_string] = ACTIONS(3405), + [anon_sym_DOLLAR] = ACTIONS(4387), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3405), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3405), + [anon_sym_BQUOTE] = ACTIONS(3405), + [anon_sym_LT_LPAREN] = ACTIONS(3405), + [anon_sym_GT_LPAREN] = ACTIONS(3405), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3407), + }, + [2334] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5955), + [sym_comment] = ACTIONS(48), + }, + [2335] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5957), + [sym_comment] = ACTIONS(48), + }, + [2336] = { + [anon_sym_RBRACE] = ACTIONS(5957), + [sym_comment] = ACTIONS(48), + }, + [2337] = { + [sym_file_descriptor] = ACTIONS(3413), + [sym__concat] = ACTIONS(3413), + [sym_variable_name] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(4393), + [anon_sym_RPAREN] = ACTIONS(3413), + [anon_sym_PIPE_AMP] = ACTIONS(3413), + [anon_sym_AMP_AMP] = ACTIONS(3413), + [anon_sym_PIPE_PIPE] = ACTIONS(4393), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_GT_GT] = ACTIONS(3413), + [anon_sym_AMP_GT] = ACTIONS(4393), + [anon_sym_AMP_GT_GT] = ACTIONS(3413), + [anon_sym_LT_AMP] = ACTIONS(3413), + [anon_sym_GT_AMP] = ACTIONS(3413), + [sym__special_characters] = ACTIONS(4393), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR] = ACTIONS(4393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3413), + [anon_sym_BQUOTE] = ACTIONS(3413), + [anon_sym_LT_LPAREN] = ACTIONS(3413), + [anon_sym_GT_LPAREN] = ACTIONS(3413), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3415), + }, + [2338] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5959), + [sym_comment] = ACTIONS(48), + }, + [2339] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5961), + [sym_comment] = ACTIONS(48), + }, + [2340] = { + [anon_sym_RBRACE] = ACTIONS(5961), + [sym_comment] = ACTIONS(48), + }, + [2341] = { + [sym_file_descriptor] = ACTIONS(3421), + [sym__concat] = ACTIONS(3421), + [sym_variable_name] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(4399), + [anon_sym_RPAREN] = ACTIONS(3421), + [anon_sym_PIPE_AMP] = ACTIONS(3421), + [anon_sym_AMP_AMP] = ACTIONS(3421), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_GT] = ACTIONS(4399), + [anon_sym_GT_GT] = ACTIONS(3421), + [anon_sym_AMP_GT] = ACTIONS(4399), + [anon_sym_AMP_GT_GT] = ACTIONS(3421), + [anon_sym_LT_AMP] = ACTIONS(3421), + [anon_sym_GT_AMP] = ACTIONS(3421), + [sym__special_characters] = ACTIONS(4399), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_raw_string] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(4399), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3421), + [anon_sym_BQUOTE] = ACTIONS(3421), + [anon_sym_LT_LPAREN] = ACTIONS(3421), + [anon_sym_GT_LPAREN] = ACTIONS(3421), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3423), + }, + [2342] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5963), + [sym_comment] = ACTIONS(48), + }, + [2343] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(5965), + [sym_comment] = ACTIONS(48), + }, + [2344] = { + [anon_sym_RBRACE] = ACTIONS(5965), + [sym_comment] = ACTIONS(48), + }, + [2345] = { + [sym_file_descriptor] = ACTIONS(3429), + [sym__concat] = ACTIONS(3429), + [sym_variable_name] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(4405), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_PIPE_AMP] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(4405), + [anon_sym_LT] = ACTIONS(4405), + [anon_sym_GT] = ACTIONS(4405), + [anon_sym_GT_GT] = ACTIONS(3429), + [anon_sym_AMP_GT] = ACTIONS(4405), + [anon_sym_AMP_GT_GT] = ACTIONS(3429), + [anon_sym_LT_AMP] = ACTIONS(3429), + [anon_sym_GT_AMP] = ACTIONS(3429), + [sym__special_characters] = ACTIONS(4405), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym_raw_string] = ACTIONS(3429), + [anon_sym_DOLLAR] = ACTIONS(4405), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3429), + [anon_sym_BQUOTE] = ACTIONS(3429), + [anon_sym_LT_LPAREN] = ACTIONS(3429), + [anon_sym_GT_LPAREN] = ACTIONS(3429), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3431), + }, + [2346] = { + [sym_file_descriptor] = ACTIONS(3433), + [sym__concat] = ACTIONS(3433), + [sym_variable_name] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_RPAREN] = ACTIONS(3433), + [anon_sym_PIPE_AMP] = ACTIONS(3433), + [anon_sym_AMP_AMP] = ACTIONS(3433), + [anon_sym_PIPE_PIPE] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_GT_GT] = ACTIONS(3433), + [anon_sym_AMP_GT] = ACTIONS(4407), + [anon_sym_AMP_GT_GT] = ACTIONS(3433), + [anon_sym_LT_AMP] = ACTIONS(3433), + [anon_sym_GT_AMP] = ACTIONS(3433), + [sym__special_characters] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(3433), + [sym_raw_string] = ACTIONS(3433), + [anon_sym_DOLLAR] = ACTIONS(4407), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3433), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3433), + [anon_sym_BQUOTE] = ACTIONS(3433), + [anon_sym_LT_LPAREN] = ACTIONS(3433), + [anon_sym_GT_LPAREN] = ACTIONS(3433), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3435), + }, + [2347] = { + [anon_sym_PIPE] = ACTIONS(5967), + [anon_sym_RPAREN] = ACTIONS(5969), + [anon_sym_PIPE_AMP] = ACTIONS(5969), + [anon_sym_AMP_AMP] = ACTIONS(5969), + [anon_sym_PIPE_PIPE] = ACTIONS(5969), + [anon_sym_BQUOTE] = ACTIONS(5969), + [sym_comment] = ACTIONS(48), + }, + [2348] = { + [anon_sym_PIPE] = ACTIONS(5971), + [anon_sym_RPAREN] = ACTIONS(5973), + [anon_sym_PIPE_AMP] = ACTIONS(5973), + [anon_sym_AMP_AMP] = ACTIONS(5973), + [anon_sym_PIPE_PIPE] = ACTIONS(5973), + [anon_sym_BQUOTE] = ACTIONS(5973), + [sym_comment] = ACTIONS(48), + }, + [2349] = { + [anon_sym_PIPE] = ACTIONS(5975), + [anon_sym_RPAREN] = ACTIONS(5977), + [anon_sym_PIPE_AMP] = ACTIONS(5977), + [anon_sym_AMP_AMP] = ACTIONS(5977), + [anon_sym_PIPE_PIPE] = ACTIONS(5977), + [anon_sym_BQUOTE] = ACTIONS(5977), + [sym_comment] = ACTIONS(48), + }, + [2350] = { + [sym__concat] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(1157), + [anon_sym_PIPE_AMP] = ACTIONS(1157), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + }, + [2351] = { + [aux_sym_concatenation_repeat1] = STATE(2351), + [sym__concat] = ACTIONS(5979), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_RPAREN] = ACTIONS(1157), + [anon_sym_PIPE_AMP] = ACTIONS(1157), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + }, + [2352] = { + [sym__concat] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_RPAREN] = ACTIONS(1196), + [anon_sym_PIPE_AMP] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_PIPE_PIPE] = ACTIONS(1196), + [sym_comment] = ACTIONS(48), + }, + [2353] = { + [sym_concatenation] = STATE(2603), + [sym_string] = STATE(2602), + [sym_simple_expansion] = STATE(2602), + [sym_expansion] = STATE(2602), + [sym_command_substitution] = STATE(2602), + [sym_process_substitution] = STATE(2602), + [anon_sym_RBRACE] = ACTIONS(5982), + [sym__special_characters] = ACTIONS(5984), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5986), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5988), + }, + [2354] = { + [sym__concat] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_PIPE_AMP] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1241), + [anon_sym_PIPE_PIPE] = ACTIONS(1241), + [sym_comment] = ACTIONS(48), + }, + [2355] = { + [sym_concatenation] = STATE(2607), + [sym_string] = STATE(2606), + [sym_simple_expansion] = STATE(2606), + [sym_expansion] = STATE(2606), + [sym_command_substitution] = STATE(2606), + [sym_process_substitution] = STATE(2606), + [anon_sym_RBRACE] = ACTIONS(5990), + [sym__special_characters] = ACTIONS(5992), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(5994), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5996), + }, + [2356] = { + [anon_sym_EQ] = ACTIONS(5998), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [2357] = { + [anon_sym_RBRACE] = ACTIONS(6000), + [anon_sym_EQ] = ACTIONS(6002), + [anon_sym_COLON] = ACTIONS(6004), + [anon_sym_COLON_QMARK] = ACTIONS(6002), + [anon_sym_COLON_DASH] = ACTIONS(6002), + [anon_sym_PERCENT] = ACTIONS(6002), + [anon_sym_SLASH] = ACTIONS(6002), + [anon_sym_DASH] = ACTIONS(6002), + [sym_comment] = ACTIONS(48), + }, + [2358] = { + [anon_sym_RBRACE] = ACTIONS(6006), + [anon_sym_EQ] = ACTIONS(6008), + [anon_sym_COLON] = ACTIONS(6010), + [anon_sym_COLON_QMARK] = ACTIONS(6008), + [anon_sym_COLON_DASH] = ACTIONS(6008), + [anon_sym_PERCENT] = ACTIONS(6008), + [anon_sym_SLASH] = ACTIONS(6008), + [anon_sym_DASH] = ACTIONS(6008), + [sym_comment] = ACTIONS(48), + }, + [2359] = { + [anon_sym_RBRACE] = ACTIONS(5982), + [anon_sym_EQ] = ACTIONS(5998), + [anon_sym_COLON] = ACTIONS(6012), + [anon_sym_COLON_QMARK] = ACTIONS(5998), + [anon_sym_COLON_DASH] = ACTIONS(5998), + [anon_sym_PERCENT] = ACTIONS(5998), + [anon_sym_SLASH] = ACTIONS(5998), + [anon_sym_DASH] = ACTIONS(5998), + [sym_comment] = ACTIONS(48), + }, + [2360] = { + [sym__concat] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_RPAREN] = ACTIONS(1269), + [anon_sym_PIPE_AMP] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [sym_comment] = ACTIONS(48), + }, + [2361] = { + [sym_concatenation] = STATE(2616), + [sym_string] = STATE(2615), + [sym_simple_expansion] = STATE(2615), + [sym_expansion] = STATE(2615), + [sym_command_substitution] = STATE(2615), + [sym_process_substitution] = STATE(2615), + [anon_sym_RBRACE] = ACTIONS(6014), + [sym__special_characters] = ACTIONS(6016), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(6018), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(6020), + }, + [2362] = { + [sym__concat] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_RPAREN] = ACTIONS(1281), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [sym_comment] = ACTIONS(48), + }, + [2363] = { + [sym__concat] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_RPAREN] = ACTIONS(1379), + [anon_sym_PIPE_AMP] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(1379), + [sym_comment] = ACTIONS(48), + }, + [2364] = { + [sym__concat] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_RPAREN] = ACTIONS(1513), + [anon_sym_PIPE_AMP] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [sym_comment] = ACTIONS(48), + }, + [2365] = { + [sym__concat] = ACTIONS(2176), + [sym_variable_name] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(3271), + [anon_sym_RPAREN] = ACTIONS(2176), + [anon_sym_PIPE_AMP] = ACTIONS(2176), + [anon_sym_AMP_AMP] = ACTIONS(2176), + [anon_sym_PIPE_PIPE] = ACTIONS(3271), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3271), + [sym_word] = ACTIONS(2178), + }, + [2366] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6022), + [sym_comment] = ACTIONS(48), + }, + [2367] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6024), + [sym_comment] = ACTIONS(48), + }, + [2368] = { + [anon_sym_RBRACE] = ACTIONS(6024), + [sym_comment] = ACTIONS(48), + }, + [2369] = { + [sym__concat] = ACTIONS(2214), + [sym_variable_name] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_RPAREN] = ACTIONS(2214), + [anon_sym_PIPE_AMP] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(3277), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3277), + [sym_word] = ACTIONS(2216), + }, + [2370] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6026), + [sym_comment] = ACTIONS(48), + }, + [2371] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6028), + [sym_comment] = ACTIONS(48), + }, + [2372] = { + [anon_sym_RBRACE] = ACTIONS(6028), + [sym_comment] = ACTIONS(48), + }, + [2373] = { + [sym_concatenation] = STATE(2623), + [sym_string] = STATE(2622), + [sym_simple_expansion] = STATE(2622), + [sym_expansion] = STATE(2622), + [sym_command_substitution] = STATE(2622), + [sym_process_substitution] = STATE(2622), + [anon_sym_RBRACE] = ACTIONS(6024), + [sym__special_characters] = ACTIONS(6030), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(6032), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(6034), + }, + [2374] = { + [sym__concat] = ACTIONS(2228), + [sym_variable_name] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(3289), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_PIPE_AMP] = ACTIONS(2228), + [anon_sym_AMP_AMP] = ACTIONS(2228), + [anon_sym_PIPE_PIPE] = ACTIONS(3289), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3289), + [sym_word] = ACTIONS(2230), + }, + [2375] = { + [sym_concatenation] = STATE(2627), + [sym_string] = STATE(2626), + [sym_simple_expansion] = STATE(2626), + [sym_expansion] = STATE(2626), + [sym_command_substitution] = STATE(2626), + [sym_process_substitution] = STATE(2626), + [anon_sym_RBRACE] = ACTIONS(6036), + [sym__special_characters] = ACTIONS(6038), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(6040), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(6042), + }, + [2376] = { + [sym__concat] = ACTIONS(2240), + [sym_variable_name] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_RPAREN] = ACTIONS(2240), + [anon_sym_PIPE_AMP] = ACTIONS(2240), + [anon_sym_AMP_AMP] = ACTIONS(2240), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3299), + [sym_word] = ACTIONS(2242), + }, + [2377] = { + [sym_concatenation] = STATE(2631), + [sym_string] = STATE(2630), + [sym_simple_expansion] = STATE(2630), + [sym_expansion] = STATE(2630), + [sym_command_substitution] = STATE(2630), + [sym_process_substitution] = STATE(2630), + [anon_sym_RBRACE] = ACTIONS(6044), + [sym__special_characters] = ACTIONS(6046), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(6048), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(6050), + }, + [2378] = { + [sym__concat] = ACTIONS(2252), + [sym_variable_name] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_RPAREN] = ACTIONS(2252), + [anon_sym_PIPE_AMP] = ACTIONS(2252), + [anon_sym_AMP_AMP] = ACTIONS(2252), + [anon_sym_PIPE_PIPE] = ACTIONS(3309), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3309), + [sym_word] = ACTIONS(2254), + }, + [2379] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6052), + [sym_comment] = ACTIONS(48), + }, + [2380] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6054), + [sym_comment] = ACTIONS(48), + }, + [2381] = { + [anon_sym_RBRACE] = ACTIONS(6054), + [sym_comment] = ACTIONS(48), + }, + [2382] = { + [sym_file_descriptor] = ACTIONS(3353), + [sym__concat] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(4381), + [anon_sym_RPAREN] = ACTIONS(3353), + [anon_sym_PIPE_AMP] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_PIPE_PIPE] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(4381), + [anon_sym_GT] = ACTIONS(4381), + [anon_sym_GT_GT] = ACTIONS(3353), + [anon_sym_AMP_GT] = ACTIONS(4381), + [anon_sym_AMP_GT_GT] = ACTIONS(3353), + [anon_sym_LT_AMP] = ACTIONS(3353), + [anon_sym_GT_AMP] = ACTIONS(3353), + [anon_sym_LT_LT] = ACTIONS(4381), + [anon_sym_LT_LT_DASH] = ACTIONS(3353), + [anon_sym_LT_LT_LT] = ACTIONS(3353), + [sym_comment] = ACTIONS(48), + }, + [2383] = { + [sym_file_descriptor] = ACTIONS(3359), + [sym__concat] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(4383), + [anon_sym_RPAREN] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(4383), + [anon_sym_GT] = ACTIONS(4383), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_AMP_GT] = ACTIONS(4383), + [anon_sym_AMP_GT_GT] = ACTIONS(3359), + [anon_sym_LT_AMP] = ACTIONS(3359), + [anon_sym_GT_AMP] = ACTIONS(3359), + [anon_sym_LT_LT] = ACTIONS(4383), + [anon_sym_LT_LT_DASH] = ACTIONS(3359), + [anon_sym_LT_LT_LT] = ACTIONS(3359), + [sym_comment] = ACTIONS(48), + }, + [2384] = { + [sym_file_descriptor] = ACTIONS(3401), + [sym__concat] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(4385), [anon_sym_RPAREN] = ACTIONS(3401), [anon_sym_PIPE_AMP] = ACTIONS(3401), [anon_sym_AMP_AMP] = ACTIONS(3401), [anon_sym_PIPE_PIPE] = ACTIONS(3401), + [anon_sym_LT] = ACTIONS(4385), + [anon_sym_GT] = ACTIONS(4385), + [anon_sym_GT_GT] = ACTIONS(3401), + [anon_sym_AMP_GT] = ACTIONS(4385), + [anon_sym_AMP_GT_GT] = ACTIONS(3401), + [anon_sym_LT_AMP] = ACTIONS(3401), + [anon_sym_GT_AMP] = ACTIONS(3401), + [anon_sym_LT_LT] = ACTIONS(4385), + [anon_sym_LT_LT_DASH] = ACTIONS(3401), + [anon_sym_LT_LT_LT] = ACTIONS(3401), + [sym_comment] = ACTIONS(48), + }, + [2385] = { + [sym_file_descriptor] = ACTIONS(3405), + [sym__concat] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(4387), + [anon_sym_RPAREN] = ACTIONS(3405), + [anon_sym_PIPE_AMP] = ACTIONS(3405), + [anon_sym_AMP_AMP] = ACTIONS(3405), + [anon_sym_PIPE_PIPE] = ACTIONS(3405), + [anon_sym_LT] = ACTIONS(4387), + [anon_sym_GT] = ACTIONS(4387), + [anon_sym_GT_GT] = ACTIONS(3405), + [anon_sym_AMP_GT] = ACTIONS(4387), + [anon_sym_AMP_GT_GT] = ACTIONS(3405), + [anon_sym_LT_AMP] = ACTIONS(3405), + [anon_sym_GT_AMP] = ACTIONS(3405), + [anon_sym_LT_LT] = ACTIONS(4387), + [anon_sym_LT_LT_DASH] = ACTIONS(3405), + [anon_sym_LT_LT_LT] = ACTIONS(3405), + [sym_comment] = ACTIONS(48), + }, + [2386] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6056), + [sym_comment] = ACTIONS(48), + }, + [2387] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6058), + [sym_comment] = ACTIONS(48), + }, + [2388] = { + [anon_sym_RBRACE] = ACTIONS(6058), + [sym_comment] = ACTIONS(48), + }, + [2389] = { + [sym_file_descriptor] = ACTIONS(3413), + [sym__concat] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(4393), + [anon_sym_RPAREN] = ACTIONS(3413), + [anon_sym_PIPE_AMP] = ACTIONS(3413), + [anon_sym_AMP_AMP] = ACTIONS(3413), + [anon_sym_PIPE_PIPE] = ACTIONS(3413), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_GT_GT] = ACTIONS(3413), + [anon_sym_AMP_GT] = ACTIONS(4393), + [anon_sym_AMP_GT_GT] = ACTIONS(3413), + [anon_sym_LT_AMP] = ACTIONS(3413), + [anon_sym_GT_AMP] = ACTIONS(3413), + [anon_sym_LT_LT] = ACTIONS(4393), + [anon_sym_LT_LT_DASH] = ACTIONS(3413), + [anon_sym_LT_LT_LT] = ACTIONS(3413), + [sym_comment] = ACTIONS(48), + }, + [2390] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6060), + [sym_comment] = ACTIONS(48), + }, + [2391] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6062), + [sym_comment] = ACTIONS(48), + }, + [2392] = { + [anon_sym_RBRACE] = ACTIONS(6062), + [sym_comment] = ACTIONS(48), + }, + [2393] = { + [sym_file_descriptor] = ACTIONS(3421), + [sym__concat] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(4399), + [anon_sym_RPAREN] = ACTIONS(3421), + [anon_sym_PIPE_AMP] = ACTIONS(3421), + [anon_sym_AMP_AMP] = ACTIONS(3421), + [anon_sym_PIPE_PIPE] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_GT] = ACTIONS(4399), + [anon_sym_GT_GT] = ACTIONS(3421), + [anon_sym_AMP_GT] = ACTIONS(4399), + [anon_sym_AMP_GT_GT] = ACTIONS(3421), + [anon_sym_LT_AMP] = ACTIONS(3421), + [anon_sym_GT_AMP] = ACTIONS(3421), + [anon_sym_LT_LT] = ACTIONS(4399), + [anon_sym_LT_LT_DASH] = ACTIONS(3421), + [anon_sym_LT_LT_LT] = ACTIONS(3421), + [sym_comment] = ACTIONS(48), + }, + [2394] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6064), + [sym_comment] = ACTIONS(48), + }, + [2395] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6066), + [sym_comment] = ACTIONS(48), + }, + [2396] = { + [anon_sym_RBRACE] = ACTIONS(6066), + [sym_comment] = ACTIONS(48), + }, + [2397] = { + [sym_file_descriptor] = ACTIONS(3429), + [sym__concat] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(4405), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_PIPE_AMP] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(4405), + [anon_sym_GT] = ACTIONS(4405), + [anon_sym_GT_GT] = ACTIONS(3429), + [anon_sym_AMP_GT] = ACTIONS(4405), + [anon_sym_AMP_GT_GT] = ACTIONS(3429), + [anon_sym_LT_AMP] = ACTIONS(3429), + [anon_sym_GT_AMP] = ACTIONS(3429), + [anon_sym_LT_LT] = ACTIONS(4405), + [anon_sym_LT_LT_DASH] = ACTIONS(3429), + [anon_sym_LT_LT_LT] = ACTIONS(3429), + [sym_comment] = ACTIONS(48), + }, + [2398] = { + [sym_file_descriptor] = ACTIONS(3433), + [sym__concat] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_RPAREN] = ACTIONS(3433), + [anon_sym_PIPE_AMP] = ACTIONS(3433), + [anon_sym_AMP_AMP] = ACTIONS(3433), + [anon_sym_PIPE_PIPE] = ACTIONS(3433), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_GT_GT] = ACTIONS(3433), + [anon_sym_AMP_GT] = ACTIONS(4407), + [anon_sym_AMP_GT_GT] = ACTIONS(3433), + [anon_sym_LT_AMP] = ACTIONS(3433), + [anon_sym_GT_AMP] = ACTIONS(3433), + [anon_sym_LT_LT] = ACTIONS(4407), + [anon_sym_LT_LT_DASH] = ACTIONS(3433), + [anon_sym_LT_LT_LT] = ACTIONS(3433), + [sym_comment] = ACTIONS(48), + }, + [2399] = { + [sym_file_descriptor] = ACTIONS(3353), + [sym__concat] = ACTIONS(3353), + [sym_variable_name] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(4381), + [anon_sym_PIPE_AMP] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_LT] = ACTIONS(4381), + [anon_sym_GT] = ACTIONS(4381), + [anon_sym_GT_GT] = ACTIONS(3353), + [anon_sym_AMP_GT] = ACTIONS(4381), + [anon_sym_AMP_GT_GT] = ACTIONS(3353), + [anon_sym_LT_AMP] = ACTIONS(3353), + [anon_sym_GT_AMP] = ACTIONS(3353), + [sym__special_characters] = ACTIONS(4381), + [anon_sym_DQUOTE] = ACTIONS(3353), + [sym_raw_string] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(4381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3353), + [anon_sym_BQUOTE] = ACTIONS(3353), + [anon_sym_LT_LPAREN] = ACTIONS(3353), + [anon_sym_GT_LPAREN] = ACTIONS(3353), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3355), + }, + [2400] = { + [sym_file_descriptor] = ACTIONS(3359), + [sym__concat] = ACTIONS(3359), + [sym_variable_name] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(4383), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(4383), + [anon_sym_LT] = ACTIONS(4383), + [anon_sym_GT] = ACTIONS(4383), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_AMP_GT] = ACTIONS(4383), + [anon_sym_AMP_GT_GT] = ACTIONS(3359), + [anon_sym_LT_AMP] = ACTIONS(3359), + [anon_sym_GT_AMP] = ACTIONS(3359), + [sym__special_characters] = ACTIONS(4383), + [anon_sym_DQUOTE] = ACTIONS(3359), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(4383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [anon_sym_LT_LPAREN] = ACTIONS(3359), + [anon_sym_GT_LPAREN] = ACTIONS(3359), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3361), + }, + [2401] = { + [sym_file_descriptor] = ACTIONS(3401), + [sym__concat] = ACTIONS(3401), + [sym_variable_name] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(4385), + [anon_sym_PIPE_AMP] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_PIPE_PIPE] = ACTIONS(4385), + [anon_sym_LT] = ACTIONS(4385), + [anon_sym_GT] = ACTIONS(4385), + [anon_sym_GT_GT] = ACTIONS(3401), + [anon_sym_AMP_GT] = ACTIONS(4385), + [anon_sym_AMP_GT_GT] = ACTIONS(3401), + [anon_sym_LT_AMP] = ACTIONS(3401), + [anon_sym_GT_AMP] = ACTIONS(3401), + [sym__special_characters] = ACTIONS(4385), + [anon_sym_DQUOTE] = ACTIONS(3401), + [sym_raw_string] = ACTIONS(3401), + [anon_sym_DOLLAR] = ACTIONS(4385), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3401), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3401), [anon_sym_BQUOTE] = ACTIONS(3401), - [sym_comment] = ACTIONS(46), - }, - [1528] = { - [sym__concat] = ACTIONS(675), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_BQUOTE] = ACTIONS(675), - [sym_comment] = ACTIONS(46), - }, - [1529] = { - [sym__concat] = ACTIONS(679), - [anon_sym_PIPE] = ACTIONS(1473), - [anon_sym_RPAREN] = ACTIONS(679), - [anon_sym_PIPE_AMP] = ACTIONS(679), - [anon_sym_AMP_AMP] = ACTIONS(679), - [anon_sym_PIPE_PIPE] = ACTIONS(679), - [anon_sym_BQUOTE] = ACTIONS(679), - [sym_comment] = ACTIONS(46), - }, - [1530] = { - [aux_sym_concatenation_repeat1] = STATE(1530), - [sym__concat] = ACTIONS(3403), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [sym_comment] = ACTIONS(46), - }, - [1531] = { - [sym__concat] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_PIPE_AMP] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(931), - [anon_sym_PIPE_PIPE] = ACTIONS(931), - [anon_sym_BQUOTE] = ACTIONS(931), - [sym_comment] = ACTIONS(46), - }, - [1532] = { - [anon_sym_RBRACE] = ACTIONS(3406), - [anon_sym_LBRACK] = ACTIONS(3408), - [sym_comment] = ACTIONS(46), - }, - [1533] = { - [anon_sym_RBRACE] = ACTIONS(3410), - [anon_sym_LBRACK] = ACTIONS(3412), - [sym_comment] = ACTIONS(46), - }, - [1534] = { - [sym__concat] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_PIPE_AMP] = ACTIONS(960), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), - [anon_sym_BQUOTE] = ACTIONS(960), - [sym_comment] = ACTIONS(46), - }, - [1535] = { - [sym_concatenation] = STATE(1637), - [sym_string] = STATE(1634), - [sym_simple_expansion] = STATE(1634), - [sym_expansion] = STATE(1634), - [sym_command_substitution] = STATE(1634), - [sym_process_substitution] = STATE(1634), - [sym_word] = ACTIONS(3414), - [anon_sym_RBRACE] = ACTIONS(3416), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(3414), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3418), - }, - [1536] = { - [anon_sym_AT] = ACTIONS(3420), - [sym_comment] = ACTIONS(46), - }, - [1537] = { - [sym__concat] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_RPAREN] = ACTIONS(972), - [anon_sym_PIPE_AMP] = ACTIONS(972), - [anon_sym_AMP_AMP] = ACTIONS(972), - [anon_sym_PIPE_PIPE] = ACTIONS(972), - [anon_sym_BQUOTE] = ACTIONS(972), - [sym_comment] = ACTIONS(46), - }, - [1538] = { - [sym_concatenation] = STATE(1641), - [sym_string] = STATE(1639), - [sym_simple_expansion] = STATE(1639), - [sym_expansion] = STATE(1639), - [sym_command_substitution] = STATE(1639), - [sym_process_substitution] = STATE(1639), - [sym_word] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3410), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(3422), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3424), - }, - [1539] = { - [anon_sym_AT] = ACTIONS(3426), - [sym_comment] = ACTIONS(46), - }, - [1540] = { - [sym__concat] = ACTIONS(1066), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1066), - [anon_sym_PIPE_AMP] = ACTIONS(1066), - [anon_sym_AMP_AMP] = ACTIONS(1066), - [anon_sym_PIPE_PIPE] = ACTIONS(1066), - [anon_sym_BQUOTE] = ACTIONS(1066), - [sym_comment] = ACTIONS(46), - }, - [1541] = { - [sym__concat] = ACTIONS(1122), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_RPAREN] = ACTIONS(1122), - [anon_sym_PIPE_AMP] = ACTIONS(1122), - [anon_sym_AMP_AMP] = ACTIONS(1122), - [anon_sym_PIPE_PIPE] = ACTIONS(1122), - [anon_sym_BQUOTE] = ACTIONS(1122), - [sym_comment] = ACTIONS(46), - }, - [1542] = { - [sym_word] = ACTIONS(1532), - [sym__concat] = ACTIONS(1532), - [sym_variable_name] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(2145), - [anon_sym_RPAREN] = ACTIONS(1532), - [anon_sym_PIPE_AMP] = ACTIONS(1532), - [anon_sym_AMP_AMP] = ACTIONS(1532), - [anon_sym_PIPE_PIPE] = ACTIONS(1532), - [anon_sym_BQUOTE] = ACTIONS(1532), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2145), - }, - [1543] = { - [anon_sym_AT] = ACTIONS(3428), - [sym_comment] = ACTIONS(46), - }, - [1544] = { - [sym_word] = ACTIONS(1538), - [sym__concat] = ACTIONS(1538), - [sym_variable_name] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_PIPE_AMP] = ACTIONS(1538), - [anon_sym_AMP_AMP] = ACTIONS(1538), - [anon_sym_PIPE_PIPE] = ACTIONS(1538), - [anon_sym_BQUOTE] = ACTIONS(1538), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2149), - }, - [1545] = { - [anon_sym_AT] = ACTIONS(3430), - [sym_comment] = ACTIONS(46), - }, - [1546] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(3432), - [anon_sym_RBRACE] = ACTIONS(3434), - [sym_comment] = ACTIONS(46), - }, - [1547] = { - [sym_word] = ACTIONS(1548), - [sym__concat] = ACTIONS(1548), - [sym_variable_name] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(2157), - [anon_sym_RPAREN] = ACTIONS(1548), - [anon_sym_PIPE_AMP] = ACTIONS(1548), - [anon_sym_AMP_AMP] = ACTIONS(1548), - [anon_sym_PIPE_PIPE] = ACTIONS(1548), - [anon_sym_BQUOTE] = ACTIONS(1548), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2157), - }, - [1548] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(3436), - [anon_sym_RBRACE] = ACTIONS(3438), - [sym_comment] = ACTIONS(46), - }, - [1549] = { - [sym__concat] = ACTIONS(3440), - [anon_sym_RBRACE] = ACTIONS(3434), - [sym_comment] = ACTIONS(46), - }, - [1550] = { - [anon_sym_RBRACK] = ACTIONS(3440), - [sym_comment] = ACTIONS(46), - }, - [1551] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(3442), - [anon_sym_RBRACE] = ACTIONS(3444), - [sym_comment] = ACTIONS(46), - }, - [1552] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(3446), - [anon_sym_RBRACE] = ACTIONS(3448), - [sym_comment] = ACTIONS(46), - }, - [1553] = { - [sym__concat] = ACTIONS(3450), - [anon_sym_RBRACE] = ACTIONS(3444), - [sym_comment] = ACTIONS(46), - }, - [1554] = { - [anon_sym_RBRACK] = ACTIONS(3450), - [sym_comment] = ACTIONS(46), - }, - [1555] = { - [sym_file_descriptor] = ACTIONS(3116), - [sym_word] = ACTIONS(3116), - [sym__concat] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3375), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_PIPE_AMP] = ACTIONS(3116), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_GT] = ACTIONS(3375), - [anon_sym_GT_GT] = ACTIONS(3116), - [anon_sym_AMP_GT] = ACTIONS(3375), - [anon_sym_AMP_GT_GT] = ACTIONS(3116), - [anon_sym_LT_AMP] = ACTIONS(3116), - [anon_sym_GT_AMP] = ACTIONS(3116), - [anon_sym_LT_LT] = ACTIONS(3375), - [anon_sym_LT_LT_DASH] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3116), - [sym_raw_string] = ACTIONS(3116), - [anon_sym_DOLLAR] = ACTIONS(3375), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3116), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3116), - [anon_sym_BQUOTE] = ACTIONS(3116), - [anon_sym_LT_LPAREN] = ACTIONS(3116), - [anon_sym_GT_LPAREN] = ACTIONS(3116), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3375), - }, - [1556] = { - [sym_file_descriptor] = ACTIONS(3120), - [sym_word] = ACTIONS(3120), - [sym__concat] = ACTIONS(3120), - [anon_sym_PIPE] = ACTIONS(3377), - [anon_sym_RPAREN] = ACTIONS(3120), - [anon_sym_PIPE_AMP] = ACTIONS(3120), - [anon_sym_AMP_AMP] = ACTIONS(3120), - [anon_sym_PIPE_PIPE] = ACTIONS(3120), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_GT] = ACTIONS(3377), - [anon_sym_GT_GT] = ACTIONS(3120), - [anon_sym_AMP_GT] = ACTIONS(3377), - [anon_sym_AMP_GT_GT] = ACTIONS(3120), - [anon_sym_LT_AMP] = ACTIONS(3120), - [anon_sym_GT_AMP] = ACTIONS(3120), - [anon_sym_LT_LT] = ACTIONS(3377), - [anon_sym_LT_LT_DASH] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(3120), - [sym_raw_string] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3377), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), - [anon_sym_BQUOTE] = ACTIONS(3120), - [anon_sym_LT_LPAREN] = ACTIONS(3120), - [anon_sym_GT_LPAREN] = ACTIONS(3120), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3377), - }, - [1557] = { - [anon_sym_RBRACK] = ACTIONS(3452), - [sym_comment] = ACTIONS(46), - }, - [1558] = { - [anon_sym_RBRACK] = ACTIONS(3454), - [sym_comment] = ACTIONS(46), - }, - [1559] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3456), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1560] = { - [sym_file_descriptor] = ACTIONS(2205), - [sym__concat] = ACTIONS(2205), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_RPAREN] = ACTIONS(2205), - [anon_sym_PIPE_AMP] = ACTIONS(2205), - [anon_sym_AMP_AMP] = ACTIONS(2205), - [anon_sym_PIPE_PIPE] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2696), - [anon_sym_GT] = ACTIONS(2696), - [anon_sym_GT_GT] = ACTIONS(2205), - [anon_sym_AMP_GT] = ACTIONS(2696), - [anon_sym_AMP_GT_GT] = ACTIONS(2205), - [anon_sym_LT_AMP] = ACTIONS(2205), - [anon_sym_GT_AMP] = ACTIONS(2205), - [anon_sym_LT_LT] = ACTIONS(2696), - [anon_sym_LT_LT_DASH] = ACTIONS(2205), - [anon_sym_BQUOTE] = ACTIONS(2205), - [sym_comment] = ACTIONS(46), - }, - [1561] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3458), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1562] = { - [sym_file_descriptor] = ACTIONS(2211), - [sym__concat] = ACTIONS(2211), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_RPAREN] = ACTIONS(2211), - [anon_sym_PIPE_AMP] = ACTIONS(2211), - [anon_sym_AMP_AMP] = ACTIONS(2211), - [anon_sym_PIPE_PIPE] = ACTIONS(2211), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2211), - [anon_sym_AMP_GT] = ACTIONS(2700), - [anon_sym_AMP_GT_GT] = ACTIONS(2211), - [anon_sym_LT_AMP] = ACTIONS(2211), - [anon_sym_GT_AMP] = ACTIONS(2211), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_LT_LT_DASH] = ACTIONS(2211), - [anon_sym_BQUOTE] = ACTIONS(2211), - [sym_comment] = ACTIONS(46), - }, - [1563] = { - [anon_sym_RBRACE] = ACTIONS(3456), - [sym_comment] = ACTIONS(46), - }, - [1564] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3460), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1565] = { - [sym_file_descriptor] = ACTIONS(2217), - [sym__concat] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_RPAREN] = ACTIONS(2217), - [anon_sym_PIPE_AMP] = ACTIONS(2217), - [anon_sym_AMP_AMP] = ACTIONS(2217), - [anon_sym_PIPE_PIPE] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2217), - [anon_sym_AMP_GT] = ACTIONS(2704), - [anon_sym_AMP_GT_GT] = ACTIONS(2217), - [anon_sym_LT_AMP] = ACTIONS(2217), - [anon_sym_GT_AMP] = ACTIONS(2217), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_LT_LT_DASH] = ACTIONS(2217), - [anon_sym_BQUOTE] = ACTIONS(2217), - [sym_comment] = ACTIONS(46), - }, - [1566] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1567] = { - [sym_file_descriptor] = ACTIONS(2223), - [sym__concat] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_RPAREN] = ACTIONS(2223), - [anon_sym_PIPE_AMP] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2708), - [anon_sym_GT] = ACTIONS(2708), - [anon_sym_GT_GT] = ACTIONS(2223), - [anon_sym_AMP_GT] = ACTIONS(2708), - [anon_sym_AMP_GT_GT] = ACTIONS(2223), - [anon_sym_LT_AMP] = ACTIONS(2223), - [anon_sym_GT_AMP] = ACTIONS(2223), - [anon_sym_LT_LT] = ACTIONS(2708), - [anon_sym_LT_LT_DASH] = ACTIONS(2223), - [anon_sym_BQUOTE] = ACTIONS(2223), - [sym_comment] = ACTIONS(46), - }, - [1568] = { - [anon_sym_RBRACE] = ACTIONS(3460), - [sym_comment] = ACTIONS(46), - }, - [1569] = { - [aux_sym_concatenation_repeat1] = STATE(1569), - [sym__concat] = ACTIONS(3403), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_PIPE_AMP] = ACTIONS(675), - [anon_sym_AMP_AMP] = ACTIONS(675), - [anon_sym_PIPE_PIPE] = ACTIONS(675), - [anon_sym_BQUOTE] = ACTIONS(675), - [sym_comment] = ACTIONS(46), - }, - [1570] = { - [anon_sym_RBRACE] = ACTIONS(3464), - [sym_comment] = ACTIONS(46), - }, - [1571] = { - [anon_sym_RBRACE] = ACTIONS(3466), - [sym_comment] = ACTIONS(46), - }, - [1572] = { - [sym_file_descriptor] = ACTIONS(2726), - [sym__concat] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_SEMI_SEMI] = ACTIONS(2728), - [anon_sym_PIPE_AMP] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_PIPE_PIPE] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2728), - [anon_sym_GT] = ACTIONS(2728), - [anon_sym_GT_GT] = ACTIONS(2728), - [anon_sym_AMP_GT] = ACTIONS(2728), - [anon_sym_AMP_GT_GT] = ACTIONS(2728), - [anon_sym_LT_AMP] = ACTIONS(2728), - [anon_sym_GT_AMP] = ACTIONS(2728), - [anon_sym_LT_LT] = ACTIONS(2728), - [anon_sym_LT_LT_DASH] = ACTIONS(2728), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_LF] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2728), - }, - [1573] = { - [sym_file_descriptor] = ACTIONS(2730), - [sym__concat] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_SEMI_SEMI] = ACTIONS(2732), - [anon_sym_PIPE_AMP] = ACTIONS(2732), - [anon_sym_AMP_AMP] = ACTIONS(2732), - [anon_sym_PIPE_PIPE] = ACTIONS(2732), - [anon_sym_LT] = ACTIONS(2732), - [anon_sym_GT] = ACTIONS(2732), - [anon_sym_GT_GT] = ACTIONS(2732), - [anon_sym_AMP_GT] = ACTIONS(2732), - [anon_sym_AMP_GT_GT] = ACTIONS(2732), - [anon_sym_LT_AMP] = ACTIONS(2732), - [anon_sym_GT_AMP] = ACTIONS(2732), - [anon_sym_LT_LT] = ACTIONS(2732), - [anon_sym_LT_LT_DASH] = ACTIONS(2732), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_LF] = ACTIONS(2732), - [anon_sym_AMP] = ACTIONS(2732), - }, - [1574] = { - [sym_file_descriptor] = ACTIONS(2734), - [sym__concat] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_SEMI_SEMI] = ACTIONS(2736), - [anon_sym_PIPE_AMP] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_PIPE_PIPE] = ACTIONS(2736), - [anon_sym_LT] = ACTIONS(2736), - [anon_sym_GT] = ACTIONS(2736), - [anon_sym_GT_GT] = ACTIONS(2736), - [anon_sym_AMP_GT] = ACTIONS(2736), - [anon_sym_AMP_GT_GT] = ACTIONS(2736), - [anon_sym_LT_AMP] = ACTIONS(2736), - [anon_sym_GT_AMP] = ACTIONS(2736), - [anon_sym_LT_LT] = ACTIONS(2736), - [anon_sym_LT_LT_DASH] = ACTIONS(2736), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_LF] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), - }, - [1575] = { - [sym_file_descriptor] = ACTIONS(2738), - [sym__concat] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_SEMI_SEMI] = ACTIONS(2740), - [anon_sym_PIPE_AMP] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_AMP_GT] = ACTIONS(2740), - [anon_sym_AMP_GT_GT] = ACTIONS(2740), - [anon_sym_LT_AMP] = ACTIONS(2740), - [anon_sym_GT_AMP] = ACTIONS(2740), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_LT_LT_DASH] = ACTIONS(2740), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - }, - [1576] = { - [anon_sym_RBRACK] = ACTIONS(3468), - [sym_comment] = ACTIONS(46), - }, - [1577] = { - [anon_sym_RBRACK] = ACTIONS(3470), - [sym_comment] = ACTIONS(46), - }, - [1578] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3472), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1579] = { - [sym__heredoc_middle] = ACTIONS(2205), - [sym__heredoc_end] = ACTIONS(2205), - [anon_sym_DOLLAR] = ACTIONS(2696), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2205), - [sym_comment] = ACTIONS(46), - }, - [1580] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1581] = { - [sym__heredoc_middle] = ACTIONS(2211), - [sym__heredoc_end] = ACTIONS(2211), - [anon_sym_DOLLAR] = ACTIONS(2700), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2211), - [sym_comment] = ACTIONS(46), - }, - [1582] = { - [anon_sym_RBRACE] = ACTIONS(3472), - [sym_comment] = ACTIONS(46), - }, - [1583] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3476), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1584] = { - [sym__heredoc_middle] = ACTIONS(2217), - [sym__heredoc_end] = ACTIONS(2217), - [anon_sym_DOLLAR] = ACTIONS(2704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2217), - [sym_comment] = ACTIONS(46), - }, - [1585] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3478), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1586] = { - [sym__heredoc_middle] = ACTIONS(2223), - [sym__heredoc_end] = ACTIONS(2223), - [anon_sym_DOLLAR] = ACTIONS(2708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2223), - [sym_comment] = ACTIONS(46), - }, - [1587] = { - [anon_sym_RBRACE] = ACTIONS(3476), - [sym_comment] = ACTIONS(46), - }, - [1588] = { - [anon_sym_RBRACE] = ACTIONS(3480), - [sym_comment] = ACTIONS(46), - }, - [1589] = { - [anon_sym_RBRACE] = ACTIONS(3482), - [sym_comment] = ACTIONS(46), - }, - [1590] = { - [sym_word] = ACTIONS(2726), - [sym__concat] = ACTIONS(2726), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_DQUOTE] = ACTIONS(2726), - [sym_raw_string] = ACTIONS(2726), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2726), - [anon_sym_BQUOTE] = ACTIONS(2726), - [anon_sym_LT_LPAREN] = ACTIONS(2726), - [anon_sym_GT_LPAREN] = ACTIONS(2726), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3104), - }, - [1591] = { - [sym_word] = ACTIONS(2730), - [sym__concat] = ACTIONS(2730), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_DQUOTE] = ACTIONS(2730), - [sym_raw_string] = ACTIONS(2730), - [anon_sym_DOLLAR] = ACTIONS(3106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2730), - [anon_sym_BQUOTE] = ACTIONS(2730), - [anon_sym_LT_LPAREN] = ACTIONS(2730), - [anon_sym_GT_LPAREN] = ACTIONS(2730), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3106), - }, - [1592] = { - [sym_word] = ACTIONS(2734), - [sym__concat] = ACTIONS(2734), - [anon_sym_RPAREN] = ACTIONS(2734), - [anon_sym_DQUOTE] = ACTIONS(2734), - [sym_raw_string] = ACTIONS(2734), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2734), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2734), - [anon_sym_BQUOTE] = ACTIONS(2734), - [anon_sym_LT_LPAREN] = ACTIONS(2734), - [anon_sym_GT_LPAREN] = ACTIONS(2734), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3108), - }, - [1593] = { - [sym_word] = ACTIONS(2738), - [sym__concat] = ACTIONS(2738), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_DQUOTE] = ACTIONS(2738), - [sym_raw_string] = ACTIONS(2738), - [anon_sym_DOLLAR] = ACTIONS(3110), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2738), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2738), - [anon_sym_BQUOTE] = ACTIONS(2738), - [anon_sym_LT_LPAREN] = ACTIONS(2738), - [anon_sym_GT_LPAREN] = ACTIONS(2738), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3110), - }, - [1594] = { - [sym_file_descriptor] = ACTIONS(3116), - [sym_word] = ACTIONS(3116), - [sym__concat] = ACTIONS(3116), - [sym_variable_name] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_SEMI_SEMI] = ACTIONS(3118), - [anon_sym_PIPE_AMP] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3118), - [anon_sym_GT_GT] = ACTIONS(3118), - [anon_sym_AMP_GT] = ACTIONS(3118), - [anon_sym_AMP_GT_GT] = ACTIONS(3118), - [anon_sym_LT_AMP] = ACTIONS(3118), - [anon_sym_GT_AMP] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym_raw_string] = ACTIONS(3118), - [anon_sym_DOLLAR] = ACTIONS(3118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3118), - [anon_sym_BQUOTE] = ACTIONS(3118), - [anon_sym_LT_LPAREN] = ACTIONS(3118), - [anon_sym_GT_LPAREN] = ACTIONS(3118), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(3118), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_LF] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3118), - }, - [1595] = { - [sym_file_descriptor] = ACTIONS(3120), - [sym_word] = ACTIONS(3120), - [sym__concat] = ACTIONS(3120), - [sym_variable_name] = ACTIONS(3120), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_RPAREN] = ACTIONS(3122), - [anon_sym_SEMI_SEMI] = ACTIONS(3122), - [anon_sym_PIPE_AMP] = ACTIONS(3122), - [anon_sym_AMP_AMP] = ACTIONS(3122), - [anon_sym_PIPE_PIPE] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_GT_GT] = ACTIONS(3122), - [anon_sym_AMP_GT] = ACTIONS(3122), - [anon_sym_AMP_GT_GT] = ACTIONS(3122), - [anon_sym_LT_AMP] = ACTIONS(3122), - [anon_sym_GT_AMP] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [sym_raw_string] = ACTIONS(3122), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3122), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3122), - [anon_sym_BQUOTE] = ACTIONS(3122), - [anon_sym_LT_LPAREN] = ACTIONS(3122), - [anon_sym_GT_LPAREN] = ACTIONS(3122), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(3122), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_LF] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3122), - }, - [1596] = { - [sym__concat] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3116), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3116), - [sym_comment] = ACTIONS(46), - }, - [1597] = { - [sym__concat] = ACTIONS(3120), - [anon_sym_PIPE] = ACTIONS(3120), - [anon_sym_RPAREN] = ACTIONS(3120), - [anon_sym_RBRACE] = ACTIONS(3120), - [anon_sym_RBRACK] = ACTIONS(3120), - [sym_comment] = ACTIONS(46), - }, - [1598] = { - [anon_sym_RBRACE] = ACTIONS(3484), - [sym_comment] = ACTIONS(46), - }, - [1599] = { - [anon_sym_RBRACE] = ACTIONS(3486), - [sym_comment] = ACTIONS(46), - }, - [1600] = { - [sym_word] = ACTIONS(2726), - [sym__concat] = ACTIONS(2726), - [anon_sym_SEMI_SEMI] = ACTIONS(2728), - [anon_sym_DQUOTE] = ACTIONS(2728), - [sym_raw_string] = ACTIONS(2728), - [anon_sym_DOLLAR] = ACTIONS(2728), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2728), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2728), - [anon_sym_BQUOTE] = ACTIONS(2728), - [anon_sym_LT_LPAREN] = ACTIONS(2728), - [anon_sym_GT_LPAREN] = ACTIONS(2728), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2728), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_LF] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2728), - }, - [1601] = { - [sym_word] = ACTIONS(2730), - [sym__concat] = ACTIONS(2730), - [anon_sym_SEMI_SEMI] = ACTIONS(2732), - [anon_sym_DQUOTE] = ACTIONS(2732), - [sym_raw_string] = ACTIONS(2732), - [anon_sym_DOLLAR] = ACTIONS(2732), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2732), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2732), - [anon_sym_BQUOTE] = ACTIONS(2732), - [anon_sym_LT_LPAREN] = ACTIONS(2732), - [anon_sym_GT_LPAREN] = ACTIONS(2732), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_LF] = ACTIONS(2732), - [anon_sym_AMP] = ACTIONS(2732), - }, - [1602] = { - [sym_word] = ACTIONS(2734), - [sym__concat] = ACTIONS(2734), - [anon_sym_SEMI_SEMI] = ACTIONS(2736), - [anon_sym_DQUOTE] = ACTIONS(2736), - [sym_raw_string] = ACTIONS(2736), - [anon_sym_DOLLAR] = ACTIONS(2736), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2736), - [anon_sym_BQUOTE] = ACTIONS(2736), - [anon_sym_LT_LPAREN] = ACTIONS(2736), - [anon_sym_GT_LPAREN] = ACTIONS(2736), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_LF] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), - }, - [1603] = { - [sym_word] = ACTIONS(2738), - [sym__concat] = ACTIONS(2738), - [anon_sym_SEMI_SEMI] = ACTIONS(2740), - [anon_sym_DQUOTE] = ACTIONS(2740), - [sym_raw_string] = ACTIONS(2740), - [anon_sym_DOLLAR] = ACTIONS(2740), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2740), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2740), - [anon_sym_BQUOTE] = ACTIONS(2740), - [anon_sym_LT_LPAREN] = ACTIONS(2740), - [anon_sym_GT_LPAREN] = ACTIONS(2740), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - }, - [1604] = { - [sym_word] = ACTIONS(3488), - [anon_sym_esac] = ACTIONS(3490), - [anon_sym_DQUOTE] = ACTIONS(3488), - [sym_raw_string] = ACTIONS(3488), - [anon_sym_DOLLAR] = ACTIONS(3490), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3488), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3488), - [anon_sym_BQUOTE] = ACTIONS(3488), - [anon_sym_LT_LPAREN] = ACTIONS(3488), - [anon_sym_GT_LPAREN] = ACTIONS(3488), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3492), - }, - [1605] = { - [sym_word] = ACTIONS(3494), - [anon_sym_esac] = ACTIONS(3496), - [anon_sym_DQUOTE] = ACTIONS(3494), - [sym_raw_string] = ACTIONS(3494), - [anon_sym_DOLLAR] = ACTIONS(3496), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3494), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3494), - [anon_sym_BQUOTE] = ACTIONS(3494), - [anon_sym_LT_LPAREN] = ACTIONS(3494), - [anon_sym_GT_LPAREN] = ACTIONS(3494), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3498), - }, - [1606] = { - [anon_sym_RBRACK] = ACTIONS(3500), - [sym_comment] = ACTIONS(46), - }, - [1607] = { - [anon_sym_RBRACK] = ACTIONS(3502), - [sym_comment] = ACTIONS(46), - }, - [1608] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3504), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1609] = { - [sym__concat] = ACTIONS(2205), - [anon_sym_PIPE] = ACTIONS(2207), - [anon_sym_RPAREN] = ACTIONS(2207), - [anon_sym_SEMI_SEMI] = ACTIONS(2207), - [anon_sym_PIPE_AMP] = ACTIONS(2207), - [anon_sym_AMP_AMP] = ACTIONS(2207), - [anon_sym_PIPE_PIPE] = ACTIONS(2207), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2207), - [anon_sym_LF] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2207), - }, - [1610] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3506), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1611] = { - [sym__concat] = ACTIONS(2211), - [anon_sym_PIPE] = ACTIONS(2213), - [anon_sym_RPAREN] = ACTIONS(2213), - [anon_sym_SEMI_SEMI] = ACTIONS(2213), - [anon_sym_PIPE_AMP] = ACTIONS(2213), - [anon_sym_AMP_AMP] = ACTIONS(2213), - [anon_sym_PIPE_PIPE] = ACTIONS(2213), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_LF] = ACTIONS(2213), - [anon_sym_AMP] = ACTIONS(2213), - }, - [1612] = { - [anon_sym_RBRACE] = ACTIONS(3504), - [sym_comment] = ACTIONS(46), - }, - [1613] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1614] = { - [sym__concat] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_RPAREN] = ACTIONS(2219), - [anon_sym_SEMI_SEMI] = ACTIONS(2219), - [anon_sym_PIPE_AMP] = ACTIONS(2219), - [anon_sym_AMP_AMP] = ACTIONS(2219), - [anon_sym_PIPE_PIPE] = ACTIONS(2219), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2219), - [anon_sym_LF] = ACTIONS(2219), - [anon_sym_AMP] = ACTIONS(2219), - }, - [1615] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3510), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1616] = { - [sym__concat] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2225), - [anon_sym_RPAREN] = ACTIONS(2225), - [anon_sym_SEMI_SEMI] = ACTIONS(2225), - [anon_sym_PIPE_AMP] = ACTIONS(2225), - [anon_sym_AMP_AMP] = ACTIONS(2225), - [anon_sym_PIPE_PIPE] = ACTIONS(2225), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_LF] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2225), - }, - [1617] = { - [anon_sym_RBRACE] = ACTIONS(3508), - [sym_comment] = ACTIONS(46), - }, - [1618] = { - [anon_sym_RBRACE] = ACTIONS(3512), - [sym_comment] = ACTIONS(46), - }, - [1619] = { - [anon_sym_RBRACE] = ACTIONS(3514), - [sym_comment] = ACTIONS(46), - }, - [1620] = { - [sym_word] = ACTIONS(2726), - [sym__concat] = ACTIONS(2726), - [sym_variable_name] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_SEMI_SEMI] = ACTIONS(2728), - [anon_sym_PIPE_AMP] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_PIPE_PIPE] = ACTIONS(2728), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2728), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_LF] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2728), - }, - [1621] = { - [sym_word] = ACTIONS(2730), - [sym__concat] = ACTIONS(2730), - [sym_variable_name] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_SEMI_SEMI] = ACTIONS(2732), - [anon_sym_PIPE_AMP] = ACTIONS(2732), - [anon_sym_AMP_AMP] = ACTIONS(2732), - [anon_sym_PIPE_PIPE] = ACTIONS(2732), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_LF] = ACTIONS(2732), - [anon_sym_AMP] = ACTIONS(2732), - }, - [1622] = { - [sym_word] = ACTIONS(2734), - [sym__concat] = ACTIONS(2734), - [sym_variable_name] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_SEMI_SEMI] = ACTIONS(2736), - [anon_sym_PIPE_AMP] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_PIPE_PIPE] = ACTIONS(2736), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_LF] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), - }, - [1623] = { - [sym_word] = ACTIONS(2738), - [sym__concat] = ACTIONS(2738), - [sym_variable_name] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_SEMI_SEMI] = ACTIONS(2740), - [anon_sym_PIPE_AMP] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2740), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - }, - [1624] = { - [anon_sym_RBRACE] = ACTIONS(3516), - [sym_comment] = ACTIONS(46), - }, - [1625] = { - [anon_sym_RBRACE] = ACTIONS(3518), - [sym_comment] = ACTIONS(46), - }, - [1626] = { - [sym_file_descriptor] = ACTIONS(2726), - [sym_word] = ACTIONS(2726), - [sym__concat] = ACTIONS(2726), - [sym_variable_name] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(3104), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_PIPE_AMP] = ACTIONS(2726), - [anon_sym_AMP_AMP] = ACTIONS(2726), - [anon_sym_PIPE_PIPE] = ACTIONS(2726), - [anon_sym_LT] = ACTIONS(3104), - [anon_sym_GT] = ACTIONS(3104), - [anon_sym_GT_GT] = ACTIONS(2726), - [anon_sym_AMP_GT] = ACTIONS(3104), - [anon_sym_AMP_GT_GT] = ACTIONS(2726), - [anon_sym_LT_AMP] = ACTIONS(2726), - [anon_sym_GT_AMP] = ACTIONS(2726), - [anon_sym_DQUOTE] = ACTIONS(2726), - [sym_raw_string] = ACTIONS(2726), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2726), - [anon_sym_BQUOTE] = ACTIONS(2726), - [anon_sym_LT_LPAREN] = ACTIONS(2726), - [anon_sym_GT_LPAREN] = ACTIONS(2726), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3104), - }, - [1627] = { - [sym_file_descriptor] = ACTIONS(2730), - [sym_word] = ACTIONS(2730), - [sym__concat] = ACTIONS(2730), - [sym_variable_name] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(3106), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_PIPE_AMP] = ACTIONS(2730), - [anon_sym_AMP_AMP] = ACTIONS(2730), - [anon_sym_PIPE_PIPE] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_GT] = ACTIONS(3106), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_AMP_GT] = ACTIONS(3106), - [anon_sym_AMP_GT_GT] = ACTIONS(2730), - [anon_sym_LT_AMP] = ACTIONS(2730), - [anon_sym_GT_AMP] = ACTIONS(2730), - [anon_sym_DQUOTE] = ACTIONS(2730), - [sym_raw_string] = ACTIONS(2730), - [anon_sym_DOLLAR] = ACTIONS(3106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2730), - [anon_sym_BQUOTE] = ACTIONS(2730), - [anon_sym_LT_LPAREN] = ACTIONS(2730), - [anon_sym_GT_LPAREN] = ACTIONS(2730), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3106), - }, - [1628] = { - [sym_file_descriptor] = ACTIONS(2734), - [sym_word] = ACTIONS(2734), - [sym__concat] = ACTIONS(2734), - [sym_variable_name] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(3108), - [anon_sym_RPAREN] = ACTIONS(2734), - [anon_sym_PIPE_AMP] = ACTIONS(2734), - [anon_sym_AMP_AMP] = ACTIONS(2734), - [anon_sym_PIPE_PIPE] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(3108), - [anon_sym_GT] = ACTIONS(3108), - [anon_sym_GT_GT] = ACTIONS(2734), - [anon_sym_AMP_GT] = ACTIONS(3108), - [anon_sym_AMP_GT_GT] = ACTIONS(2734), - [anon_sym_LT_AMP] = ACTIONS(2734), - [anon_sym_GT_AMP] = ACTIONS(2734), - [anon_sym_DQUOTE] = ACTIONS(2734), - [sym_raw_string] = ACTIONS(2734), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2734), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2734), - [anon_sym_BQUOTE] = ACTIONS(2734), - [anon_sym_LT_LPAREN] = ACTIONS(2734), - [anon_sym_GT_LPAREN] = ACTIONS(2734), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3108), - }, - [1629] = { - [sym_file_descriptor] = ACTIONS(2738), - [sym_word] = ACTIONS(2738), - [sym__concat] = ACTIONS(2738), - [sym_variable_name] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(3110), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_PIPE_AMP] = ACTIONS(2738), - [anon_sym_AMP_AMP] = ACTIONS(2738), - [anon_sym_PIPE_PIPE] = ACTIONS(2738), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3110), - [anon_sym_GT_GT] = ACTIONS(2738), - [anon_sym_AMP_GT] = ACTIONS(3110), - [anon_sym_AMP_GT_GT] = ACTIONS(2738), - [anon_sym_LT_AMP] = ACTIONS(2738), - [anon_sym_GT_AMP] = ACTIONS(2738), - [anon_sym_DQUOTE] = ACTIONS(2738), - [sym_raw_string] = ACTIONS(2738), - [anon_sym_DOLLAR] = ACTIONS(3110), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2738), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2738), - [anon_sym_BQUOTE] = ACTIONS(2738), - [anon_sym_LT_LPAREN] = ACTIONS(2738), - [anon_sym_GT_LPAREN] = ACTIONS(2738), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3110), - }, - [1630] = { - [sym__concat] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(2145), - [anon_sym_RPAREN] = ACTIONS(1532), - [anon_sym_PIPE_AMP] = ACTIONS(1532), - [anon_sym_AMP_AMP] = ACTIONS(1532), - [anon_sym_PIPE_PIPE] = ACTIONS(1532), - [anon_sym_BQUOTE] = ACTIONS(1532), - [sym_comment] = ACTIONS(46), - }, - [1631] = { - [anon_sym_AT] = ACTIONS(3520), - [sym_comment] = ACTIONS(46), - }, - [1632] = { - [sym__concat] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(2149), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_PIPE_AMP] = ACTIONS(1538), - [anon_sym_AMP_AMP] = ACTIONS(1538), - [anon_sym_PIPE_PIPE] = ACTIONS(1538), - [anon_sym_BQUOTE] = ACTIONS(1538), - [sym_comment] = ACTIONS(46), - }, - [1633] = { - [anon_sym_AT] = ACTIONS(3522), - [sym_comment] = ACTIONS(46), - }, - [1634] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3526), - [sym_comment] = ACTIONS(46), - }, - [1635] = { - [sym__concat] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(2157), - [anon_sym_RPAREN] = ACTIONS(1548), - [anon_sym_PIPE_AMP] = ACTIONS(1548), - [anon_sym_AMP_AMP] = ACTIONS(1548), - [anon_sym_PIPE_PIPE] = ACTIONS(1548), - [anon_sym_BQUOTE] = ACTIONS(1548), - [sym_comment] = ACTIONS(46), - }, - [1636] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(3528), - [anon_sym_RBRACE] = ACTIONS(3530), - [sym_comment] = ACTIONS(46), - }, - [1637] = { - [sym__concat] = ACTIONS(3532), - [anon_sym_RBRACE] = ACTIONS(3526), - [sym_comment] = ACTIONS(46), - }, - [1638] = { - [anon_sym_RBRACK] = ACTIONS(3532), - [sym_comment] = ACTIONS(46), - }, - [1639] = { - [aux_sym_concatenation_repeat1] = STATE(806), - [sym__concat] = ACTIONS(3534), - [anon_sym_RBRACE] = ACTIONS(3536), - [sym_comment] = ACTIONS(46), - }, - [1640] = { - [aux_sym_concatenation_repeat1] = STATE(809), - [sym__concat] = ACTIONS(3538), - [anon_sym_RBRACE] = ACTIONS(3540), - [sym_comment] = ACTIONS(46), - }, - [1641] = { - [sym__concat] = ACTIONS(3542), - [anon_sym_RBRACE] = ACTIONS(3536), - [sym_comment] = ACTIONS(46), - }, - [1642] = { - [anon_sym_RBRACK] = ACTIONS(3542), - [sym_comment] = ACTIONS(46), - }, - [1643] = { - [anon_sym_RBRACK] = ACTIONS(3544), - [sym_comment] = ACTIONS(46), - }, - [1644] = { - [anon_sym_RBRACK] = ACTIONS(3546), - [sym_comment] = ACTIONS(46), - }, - [1645] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3548), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1646] = { - [sym_word] = ACTIONS(2205), - [sym__concat] = ACTIONS(2205), - [sym_variable_name] = ACTIONS(2205), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_RPAREN] = ACTIONS(2205), - [anon_sym_PIPE_AMP] = ACTIONS(2205), - [anon_sym_AMP_AMP] = ACTIONS(2205), - [anon_sym_PIPE_PIPE] = ACTIONS(2205), - [anon_sym_BQUOTE] = ACTIONS(2205), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2696), - }, - [1647] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3550), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1648] = { - [sym_word] = ACTIONS(2211), - [sym__concat] = ACTIONS(2211), - [sym_variable_name] = ACTIONS(2211), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_RPAREN] = ACTIONS(2211), - [anon_sym_PIPE_AMP] = ACTIONS(2211), - [anon_sym_AMP_AMP] = ACTIONS(2211), - [anon_sym_PIPE_PIPE] = ACTIONS(2211), - [anon_sym_BQUOTE] = ACTIONS(2211), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2700), - }, - [1649] = { - [anon_sym_RBRACE] = ACTIONS(3548), - [sym_comment] = ACTIONS(46), - }, - [1650] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3552), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1651] = { - [sym_word] = ACTIONS(2217), - [sym__concat] = ACTIONS(2217), - [sym_variable_name] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_RPAREN] = ACTIONS(2217), - [anon_sym_PIPE_AMP] = ACTIONS(2217), - [anon_sym_AMP_AMP] = ACTIONS(2217), - [anon_sym_PIPE_PIPE] = ACTIONS(2217), - [anon_sym_BQUOTE] = ACTIONS(2217), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2704), - }, - [1652] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3554), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1653] = { - [sym_word] = ACTIONS(2223), - [sym__concat] = ACTIONS(2223), - [sym_variable_name] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_RPAREN] = ACTIONS(2223), - [anon_sym_PIPE_AMP] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BQUOTE] = ACTIONS(2223), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(2708), - }, - [1654] = { - [anon_sym_RBRACE] = ACTIONS(3552), - [sym_comment] = ACTIONS(46), - }, - [1655] = { - [anon_sym_RBRACE] = ACTIONS(3556), - [sym_comment] = ACTIONS(46), - }, - [1656] = { - [anon_sym_RBRACE] = ACTIONS(3558), - [sym_comment] = ACTIONS(46), - }, - [1657] = { - [sym_file_descriptor] = ACTIONS(2726), - [sym__concat] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(3104), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_PIPE_AMP] = ACTIONS(2726), - [anon_sym_AMP_AMP] = ACTIONS(2726), - [anon_sym_PIPE_PIPE] = ACTIONS(2726), - [anon_sym_LT] = ACTIONS(3104), - [anon_sym_GT] = ACTIONS(3104), - [anon_sym_GT_GT] = ACTIONS(2726), - [anon_sym_AMP_GT] = ACTIONS(3104), - [anon_sym_AMP_GT_GT] = ACTIONS(2726), - [anon_sym_LT_AMP] = ACTIONS(2726), - [anon_sym_GT_AMP] = ACTIONS(2726), - [anon_sym_LT_LT] = ACTIONS(3104), - [anon_sym_LT_LT_DASH] = ACTIONS(2726), - [anon_sym_BQUOTE] = ACTIONS(2726), - [sym_comment] = ACTIONS(46), - }, - [1658] = { - [sym_file_descriptor] = ACTIONS(2730), - [sym__concat] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(3106), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_PIPE_AMP] = ACTIONS(2730), - [anon_sym_AMP_AMP] = ACTIONS(2730), - [anon_sym_PIPE_PIPE] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_GT] = ACTIONS(3106), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_AMP_GT] = ACTIONS(3106), - [anon_sym_AMP_GT_GT] = ACTIONS(2730), - [anon_sym_LT_AMP] = ACTIONS(2730), - [anon_sym_GT_AMP] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(3106), - [anon_sym_LT_LT_DASH] = ACTIONS(2730), - [anon_sym_BQUOTE] = ACTIONS(2730), - [sym_comment] = ACTIONS(46), - }, - [1659] = { - [sym_file_descriptor] = ACTIONS(2734), - [sym__concat] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(3108), - [anon_sym_RPAREN] = ACTIONS(2734), - [anon_sym_PIPE_AMP] = ACTIONS(2734), - [anon_sym_AMP_AMP] = ACTIONS(2734), - [anon_sym_PIPE_PIPE] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(3108), - [anon_sym_GT] = ACTIONS(3108), - [anon_sym_GT_GT] = ACTIONS(2734), - [anon_sym_AMP_GT] = ACTIONS(3108), - [anon_sym_AMP_GT_GT] = ACTIONS(2734), - [anon_sym_LT_AMP] = ACTIONS(2734), - [anon_sym_GT_AMP] = ACTIONS(2734), - [anon_sym_LT_LT] = ACTIONS(3108), - [anon_sym_LT_LT_DASH] = ACTIONS(2734), - [anon_sym_BQUOTE] = ACTIONS(2734), - [sym_comment] = ACTIONS(46), - }, - [1660] = { - [sym_file_descriptor] = ACTIONS(2738), - [sym__concat] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(3110), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_PIPE_AMP] = ACTIONS(2738), - [anon_sym_AMP_AMP] = ACTIONS(2738), - [anon_sym_PIPE_PIPE] = ACTIONS(2738), - [anon_sym_LT] = ACTIONS(3110), - [anon_sym_GT] = ACTIONS(3110), - [anon_sym_GT_GT] = ACTIONS(2738), - [anon_sym_AMP_GT] = ACTIONS(3110), - [anon_sym_AMP_GT_GT] = ACTIONS(2738), - [anon_sym_LT_AMP] = ACTIONS(2738), - [anon_sym_GT_AMP] = ACTIONS(2738), - [anon_sym_LT_LT] = ACTIONS(3110), - [anon_sym_LT_LT_DASH] = ACTIONS(2738), - [anon_sym_BQUOTE] = ACTIONS(2738), - [sym_comment] = ACTIONS(46), - }, - [1661] = { - [sym_file_descriptor] = ACTIONS(3116), - [sym__concat] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_SEMI_SEMI] = ACTIONS(3118), - [anon_sym_PIPE_AMP] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3118), - [anon_sym_GT_GT] = ACTIONS(3118), - [anon_sym_AMP_GT] = ACTIONS(3118), - [anon_sym_AMP_GT_GT] = ACTIONS(3118), - [anon_sym_LT_AMP] = ACTIONS(3118), - [anon_sym_GT_AMP] = ACTIONS(3118), - [anon_sym_LT_LT] = ACTIONS(3118), - [anon_sym_LT_LT_DASH] = ACTIONS(3118), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_LF] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3118), - }, - [1662] = { - [sym_file_descriptor] = ACTIONS(3120), - [sym__concat] = ACTIONS(3120), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_RPAREN] = ACTIONS(3122), - [anon_sym_SEMI_SEMI] = ACTIONS(3122), - [anon_sym_PIPE_AMP] = ACTIONS(3122), - [anon_sym_AMP_AMP] = ACTIONS(3122), - [anon_sym_PIPE_PIPE] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_GT] = ACTIONS(3122), - [anon_sym_GT_GT] = ACTIONS(3122), - [anon_sym_AMP_GT] = ACTIONS(3122), - [anon_sym_AMP_GT_GT] = ACTIONS(3122), - [anon_sym_LT_AMP] = ACTIONS(3122), - [anon_sym_GT_AMP] = ACTIONS(3122), - [anon_sym_LT_LT] = ACTIONS(3122), - [anon_sym_LT_LT_DASH] = ACTIONS(3122), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_LF] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3122), - }, - [1663] = { - [anon_sym_RBRACE] = ACTIONS(3560), - [sym_comment] = ACTIONS(46), - }, - [1664] = { - [anon_sym_RBRACE] = ACTIONS(3562), - [sym_comment] = ACTIONS(46), - }, - [1665] = { - [sym__heredoc_middle] = ACTIONS(2726), - [sym__heredoc_end] = ACTIONS(2726), - [anon_sym_DOLLAR] = ACTIONS(3104), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2726), - [sym_comment] = ACTIONS(46), - }, - [1666] = { - [sym__heredoc_middle] = ACTIONS(2730), - [sym__heredoc_end] = ACTIONS(2730), - [anon_sym_DOLLAR] = ACTIONS(3106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2730), - [sym_comment] = ACTIONS(46), - }, - [1667] = { - [sym__heredoc_middle] = ACTIONS(2734), - [sym__heredoc_end] = ACTIONS(2734), - [anon_sym_DOLLAR] = ACTIONS(3108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2734), - [sym_comment] = ACTIONS(46), - }, - [1668] = { - [sym__heredoc_middle] = ACTIONS(2738), - [sym__heredoc_end] = ACTIONS(2738), - [anon_sym_DOLLAR] = ACTIONS(3110), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2738), - [sym_comment] = ACTIONS(46), - }, - [1669] = { - [sym_word] = ACTIONS(3116), - [sym__concat] = ACTIONS(3116), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3116), - [sym_raw_string] = ACTIONS(3116), - [anon_sym_DOLLAR] = ACTIONS(3375), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3116), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3116), - [anon_sym_BQUOTE] = ACTIONS(3116), - [anon_sym_LT_LPAREN] = ACTIONS(3116), - [anon_sym_GT_LPAREN] = ACTIONS(3116), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3375), - }, - [1670] = { - [sym_word] = ACTIONS(3120), - [sym__concat] = ACTIONS(3120), - [anon_sym_RPAREN] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(3120), - [sym_raw_string] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3377), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), - [anon_sym_BQUOTE] = ACTIONS(3120), - [anon_sym_LT_LPAREN] = ACTIONS(3120), - [anon_sym_GT_LPAREN] = ACTIONS(3120), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3377), - }, - [1671] = { - [sym_word] = ACTIONS(3116), - [sym__concat] = ACTIONS(3116), - [anon_sym_SEMI_SEMI] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(3118), - [sym_raw_string] = ACTIONS(3118), - [anon_sym_DOLLAR] = ACTIONS(3118), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3118), - [anon_sym_BQUOTE] = ACTIONS(3118), - [anon_sym_LT_LPAREN] = ACTIONS(3118), - [anon_sym_GT_LPAREN] = ACTIONS(3118), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(3118), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_LF] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3118), - }, - [1672] = { - [sym_word] = ACTIONS(3120), - [sym__concat] = ACTIONS(3120), - [anon_sym_SEMI_SEMI] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [sym_raw_string] = ACTIONS(3122), - [anon_sym_DOLLAR] = ACTIONS(3122), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3122), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3122), - [anon_sym_BQUOTE] = ACTIONS(3122), - [anon_sym_LT_LPAREN] = ACTIONS(3122), - [anon_sym_GT_LPAREN] = ACTIONS(3122), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(3122), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_LF] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3122), - }, - [1673] = { - [anon_sym_RBRACE] = ACTIONS(3564), - [sym_comment] = ACTIONS(46), - }, - [1674] = { - [anon_sym_RBRACE] = ACTIONS(3566), - [sym_comment] = ACTIONS(46), - }, - [1675] = { - [sym__concat] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2728), - [anon_sym_RPAREN] = ACTIONS(2728), - [anon_sym_SEMI_SEMI] = ACTIONS(2728), - [anon_sym_PIPE_AMP] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_PIPE_PIPE] = ACTIONS(2728), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_LF] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2728), - }, - [1676] = { - [sym__concat] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2732), - [anon_sym_RPAREN] = ACTIONS(2732), - [anon_sym_SEMI_SEMI] = ACTIONS(2732), - [anon_sym_PIPE_AMP] = ACTIONS(2732), - [anon_sym_AMP_AMP] = ACTIONS(2732), - [anon_sym_PIPE_PIPE] = ACTIONS(2732), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_LF] = ACTIONS(2732), - [anon_sym_AMP] = ACTIONS(2732), - }, - [1677] = { - [sym__concat] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_SEMI_SEMI] = ACTIONS(2736), - [anon_sym_PIPE_AMP] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_PIPE_PIPE] = ACTIONS(2736), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_LF] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2736), - }, - [1678] = { - [sym__concat] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_SEMI_SEMI] = ACTIONS(2740), - [anon_sym_PIPE_AMP] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2740), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - }, - [1679] = { - [sym_word] = ACTIONS(3116), - [sym__concat] = ACTIONS(3116), - [sym_variable_name] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_SEMI_SEMI] = ACTIONS(3118), - [anon_sym_PIPE_AMP] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(3118), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_LF] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3118), - }, - [1680] = { - [sym_word] = ACTIONS(3120), - [sym__concat] = ACTIONS(3120), - [sym_variable_name] = ACTIONS(3120), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_RPAREN] = ACTIONS(3122), - [anon_sym_SEMI_SEMI] = ACTIONS(3122), - [anon_sym_PIPE_AMP] = ACTIONS(3122), - [anon_sym_AMP_AMP] = ACTIONS(3122), - [anon_sym_PIPE_PIPE] = ACTIONS(3122), - [sym_comment] = ACTIONS(60), - [sym_identifier] = ACTIONS(3122), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_LF] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3122), - }, - [1681] = { - [sym_file_descriptor] = ACTIONS(3116), - [sym_word] = ACTIONS(3116), - [sym__concat] = ACTIONS(3116), - [sym_variable_name] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3375), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_PIPE_AMP] = ACTIONS(3116), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_GT] = ACTIONS(3375), - [anon_sym_GT_GT] = ACTIONS(3116), - [anon_sym_AMP_GT] = ACTIONS(3375), - [anon_sym_AMP_GT_GT] = ACTIONS(3116), - [anon_sym_LT_AMP] = ACTIONS(3116), - [anon_sym_GT_AMP] = ACTIONS(3116), - [anon_sym_DQUOTE] = ACTIONS(3116), - [sym_raw_string] = ACTIONS(3116), - [anon_sym_DOLLAR] = ACTIONS(3375), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3116), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3116), - [anon_sym_BQUOTE] = ACTIONS(3116), - [anon_sym_LT_LPAREN] = ACTIONS(3116), - [anon_sym_GT_LPAREN] = ACTIONS(3116), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3375), - }, - [1682] = { - [sym_file_descriptor] = ACTIONS(3120), - [sym_word] = ACTIONS(3120), - [sym__concat] = ACTIONS(3120), - [sym_variable_name] = ACTIONS(3120), - [anon_sym_PIPE] = ACTIONS(3377), - [anon_sym_RPAREN] = ACTIONS(3120), - [anon_sym_PIPE_AMP] = ACTIONS(3120), - [anon_sym_AMP_AMP] = ACTIONS(3120), - [anon_sym_PIPE_PIPE] = ACTIONS(3120), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_GT] = ACTIONS(3377), - [anon_sym_GT_GT] = ACTIONS(3120), - [anon_sym_AMP_GT] = ACTIONS(3377), - [anon_sym_AMP_GT_GT] = ACTIONS(3120), - [anon_sym_LT_AMP] = ACTIONS(3120), - [anon_sym_GT_AMP] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(3120), - [sym_raw_string] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3377), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3120), - [anon_sym_BQUOTE] = ACTIONS(3120), - [anon_sym_LT_LPAREN] = ACTIONS(3120), - [anon_sym_GT_LPAREN] = ACTIONS(3120), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3377), - }, - [1683] = { - [anon_sym_RBRACK] = ACTIONS(3568), - [sym_comment] = ACTIONS(46), - }, - [1684] = { - [anon_sym_RBRACK] = ACTIONS(3570), - [sym_comment] = ACTIONS(46), - }, - [1685] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3572), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1686] = { - [sym__concat] = ACTIONS(2205), - [anon_sym_PIPE] = ACTIONS(2696), - [anon_sym_RPAREN] = ACTIONS(2205), - [anon_sym_PIPE_AMP] = ACTIONS(2205), - [anon_sym_AMP_AMP] = ACTIONS(2205), - [anon_sym_PIPE_PIPE] = ACTIONS(2205), - [anon_sym_BQUOTE] = ACTIONS(2205), - [sym_comment] = ACTIONS(46), - }, - [1687] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1688] = { - [sym__concat] = ACTIONS(2211), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_RPAREN] = ACTIONS(2211), - [anon_sym_PIPE_AMP] = ACTIONS(2211), - [anon_sym_AMP_AMP] = ACTIONS(2211), - [anon_sym_PIPE_PIPE] = ACTIONS(2211), - [anon_sym_BQUOTE] = ACTIONS(2211), - [sym_comment] = ACTIONS(46), - }, - [1689] = { - [anon_sym_RBRACE] = ACTIONS(3572), - [sym_comment] = ACTIONS(46), - }, - [1690] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1691] = { - [sym__concat] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_RPAREN] = ACTIONS(2217), - [anon_sym_PIPE_AMP] = ACTIONS(2217), - [anon_sym_AMP_AMP] = ACTIONS(2217), - [anon_sym_PIPE_PIPE] = ACTIONS(2217), - [anon_sym_BQUOTE] = ACTIONS(2217), - [sym_comment] = ACTIONS(46), - }, - [1692] = { - [sym_string] = STATE(660), - [sym_simple_expansion] = STATE(660), - [sym_expansion] = STATE(660), - [sym_command_substitution] = STATE(660), - [sym_process_substitution] = STATE(660), - [sym_word] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(3578), - [anon_sym_DQUOTE] = ACTIONS(280), - [sym_raw_string] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(286), - [anon_sym_BQUOTE] = ACTIONS(288), - [anon_sym_LT_LPAREN] = ACTIONS(290), - [anon_sym_GT_LPAREN] = ACTIONS(290), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(1270), - }, - [1693] = { - [sym__concat] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2708), - [anon_sym_RPAREN] = ACTIONS(2223), - [anon_sym_PIPE_AMP] = ACTIONS(2223), - [anon_sym_AMP_AMP] = ACTIONS(2223), - [anon_sym_PIPE_PIPE] = ACTIONS(2223), - [anon_sym_BQUOTE] = ACTIONS(2223), - [sym_comment] = ACTIONS(46), - }, - [1694] = { - [anon_sym_RBRACE] = ACTIONS(3576), - [sym_comment] = ACTIONS(46), - }, - [1695] = { - [anon_sym_RBRACE] = ACTIONS(3580), - [sym_comment] = ACTIONS(46), - }, - [1696] = { - [anon_sym_RBRACE] = ACTIONS(3582), - [sym_comment] = ACTIONS(46), - }, - [1697] = { - [sym_word] = ACTIONS(2726), - [sym__concat] = ACTIONS(2726), - [sym_variable_name] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(3104), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_PIPE_AMP] = ACTIONS(2726), - [anon_sym_AMP_AMP] = ACTIONS(2726), - [anon_sym_PIPE_PIPE] = ACTIONS(2726), - [anon_sym_BQUOTE] = ACTIONS(2726), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3104), - }, - [1698] = { - [sym_word] = ACTIONS(2730), - [sym__concat] = ACTIONS(2730), - [sym_variable_name] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(3106), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_PIPE_AMP] = ACTIONS(2730), - [anon_sym_AMP_AMP] = ACTIONS(2730), - [anon_sym_PIPE_PIPE] = ACTIONS(2730), - [anon_sym_BQUOTE] = ACTIONS(2730), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3106), - }, - [1699] = { - [sym_word] = ACTIONS(2734), - [sym__concat] = ACTIONS(2734), - [sym_variable_name] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(3108), - [anon_sym_RPAREN] = ACTIONS(2734), - [anon_sym_PIPE_AMP] = ACTIONS(2734), - [anon_sym_AMP_AMP] = ACTIONS(2734), - [anon_sym_PIPE_PIPE] = ACTIONS(2734), - [anon_sym_BQUOTE] = ACTIONS(2734), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3108), - }, - [1700] = { - [sym_word] = ACTIONS(2738), - [sym__concat] = ACTIONS(2738), - [sym_variable_name] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(3110), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_PIPE_AMP] = ACTIONS(2738), - [anon_sym_AMP_AMP] = ACTIONS(2738), - [anon_sym_PIPE_PIPE] = ACTIONS(2738), - [anon_sym_BQUOTE] = ACTIONS(2738), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3110), - }, - [1701] = { - [sym_file_descriptor] = ACTIONS(3116), - [sym__concat] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3375), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_PIPE_AMP] = ACTIONS(3116), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_GT] = ACTIONS(3375), - [anon_sym_GT_GT] = ACTIONS(3116), - [anon_sym_AMP_GT] = ACTIONS(3375), - [anon_sym_AMP_GT_GT] = ACTIONS(3116), - [anon_sym_LT_AMP] = ACTIONS(3116), - [anon_sym_GT_AMP] = ACTIONS(3116), - [anon_sym_LT_LT] = ACTIONS(3375), - [anon_sym_LT_LT_DASH] = ACTIONS(3116), - [anon_sym_BQUOTE] = ACTIONS(3116), - [sym_comment] = ACTIONS(46), - }, - [1702] = { - [sym_file_descriptor] = ACTIONS(3120), - [sym__concat] = ACTIONS(3120), - [anon_sym_PIPE] = ACTIONS(3377), - [anon_sym_RPAREN] = ACTIONS(3120), - [anon_sym_PIPE_AMP] = ACTIONS(3120), - [anon_sym_AMP_AMP] = ACTIONS(3120), - [anon_sym_PIPE_PIPE] = ACTIONS(3120), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_GT] = ACTIONS(3377), - [anon_sym_GT_GT] = ACTIONS(3120), - [anon_sym_AMP_GT] = ACTIONS(3377), - [anon_sym_AMP_GT_GT] = ACTIONS(3120), - [anon_sym_LT_AMP] = ACTIONS(3120), - [anon_sym_GT_AMP] = ACTIONS(3120), - [anon_sym_LT_LT] = ACTIONS(3377), - [anon_sym_LT_LT_DASH] = ACTIONS(3120), - [anon_sym_BQUOTE] = ACTIONS(3120), - [sym_comment] = ACTIONS(46), - }, - [1703] = { - [sym__heredoc_middle] = ACTIONS(3116), - [sym__heredoc_end] = ACTIONS(3116), - [anon_sym_DOLLAR] = ACTIONS(3375), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3116), - [sym_comment] = ACTIONS(46), - }, - [1704] = { - [sym__heredoc_middle] = ACTIONS(3120), - [sym__heredoc_end] = ACTIONS(3120), - [anon_sym_DOLLAR] = ACTIONS(3377), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3120), - [sym_comment] = ACTIONS(46), - }, - [1705] = { - [sym__concat] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_SEMI_SEMI] = ACTIONS(3118), - [anon_sym_PIPE_AMP] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_LF] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3118), - }, - [1706] = { - [sym__concat] = ACTIONS(3120), - [anon_sym_PIPE] = ACTIONS(3122), - [anon_sym_RPAREN] = ACTIONS(3122), - [anon_sym_SEMI_SEMI] = ACTIONS(3122), - [anon_sym_PIPE_AMP] = ACTIONS(3122), - [anon_sym_AMP_AMP] = ACTIONS(3122), - [anon_sym_PIPE_PIPE] = ACTIONS(3122), - [sym_comment] = ACTIONS(60), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_LF] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3122), - }, - [1707] = { - [anon_sym_RBRACE] = ACTIONS(3584), - [sym_comment] = ACTIONS(46), - }, - [1708] = { - [anon_sym_RBRACE] = ACTIONS(3586), - [sym_comment] = ACTIONS(46), - }, - [1709] = { - [sym__concat] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(3104), - [anon_sym_RPAREN] = ACTIONS(2726), - [anon_sym_PIPE_AMP] = ACTIONS(2726), - [anon_sym_AMP_AMP] = ACTIONS(2726), - [anon_sym_PIPE_PIPE] = ACTIONS(2726), - [anon_sym_BQUOTE] = ACTIONS(2726), - [sym_comment] = ACTIONS(46), - }, - [1710] = { - [sym__concat] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(3106), - [anon_sym_RPAREN] = ACTIONS(2730), - [anon_sym_PIPE_AMP] = ACTIONS(2730), - [anon_sym_AMP_AMP] = ACTIONS(2730), - [anon_sym_PIPE_PIPE] = ACTIONS(2730), - [anon_sym_BQUOTE] = ACTIONS(2730), - [sym_comment] = ACTIONS(46), - }, - [1711] = { - [sym__concat] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(3108), - [anon_sym_RPAREN] = ACTIONS(2734), - [anon_sym_PIPE_AMP] = ACTIONS(2734), - [anon_sym_AMP_AMP] = ACTIONS(2734), - [anon_sym_PIPE_PIPE] = ACTIONS(2734), - [anon_sym_BQUOTE] = ACTIONS(2734), - [sym_comment] = ACTIONS(46), - }, - [1712] = { - [sym__concat] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(3110), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_PIPE_AMP] = ACTIONS(2738), - [anon_sym_AMP_AMP] = ACTIONS(2738), - [anon_sym_PIPE_PIPE] = ACTIONS(2738), - [anon_sym_BQUOTE] = ACTIONS(2738), - [sym_comment] = ACTIONS(46), - }, - [1713] = { - [sym_word] = ACTIONS(3116), - [sym__concat] = ACTIONS(3116), - [sym_variable_name] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3375), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_PIPE_AMP] = ACTIONS(3116), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_BQUOTE] = ACTIONS(3116), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3375), - }, - [1714] = { - [sym_word] = ACTIONS(3120), - [sym__concat] = ACTIONS(3120), - [sym_variable_name] = ACTIONS(3120), - [anon_sym_PIPE] = ACTIONS(3377), - [anon_sym_RPAREN] = ACTIONS(3120), - [anon_sym_PIPE_AMP] = ACTIONS(3120), - [anon_sym_AMP_AMP] = ACTIONS(3120), - [anon_sym_PIPE_PIPE] = ACTIONS(3120), - [anon_sym_BQUOTE] = ACTIONS(3120), - [sym_comment] = ACTIONS(46), - [sym_identifier] = ACTIONS(3377), - }, - [1715] = { - [sym__concat] = ACTIONS(3116), - [anon_sym_PIPE] = ACTIONS(3375), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_PIPE_AMP] = ACTIONS(3116), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_BQUOTE] = ACTIONS(3116), - [sym_comment] = ACTIONS(46), - }, - [1716] = { - [sym__concat] = ACTIONS(3120), - [anon_sym_PIPE] = ACTIONS(3377), - [anon_sym_RPAREN] = ACTIONS(3120), - [anon_sym_PIPE_AMP] = ACTIONS(3120), - [anon_sym_AMP_AMP] = ACTIONS(3120), - [anon_sym_PIPE_PIPE] = ACTIONS(3120), - [anon_sym_BQUOTE] = ACTIONS(3120), - [sym_comment] = ACTIONS(46), + [anon_sym_LT_LPAREN] = ACTIONS(3401), + [anon_sym_GT_LPAREN] = ACTIONS(3401), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3403), + }, + [2402] = { + [sym_file_descriptor] = ACTIONS(3405), + [sym__concat] = ACTIONS(3405), + [sym_variable_name] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(4387), + [anon_sym_PIPE_AMP] = ACTIONS(3405), + [anon_sym_AMP_AMP] = ACTIONS(3405), + [anon_sym_PIPE_PIPE] = ACTIONS(4387), + [anon_sym_LT] = ACTIONS(4387), + [anon_sym_GT] = ACTIONS(4387), + [anon_sym_GT_GT] = ACTIONS(3405), + [anon_sym_AMP_GT] = ACTIONS(4387), + [anon_sym_AMP_GT_GT] = ACTIONS(3405), + [anon_sym_LT_AMP] = ACTIONS(3405), + [anon_sym_GT_AMP] = ACTIONS(3405), + [sym__special_characters] = ACTIONS(4387), + [anon_sym_DQUOTE] = ACTIONS(3405), + [sym_raw_string] = ACTIONS(3405), + [anon_sym_DOLLAR] = ACTIONS(4387), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3405), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3405), + [anon_sym_BQUOTE] = ACTIONS(3405), + [anon_sym_LT_LPAREN] = ACTIONS(3405), + [anon_sym_GT_LPAREN] = ACTIONS(3405), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3407), + }, + [2403] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6068), + [sym_comment] = ACTIONS(48), + }, + [2404] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6070), + [sym_comment] = ACTIONS(48), + }, + [2405] = { + [anon_sym_RBRACE] = ACTIONS(6070), + [sym_comment] = ACTIONS(48), + }, + [2406] = { + [sym_file_descriptor] = ACTIONS(3413), + [sym__concat] = ACTIONS(3413), + [sym_variable_name] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(4393), + [anon_sym_PIPE_AMP] = ACTIONS(3413), + [anon_sym_AMP_AMP] = ACTIONS(3413), + [anon_sym_PIPE_PIPE] = ACTIONS(4393), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_GT_GT] = ACTIONS(3413), + [anon_sym_AMP_GT] = ACTIONS(4393), + [anon_sym_AMP_GT_GT] = ACTIONS(3413), + [anon_sym_LT_AMP] = ACTIONS(3413), + [anon_sym_GT_AMP] = ACTIONS(3413), + [sym__special_characters] = ACTIONS(4393), + [anon_sym_DQUOTE] = ACTIONS(3413), + [sym_raw_string] = ACTIONS(3413), + [anon_sym_DOLLAR] = ACTIONS(4393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3413), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3413), + [anon_sym_BQUOTE] = ACTIONS(3413), + [anon_sym_LT_LPAREN] = ACTIONS(3413), + [anon_sym_GT_LPAREN] = ACTIONS(3413), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3415), + }, + [2407] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6072), + [sym_comment] = ACTIONS(48), + }, + [2408] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6074), + [sym_comment] = ACTIONS(48), + }, + [2409] = { + [anon_sym_RBRACE] = ACTIONS(6074), + [sym_comment] = ACTIONS(48), + }, + [2410] = { + [sym_file_descriptor] = ACTIONS(3421), + [sym__concat] = ACTIONS(3421), + [sym_variable_name] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(4399), + [anon_sym_PIPE_AMP] = ACTIONS(3421), + [anon_sym_AMP_AMP] = ACTIONS(3421), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_GT] = ACTIONS(4399), + [anon_sym_GT_GT] = ACTIONS(3421), + [anon_sym_AMP_GT] = ACTIONS(4399), + [anon_sym_AMP_GT_GT] = ACTIONS(3421), + [anon_sym_LT_AMP] = ACTIONS(3421), + [anon_sym_GT_AMP] = ACTIONS(3421), + [sym__special_characters] = ACTIONS(4399), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_raw_string] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(4399), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3421), + [anon_sym_BQUOTE] = ACTIONS(3421), + [anon_sym_LT_LPAREN] = ACTIONS(3421), + [anon_sym_GT_LPAREN] = ACTIONS(3421), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3423), + }, + [2411] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6076), + [sym_comment] = ACTIONS(48), + }, + [2412] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6078), + [sym_comment] = ACTIONS(48), + }, + [2413] = { + [anon_sym_RBRACE] = ACTIONS(6078), + [sym_comment] = ACTIONS(48), + }, + [2414] = { + [sym_file_descriptor] = ACTIONS(3429), + [sym__concat] = ACTIONS(3429), + [sym_variable_name] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(4405), + [anon_sym_PIPE_AMP] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(4405), + [anon_sym_LT] = ACTIONS(4405), + [anon_sym_GT] = ACTIONS(4405), + [anon_sym_GT_GT] = ACTIONS(3429), + [anon_sym_AMP_GT] = ACTIONS(4405), + [anon_sym_AMP_GT_GT] = ACTIONS(3429), + [anon_sym_LT_AMP] = ACTIONS(3429), + [anon_sym_GT_AMP] = ACTIONS(3429), + [sym__special_characters] = ACTIONS(4405), + [anon_sym_DQUOTE] = ACTIONS(3429), + [sym_raw_string] = ACTIONS(3429), + [anon_sym_DOLLAR] = ACTIONS(4405), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3429), + [anon_sym_BQUOTE] = ACTIONS(3429), + [anon_sym_LT_LPAREN] = ACTIONS(3429), + [anon_sym_GT_LPAREN] = ACTIONS(3429), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3431), + }, + [2415] = { + [sym_file_descriptor] = ACTIONS(3433), + [sym__concat] = ACTIONS(3433), + [sym_variable_name] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_PIPE_AMP] = ACTIONS(3433), + [anon_sym_AMP_AMP] = ACTIONS(3433), + [anon_sym_PIPE_PIPE] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_GT_GT] = ACTIONS(3433), + [anon_sym_AMP_GT] = ACTIONS(4407), + [anon_sym_AMP_GT_GT] = ACTIONS(3433), + [anon_sym_LT_AMP] = ACTIONS(3433), + [anon_sym_GT_AMP] = ACTIONS(3433), + [sym__special_characters] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(3433), + [sym_raw_string] = ACTIONS(3433), + [anon_sym_DOLLAR] = ACTIONS(4407), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3433), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3433), + [anon_sym_BQUOTE] = ACTIONS(3433), + [anon_sym_LT_LPAREN] = ACTIONS(3433), + [anon_sym_GT_LPAREN] = ACTIONS(3433), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(3435), + }, + [2416] = { + [sym__concat] = ACTIONS(1157), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_PIPE_AMP] = ACTIONS(1157), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + }, + [2417] = { + [aux_sym_concatenation_repeat1] = STATE(2417), + [sym__concat] = ACTIONS(6080), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_PIPE_AMP] = ACTIONS(1157), + [anon_sym_AMP_AMP] = ACTIONS(1157), + [anon_sym_PIPE_PIPE] = ACTIONS(1157), + [anon_sym_BQUOTE] = ACTIONS(1157), + [sym_comment] = ACTIONS(48), + }, + [2418] = { + [sym__concat] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_PIPE_AMP] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1196), + [anon_sym_PIPE_PIPE] = ACTIONS(1196), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_comment] = ACTIONS(48), + }, + [2419] = { + [sym_concatenation] = STATE(2649), + [sym_string] = STATE(2648), + [sym_simple_expansion] = STATE(2648), + [sym_expansion] = STATE(2648), + [sym_command_substitution] = STATE(2648), + [sym_process_substitution] = STATE(2648), + [anon_sym_RBRACE] = ACTIONS(6083), + [sym__special_characters] = ACTIONS(6085), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(6087), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(6089), + }, + [2420] = { + [sym__concat] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_PIPE_AMP] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1241), + [anon_sym_PIPE_PIPE] = ACTIONS(1241), + [anon_sym_BQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(48), + }, + [2421] = { + [sym_concatenation] = STATE(2653), + [sym_string] = STATE(2652), + [sym_simple_expansion] = STATE(2652), + [sym_expansion] = STATE(2652), + [sym_command_substitution] = STATE(2652), + [sym_process_substitution] = STATE(2652), + [anon_sym_RBRACE] = ACTIONS(6091), + [sym__special_characters] = ACTIONS(6093), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(6095), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(6097), + }, + [2422] = { + [anon_sym_EQ] = ACTIONS(6099), + [anon_sym_LBRACK] = ACTIONS(520), + [sym_comment] = ACTIONS(48), + }, + [2423] = { + [anon_sym_RBRACE] = ACTIONS(6101), + [anon_sym_EQ] = ACTIONS(6103), + [anon_sym_COLON] = ACTIONS(6105), + [anon_sym_COLON_QMARK] = ACTIONS(6103), + [anon_sym_COLON_DASH] = ACTIONS(6103), + [anon_sym_PERCENT] = ACTIONS(6103), + [anon_sym_SLASH] = ACTIONS(6103), + [anon_sym_DASH] = ACTIONS(6103), + [sym_comment] = ACTIONS(48), + }, + [2424] = { + [anon_sym_RBRACE] = ACTIONS(6107), + [anon_sym_EQ] = ACTIONS(6109), + [anon_sym_COLON] = ACTIONS(6111), + [anon_sym_COLON_QMARK] = ACTIONS(6109), + [anon_sym_COLON_DASH] = ACTIONS(6109), + [anon_sym_PERCENT] = ACTIONS(6109), + [anon_sym_SLASH] = ACTIONS(6109), + [anon_sym_DASH] = ACTIONS(6109), + [sym_comment] = ACTIONS(48), + }, + [2425] = { + [anon_sym_RBRACE] = ACTIONS(6083), + [anon_sym_EQ] = ACTIONS(6099), + [anon_sym_COLON] = ACTIONS(6113), + [anon_sym_COLON_QMARK] = ACTIONS(6099), + [anon_sym_COLON_DASH] = ACTIONS(6099), + [anon_sym_PERCENT] = ACTIONS(6099), + [anon_sym_SLASH] = ACTIONS(6099), + [anon_sym_DASH] = ACTIONS(6099), + [sym_comment] = ACTIONS(48), + }, + [2426] = { + [sym__concat] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_PIPE_AMP] = ACTIONS(1269), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_BQUOTE] = ACTIONS(1269), + [sym_comment] = ACTIONS(48), + }, + [2427] = { + [sym_concatenation] = STATE(2662), + [sym_string] = STATE(2661), + [sym_simple_expansion] = STATE(2661), + [sym_expansion] = STATE(2661), + [sym_command_substitution] = STATE(2661), + [sym_process_substitution] = STATE(2661), + [anon_sym_RBRACE] = ACTIONS(6115), + [sym__special_characters] = ACTIONS(6117), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(6119), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(6121), + }, + [2428] = { + [sym__concat] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1281), + [sym_comment] = ACTIONS(48), + }, + [2429] = { + [sym__concat] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_PIPE_AMP] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(1379), + [anon_sym_BQUOTE] = ACTIONS(1379), + [sym_comment] = ACTIONS(48), + }, + [2430] = { + [sym__concat] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_PIPE_AMP] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [anon_sym_BQUOTE] = ACTIONS(1513), + [sym_comment] = ACTIONS(48), + }, + [2431] = { + [sym__concat] = ACTIONS(2176), + [sym_variable_name] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(3271), + [anon_sym_PIPE_AMP] = ACTIONS(2176), + [anon_sym_AMP_AMP] = ACTIONS(2176), + [anon_sym_PIPE_PIPE] = ACTIONS(3271), + [anon_sym_BQUOTE] = ACTIONS(2176), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3271), + [sym_word] = ACTIONS(2178), + }, + [2432] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6123), + [sym_comment] = ACTIONS(48), + }, + [2433] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6125), + [sym_comment] = ACTIONS(48), + }, + [2434] = { + [anon_sym_RBRACE] = ACTIONS(6125), + [sym_comment] = ACTIONS(48), + }, + [2435] = { + [sym__concat] = ACTIONS(2214), + [sym_variable_name] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_PIPE_AMP] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(3277), + [anon_sym_BQUOTE] = ACTIONS(2214), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3277), + [sym_word] = ACTIONS(2216), + }, + [2436] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6127), + [sym_comment] = ACTIONS(48), + }, + [2437] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6129), + [sym_comment] = ACTIONS(48), + }, + [2438] = { + [anon_sym_RBRACE] = ACTIONS(6129), + [sym_comment] = ACTIONS(48), + }, + [2439] = { + [sym_concatenation] = STATE(2669), + [sym_string] = STATE(2668), + [sym_simple_expansion] = STATE(2668), + [sym_expansion] = STATE(2668), + [sym_command_substitution] = STATE(2668), + [sym_process_substitution] = STATE(2668), + [anon_sym_RBRACE] = ACTIONS(6125), + [sym__special_characters] = ACTIONS(6131), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(6133), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(6135), + }, + [2440] = { + [sym__concat] = ACTIONS(2228), + [sym_variable_name] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(3289), + [anon_sym_PIPE_AMP] = ACTIONS(2228), + [anon_sym_AMP_AMP] = ACTIONS(2228), + [anon_sym_PIPE_PIPE] = ACTIONS(3289), + [anon_sym_BQUOTE] = ACTIONS(2228), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3289), + [sym_word] = ACTIONS(2230), + }, + [2441] = { + [sym_concatenation] = STATE(2673), + [sym_string] = STATE(2672), + [sym_simple_expansion] = STATE(2672), + [sym_expansion] = STATE(2672), + [sym_command_substitution] = STATE(2672), + [sym_process_substitution] = STATE(2672), + [anon_sym_RBRACE] = ACTIONS(6137), + [sym__special_characters] = ACTIONS(6139), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(6141), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(6143), + }, + [2442] = { + [sym__concat] = ACTIONS(2240), + [sym_variable_name] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_PIPE_AMP] = ACTIONS(2240), + [anon_sym_AMP_AMP] = ACTIONS(2240), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_BQUOTE] = ACTIONS(2240), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3299), + [sym_word] = ACTIONS(2242), + }, + [2443] = { + [sym_concatenation] = STATE(2677), + [sym_string] = STATE(2676), + [sym_simple_expansion] = STATE(2676), + [sym_expansion] = STATE(2676), + [sym_command_substitution] = STATE(2676), + [sym_process_substitution] = STATE(2676), + [anon_sym_RBRACE] = ACTIONS(6145), + [sym__special_characters] = ACTIONS(6147), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(6149), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(6151), + }, + [2444] = { + [sym__concat] = ACTIONS(2252), + [sym_variable_name] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_PIPE_AMP] = ACTIONS(2252), + [anon_sym_AMP_AMP] = ACTIONS(2252), + [anon_sym_PIPE_PIPE] = ACTIONS(3309), + [anon_sym_BQUOTE] = ACTIONS(2252), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3309), + [sym_word] = ACTIONS(2254), + }, + [2445] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6153), + [sym_comment] = ACTIONS(48), + }, + [2446] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6155), + [sym_comment] = ACTIONS(48), + }, + [2447] = { + [anon_sym_RBRACE] = ACTIONS(6155), + [sym_comment] = ACTIONS(48), + }, + [2448] = { + [sym_file_descriptor] = ACTIONS(3353), + [sym__concat] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(4381), + [anon_sym_PIPE_AMP] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_PIPE_PIPE] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(4381), + [anon_sym_GT] = ACTIONS(4381), + [anon_sym_GT_GT] = ACTIONS(3353), + [anon_sym_AMP_GT] = ACTIONS(4381), + [anon_sym_AMP_GT_GT] = ACTIONS(3353), + [anon_sym_LT_AMP] = ACTIONS(3353), + [anon_sym_GT_AMP] = ACTIONS(3353), + [anon_sym_LT_LT] = ACTIONS(4381), + [anon_sym_LT_LT_DASH] = ACTIONS(3353), + [anon_sym_LT_LT_LT] = ACTIONS(3353), + [anon_sym_BQUOTE] = ACTIONS(3353), + [sym_comment] = ACTIONS(48), + }, + [2449] = { + [sym_file_descriptor] = ACTIONS(3359), + [sym__concat] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(4383), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(4383), + [anon_sym_GT] = ACTIONS(4383), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_AMP_GT] = ACTIONS(4383), + [anon_sym_AMP_GT_GT] = ACTIONS(3359), + [anon_sym_LT_AMP] = ACTIONS(3359), + [anon_sym_GT_AMP] = ACTIONS(3359), + [anon_sym_LT_LT] = ACTIONS(4383), + [anon_sym_LT_LT_DASH] = ACTIONS(3359), + [anon_sym_LT_LT_LT] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(48), + }, + [2450] = { + [sym_file_descriptor] = ACTIONS(3401), + [sym__concat] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(4385), + [anon_sym_PIPE_AMP] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_PIPE_PIPE] = ACTIONS(3401), + [anon_sym_LT] = ACTIONS(4385), + [anon_sym_GT] = ACTIONS(4385), + [anon_sym_GT_GT] = ACTIONS(3401), + [anon_sym_AMP_GT] = ACTIONS(4385), + [anon_sym_AMP_GT_GT] = ACTIONS(3401), + [anon_sym_LT_AMP] = ACTIONS(3401), + [anon_sym_GT_AMP] = ACTIONS(3401), + [anon_sym_LT_LT] = ACTIONS(4385), + [anon_sym_LT_LT_DASH] = ACTIONS(3401), + [anon_sym_LT_LT_LT] = ACTIONS(3401), + [anon_sym_BQUOTE] = ACTIONS(3401), + [sym_comment] = ACTIONS(48), + }, + [2451] = { + [sym_file_descriptor] = ACTIONS(3405), + [sym__concat] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(4387), + [anon_sym_PIPE_AMP] = ACTIONS(3405), + [anon_sym_AMP_AMP] = ACTIONS(3405), + [anon_sym_PIPE_PIPE] = ACTIONS(3405), + [anon_sym_LT] = ACTIONS(4387), + [anon_sym_GT] = ACTIONS(4387), + [anon_sym_GT_GT] = ACTIONS(3405), + [anon_sym_AMP_GT] = ACTIONS(4387), + [anon_sym_AMP_GT_GT] = ACTIONS(3405), + [anon_sym_LT_AMP] = ACTIONS(3405), + [anon_sym_GT_AMP] = ACTIONS(3405), + [anon_sym_LT_LT] = ACTIONS(4387), + [anon_sym_LT_LT_DASH] = ACTIONS(3405), + [anon_sym_LT_LT_LT] = ACTIONS(3405), + [anon_sym_BQUOTE] = ACTIONS(3405), + [sym_comment] = ACTIONS(48), + }, + [2452] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6157), + [sym_comment] = ACTIONS(48), + }, + [2453] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6159), + [sym_comment] = ACTIONS(48), + }, + [2454] = { + [anon_sym_RBRACE] = ACTIONS(6159), + [sym_comment] = ACTIONS(48), + }, + [2455] = { + [sym_file_descriptor] = ACTIONS(3413), + [sym__concat] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(4393), + [anon_sym_PIPE_AMP] = ACTIONS(3413), + [anon_sym_AMP_AMP] = ACTIONS(3413), + [anon_sym_PIPE_PIPE] = ACTIONS(3413), + [anon_sym_LT] = ACTIONS(4393), + [anon_sym_GT] = ACTIONS(4393), + [anon_sym_GT_GT] = ACTIONS(3413), + [anon_sym_AMP_GT] = ACTIONS(4393), + [anon_sym_AMP_GT_GT] = ACTIONS(3413), + [anon_sym_LT_AMP] = ACTIONS(3413), + [anon_sym_GT_AMP] = ACTIONS(3413), + [anon_sym_LT_LT] = ACTIONS(4393), + [anon_sym_LT_LT_DASH] = ACTIONS(3413), + [anon_sym_LT_LT_LT] = ACTIONS(3413), + [anon_sym_BQUOTE] = ACTIONS(3413), + [sym_comment] = ACTIONS(48), + }, + [2456] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6161), + [sym_comment] = ACTIONS(48), + }, + [2457] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6163), + [sym_comment] = ACTIONS(48), + }, + [2458] = { + [anon_sym_RBRACE] = ACTIONS(6163), + [sym_comment] = ACTIONS(48), + }, + [2459] = { + [sym_file_descriptor] = ACTIONS(3421), + [sym__concat] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(4399), + [anon_sym_PIPE_AMP] = ACTIONS(3421), + [anon_sym_AMP_AMP] = ACTIONS(3421), + [anon_sym_PIPE_PIPE] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_GT] = ACTIONS(4399), + [anon_sym_GT_GT] = ACTIONS(3421), + [anon_sym_AMP_GT] = ACTIONS(4399), + [anon_sym_AMP_GT_GT] = ACTIONS(3421), + [anon_sym_LT_AMP] = ACTIONS(3421), + [anon_sym_GT_AMP] = ACTIONS(3421), + [anon_sym_LT_LT] = ACTIONS(4399), + [anon_sym_LT_LT_DASH] = ACTIONS(3421), + [anon_sym_LT_LT_LT] = ACTIONS(3421), + [anon_sym_BQUOTE] = ACTIONS(3421), + [sym_comment] = ACTIONS(48), + }, + [2460] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6165), + [sym_comment] = ACTIONS(48), + }, + [2461] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6167), + [sym_comment] = ACTIONS(48), + }, + [2462] = { + [anon_sym_RBRACE] = ACTIONS(6167), + [sym_comment] = ACTIONS(48), + }, + [2463] = { + [sym_file_descriptor] = ACTIONS(3429), + [sym__concat] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(4405), + [anon_sym_PIPE_AMP] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(4405), + [anon_sym_GT] = ACTIONS(4405), + [anon_sym_GT_GT] = ACTIONS(3429), + [anon_sym_AMP_GT] = ACTIONS(4405), + [anon_sym_AMP_GT_GT] = ACTIONS(3429), + [anon_sym_LT_AMP] = ACTIONS(3429), + [anon_sym_GT_AMP] = ACTIONS(3429), + [anon_sym_LT_LT] = ACTIONS(4405), + [anon_sym_LT_LT_DASH] = ACTIONS(3429), + [anon_sym_LT_LT_LT] = ACTIONS(3429), + [anon_sym_BQUOTE] = ACTIONS(3429), + [sym_comment] = ACTIONS(48), + }, + [2464] = { + [sym_file_descriptor] = ACTIONS(3433), + [sym__concat] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_PIPE_AMP] = ACTIONS(3433), + [anon_sym_AMP_AMP] = ACTIONS(3433), + [anon_sym_PIPE_PIPE] = ACTIONS(3433), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_GT] = ACTIONS(4407), + [anon_sym_GT_GT] = ACTIONS(3433), + [anon_sym_AMP_GT] = ACTIONS(4407), + [anon_sym_AMP_GT_GT] = ACTIONS(3433), + [anon_sym_LT_AMP] = ACTIONS(3433), + [anon_sym_GT_AMP] = ACTIONS(3433), + [anon_sym_LT_LT] = ACTIONS(4407), + [anon_sym_LT_LT_DASH] = ACTIONS(3433), + [anon_sym_LT_LT_LT] = ACTIONS(3433), + [anon_sym_BQUOTE] = ACTIONS(3433), + [sym_comment] = ACTIONS(48), + }, + [2465] = { + [sym_file_descriptor] = ACTIONS(4464), + [sym__concat] = ACTIONS(4464), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_SEMI_SEMI] = ACTIONS(4466), + [anon_sym_PIPE_AMP] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_PIPE_PIPE] = ACTIONS(4466), + [anon_sym_LT] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4466), + [anon_sym_GT_GT] = ACTIONS(4466), + [anon_sym_AMP_GT] = ACTIONS(4466), + [anon_sym_AMP_GT_GT] = ACTIONS(4466), + [anon_sym_LT_AMP] = ACTIONS(4466), + [anon_sym_GT_AMP] = ACTIONS(4466), + [anon_sym_LT_LT] = ACTIONS(4466), + [anon_sym_LT_LT_DASH] = ACTIONS(4466), + [anon_sym_LT_LT_LT] = ACTIONS(4466), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym_LF] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4466), + }, + [2466] = { + [sym_file_descriptor] = ACTIONS(4468), + [sym__concat] = ACTIONS(4468), + [anon_sym_PIPE] = ACTIONS(4470), + [anon_sym_SEMI_SEMI] = ACTIONS(4470), + [anon_sym_PIPE_AMP] = ACTIONS(4470), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE_PIPE] = ACTIONS(4470), + [anon_sym_LT] = ACTIONS(4470), + [anon_sym_GT] = ACTIONS(4470), + [anon_sym_GT_GT] = ACTIONS(4470), + [anon_sym_AMP_GT] = ACTIONS(4470), + [anon_sym_AMP_GT_GT] = ACTIONS(4470), + [anon_sym_LT_AMP] = ACTIONS(4470), + [anon_sym_GT_AMP] = ACTIONS(4470), + [anon_sym_LT_LT] = ACTIONS(4470), + [anon_sym_LT_LT_DASH] = ACTIONS(4470), + [anon_sym_LT_LT_LT] = ACTIONS(4470), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_LF] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4470), + }, + [2467] = { + [sym_file_descriptor] = ACTIONS(4472), + [sym__concat] = ACTIONS(4472), + [anon_sym_PIPE] = ACTIONS(4474), + [anon_sym_SEMI_SEMI] = ACTIONS(4474), + [anon_sym_PIPE_AMP] = ACTIONS(4474), + [anon_sym_AMP_AMP] = ACTIONS(4474), + [anon_sym_PIPE_PIPE] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4474), + [anon_sym_GT] = ACTIONS(4474), + [anon_sym_GT_GT] = ACTIONS(4474), + [anon_sym_AMP_GT] = ACTIONS(4474), + [anon_sym_AMP_GT_GT] = ACTIONS(4474), + [anon_sym_LT_AMP] = ACTIONS(4474), + [anon_sym_GT_AMP] = ACTIONS(4474), + [anon_sym_LT_LT] = ACTIONS(4474), + [anon_sym_LT_LT_DASH] = ACTIONS(4474), + [anon_sym_LT_LT_LT] = ACTIONS(4474), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym_LF] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4474), + }, + [2468] = { + [sym_file_descriptor] = ACTIONS(4476), + [sym__concat] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(4478), + [anon_sym_SEMI_SEMI] = ACTIONS(4478), + [anon_sym_PIPE_AMP] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4478), + [anon_sym_GT] = ACTIONS(4478), + [anon_sym_GT_GT] = ACTIONS(4478), + [anon_sym_AMP_GT] = ACTIONS(4478), + [anon_sym_AMP_GT_GT] = ACTIONS(4478), + [anon_sym_LT_AMP] = ACTIONS(4478), + [anon_sym_GT_AMP] = ACTIONS(4478), + [anon_sym_LT_LT] = ACTIONS(4478), + [anon_sym_LT_LT_DASH] = ACTIONS(4478), + [anon_sym_LT_LT_LT] = ACTIONS(4478), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_LF] = ACTIONS(4478), + [anon_sym_AMP] = ACTIONS(4478), + }, + [2469] = { + [sym_file_descriptor] = ACTIONS(4480), + [sym__concat] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(4482), + [anon_sym_SEMI_SEMI] = ACTIONS(4482), + [anon_sym_PIPE_AMP] = ACTIONS(4482), + [anon_sym_AMP_AMP] = ACTIONS(4482), + [anon_sym_PIPE_PIPE] = ACTIONS(4482), + [anon_sym_LT] = ACTIONS(4482), + [anon_sym_GT] = ACTIONS(4482), + [anon_sym_GT_GT] = ACTIONS(4482), + [anon_sym_AMP_GT] = ACTIONS(4482), + [anon_sym_AMP_GT_GT] = ACTIONS(4482), + [anon_sym_LT_AMP] = ACTIONS(4482), + [anon_sym_GT_AMP] = ACTIONS(4482), + [anon_sym_LT_LT] = ACTIONS(4482), + [anon_sym_LT_LT_DASH] = ACTIONS(4482), + [anon_sym_LT_LT_LT] = ACTIONS(4482), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4482), + [anon_sym_LF] = ACTIONS(4482), + [anon_sym_AMP] = ACTIONS(4482), + }, + [2470] = { + [sym_file_descriptor] = ACTIONS(4484), + [sym__concat] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(4486), + [anon_sym_SEMI_SEMI] = ACTIONS(4486), + [anon_sym_PIPE_AMP] = ACTIONS(4486), + [anon_sym_AMP_AMP] = ACTIONS(4486), + [anon_sym_PIPE_PIPE] = ACTIONS(4486), + [anon_sym_LT] = ACTIONS(4486), + [anon_sym_GT] = ACTIONS(4486), + [anon_sym_GT_GT] = ACTIONS(4486), + [anon_sym_AMP_GT] = ACTIONS(4486), + [anon_sym_AMP_GT_GT] = ACTIONS(4486), + [anon_sym_LT_AMP] = ACTIONS(4486), + [anon_sym_GT_AMP] = ACTIONS(4486), + [anon_sym_LT_LT] = ACTIONS(4486), + [anon_sym_LT_LT_DASH] = ACTIONS(4486), + [anon_sym_LT_LT_LT] = ACTIONS(4486), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4486), + [anon_sym_LF] = ACTIONS(4486), + [anon_sym_AMP] = ACTIONS(4486), + }, + [2471] = { + [sym__heredoc_middle] = ACTIONS(3353), + [sym__heredoc_end] = ACTIONS(3353), + [anon_sym_DOLLAR] = ACTIONS(4381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3353), + [sym_comment] = ACTIONS(48), + }, + [2472] = { + [sym__heredoc_middle] = ACTIONS(3359), + [sym__heredoc_end] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(4383), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [sym_comment] = ACTIONS(48), + }, + [2473] = { + [sym__heredoc_middle] = ACTIONS(3401), + [sym__heredoc_end] = ACTIONS(3401), + [anon_sym_DOLLAR] = ACTIONS(4385), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3401), + [sym_comment] = ACTIONS(48), + }, + [2474] = { + [sym__heredoc_middle] = ACTIONS(3405), + [sym__heredoc_end] = ACTIONS(3405), + [anon_sym_DOLLAR] = ACTIONS(4387), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3405), + [sym_comment] = ACTIONS(48), + }, + [2475] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6169), + [sym_comment] = ACTIONS(48), + }, + [2476] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6171), + [sym_comment] = ACTIONS(48), + }, + [2477] = { + [anon_sym_RBRACE] = ACTIONS(6171), + [sym_comment] = ACTIONS(48), + }, + [2478] = { + [sym__heredoc_middle] = ACTIONS(3413), + [sym__heredoc_end] = ACTIONS(3413), + [anon_sym_DOLLAR] = ACTIONS(4393), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3413), + [sym_comment] = ACTIONS(48), + }, + [2479] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6173), + [sym_comment] = ACTIONS(48), + }, + [2480] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6175), + [sym_comment] = ACTIONS(48), + }, + [2481] = { + [anon_sym_RBRACE] = ACTIONS(6175), + [sym_comment] = ACTIONS(48), + }, + [2482] = { + [sym__heredoc_middle] = ACTIONS(3421), + [sym__heredoc_end] = ACTIONS(3421), + [anon_sym_DOLLAR] = ACTIONS(4399), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3421), + [sym_comment] = ACTIONS(48), + }, + [2483] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6177), + [sym_comment] = ACTIONS(48), + }, + [2484] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6179), + [sym_comment] = ACTIONS(48), + }, + [2485] = { + [anon_sym_RBRACE] = ACTIONS(6179), + [sym_comment] = ACTIONS(48), + }, + [2486] = { + [sym__heredoc_middle] = ACTIONS(3429), + [sym__heredoc_end] = ACTIONS(3429), + [anon_sym_DOLLAR] = ACTIONS(4405), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3429), + [sym_comment] = ACTIONS(48), + }, + [2487] = { + [sym__heredoc_middle] = ACTIONS(3433), + [sym__heredoc_end] = ACTIONS(3433), + [anon_sym_DOLLAR] = ACTIONS(4407), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3433), + [sym_comment] = ACTIONS(48), + }, + [2488] = { + [sym__concat] = ACTIONS(4464), + [anon_sym_RPAREN] = ACTIONS(4464), + [sym__special_characters] = ACTIONS(5310), + [anon_sym_DQUOTE] = ACTIONS(4464), + [sym_raw_string] = ACTIONS(4464), + [anon_sym_DOLLAR] = ACTIONS(5310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4464), + [anon_sym_BQUOTE] = ACTIONS(4464), + [anon_sym_LT_LPAREN] = ACTIONS(4464), + [anon_sym_GT_LPAREN] = ACTIONS(4464), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5310), + }, + [2489] = { + [sym__concat] = ACTIONS(4468), + [anon_sym_RPAREN] = ACTIONS(4468), + [sym__special_characters] = ACTIONS(5312), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym_raw_string] = ACTIONS(4468), + [anon_sym_DOLLAR] = ACTIONS(5312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4468), + [anon_sym_BQUOTE] = ACTIONS(4468), + [anon_sym_LT_LPAREN] = ACTIONS(4468), + [anon_sym_GT_LPAREN] = ACTIONS(4468), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5312), + }, + [2490] = { + [sym__concat] = ACTIONS(4472), + [anon_sym_RPAREN] = ACTIONS(4472), + [sym__special_characters] = ACTIONS(5314), + [anon_sym_DQUOTE] = ACTIONS(4472), + [sym_raw_string] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(5314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4472), + [anon_sym_BQUOTE] = ACTIONS(4472), + [anon_sym_LT_LPAREN] = ACTIONS(4472), + [anon_sym_GT_LPAREN] = ACTIONS(4472), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5314), + }, + [2491] = { + [sym__concat] = ACTIONS(4476), + [anon_sym_RPAREN] = ACTIONS(4476), + [sym__special_characters] = ACTIONS(5316), + [anon_sym_DQUOTE] = ACTIONS(4476), + [sym_raw_string] = ACTIONS(4476), + [anon_sym_DOLLAR] = ACTIONS(5316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4476), + [anon_sym_BQUOTE] = ACTIONS(4476), + [anon_sym_LT_LPAREN] = ACTIONS(4476), + [anon_sym_GT_LPAREN] = ACTIONS(4476), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5316), + }, + [2492] = { + [sym__concat] = ACTIONS(4480), + [anon_sym_RPAREN] = ACTIONS(4480), + [sym__special_characters] = ACTIONS(5318), + [anon_sym_DQUOTE] = ACTIONS(4480), + [sym_raw_string] = ACTIONS(4480), + [anon_sym_DOLLAR] = ACTIONS(5318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4480), + [anon_sym_LT_LPAREN] = ACTIONS(4480), + [anon_sym_GT_LPAREN] = ACTIONS(4480), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5318), + }, + [2493] = { + [sym__concat] = ACTIONS(4484), + [anon_sym_RPAREN] = ACTIONS(4484), + [sym__special_characters] = ACTIONS(5320), + [anon_sym_DQUOTE] = ACTIONS(4484), + [sym_raw_string] = ACTIONS(4484), + [anon_sym_DOLLAR] = ACTIONS(5320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4484), + [anon_sym_BQUOTE] = ACTIONS(4484), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(5320), + }, + [2494] = { + [sym__concat] = ACTIONS(4464), + [anon_sym_SEMI_SEMI] = ACTIONS(4466), + [sym__special_characters] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4466), + [sym_raw_string] = ACTIONS(4466), + [anon_sym_DOLLAR] = ACTIONS(4466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4466), + [anon_sym_BQUOTE] = ACTIONS(4466), + [anon_sym_LT_LPAREN] = ACTIONS(4466), + [anon_sym_GT_LPAREN] = ACTIONS(4466), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4466), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym_LF] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4466), + }, + [2495] = { + [sym__concat] = ACTIONS(4468), + [anon_sym_SEMI_SEMI] = ACTIONS(4470), + [sym__special_characters] = ACTIONS(4470), + [anon_sym_DQUOTE] = ACTIONS(4470), + [sym_raw_string] = ACTIONS(4470), + [anon_sym_DOLLAR] = ACTIONS(4470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4470), + [anon_sym_BQUOTE] = ACTIONS(4470), + [anon_sym_LT_LPAREN] = ACTIONS(4470), + [anon_sym_GT_LPAREN] = ACTIONS(4470), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4470), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_LF] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4470), + }, + [2496] = { + [sym__concat] = ACTIONS(4472), + [anon_sym_SEMI_SEMI] = ACTIONS(4474), + [sym__special_characters] = ACTIONS(4474), + [anon_sym_DQUOTE] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(4474), + [anon_sym_DOLLAR] = ACTIONS(4474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4474), + [anon_sym_BQUOTE] = ACTIONS(4474), + [anon_sym_LT_LPAREN] = ACTIONS(4474), + [anon_sym_GT_LPAREN] = ACTIONS(4474), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4474), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym_LF] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4474), + }, + [2497] = { + [sym__concat] = ACTIONS(4476), + [anon_sym_SEMI_SEMI] = ACTIONS(4478), + [sym__special_characters] = ACTIONS(4478), + [anon_sym_DQUOTE] = ACTIONS(4478), + [sym_raw_string] = ACTIONS(4478), + [anon_sym_DOLLAR] = ACTIONS(4478), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), + [anon_sym_BQUOTE] = ACTIONS(4478), + [anon_sym_LT_LPAREN] = ACTIONS(4478), + [anon_sym_GT_LPAREN] = ACTIONS(4478), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4478), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_LF] = ACTIONS(4478), + [anon_sym_AMP] = ACTIONS(4478), + }, + [2498] = { + [sym__concat] = ACTIONS(4480), + [anon_sym_SEMI_SEMI] = ACTIONS(4482), + [sym__special_characters] = ACTIONS(4482), + [anon_sym_DQUOTE] = ACTIONS(4482), + [sym_raw_string] = ACTIONS(4482), + [anon_sym_DOLLAR] = ACTIONS(4482), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4482), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4482), + [anon_sym_GT_LPAREN] = ACTIONS(4482), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4482), + [anon_sym_LF] = ACTIONS(4482), + [anon_sym_AMP] = ACTIONS(4482), + }, + [2499] = { + [sym__concat] = ACTIONS(4484), + [anon_sym_SEMI_SEMI] = ACTIONS(4486), + [sym__special_characters] = ACTIONS(4486), + [anon_sym_DQUOTE] = ACTIONS(4486), + [sym_raw_string] = ACTIONS(4486), + [anon_sym_DOLLAR] = ACTIONS(4486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4486), + [anon_sym_BQUOTE] = ACTIONS(4486), + [anon_sym_LT_LPAREN] = ACTIONS(4486), + [anon_sym_GT_LPAREN] = ACTIONS(4486), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4486), + [anon_sym_SEMI] = ACTIONS(4486), + [anon_sym_LF] = ACTIONS(4486), + [anon_sym_AMP] = ACTIONS(4486), + }, + [2500] = { + [anon_sym_esac] = ACTIONS(6181), + [sym__special_characters] = ACTIONS(6181), + [anon_sym_DQUOTE] = ACTIONS(6183), + [sym_raw_string] = ACTIONS(6183), + [anon_sym_DOLLAR] = ACTIONS(6181), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6183), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6183), + [anon_sym_BQUOTE] = ACTIONS(6183), + [anon_sym_LT_LPAREN] = ACTIONS(6183), + [anon_sym_GT_LPAREN] = ACTIONS(6183), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(6185), + }, + [2501] = { + [anon_sym_esac] = ACTIONS(6187), + [sym__special_characters] = ACTIONS(6187), + [anon_sym_DQUOTE] = ACTIONS(6189), + [sym_raw_string] = ACTIONS(6189), + [anon_sym_DOLLAR] = ACTIONS(6187), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6189), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6189), + [anon_sym_BQUOTE] = ACTIONS(6189), + [anon_sym_LT_LPAREN] = ACTIONS(6189), + [anon_sym_GT_LPAREN] = ACTIONS(6189), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(6191), + }, + [2502] = { + [sym__concat] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(3353), + [anon_sym_RPAREN] = ACTIONS(3353), + [sym_comment] = ACTIONS(48), + }, + [2503] = { + [sym__concat] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_RPAREN] = ACTIONS(3359), + [sym_comment] = ACTIONS(48), + }, + [2504] = { + [sym__concat] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(3401), + [anon_sym_RPAREN] = ACTIONS(3401), + [sym_comment] = ACTIONS(48), + }, + [2505] = { + [sym__concat] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(3405), + [anon_sym_RPAREN] = ACTIONS(3405), + [sym_comment] = ACTIONS(48), + }, + [2506] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6193), + [sym_comment] = ACTIONS(48), + }, + [2507] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6195), + [sym_comment] = ACTIONS(48), + }, + [2508] = { + [anon_sym_RBRACE] = ACTIONS(6195), + [sym_comment] = ACTIONS(48), + }, + [2509] = { + [sym__concat] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(3413), + [anon_sym_RPAREN] = ACTIONS(3413), + [sym_comment] = ACTIONS(48), + }, + [2510] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6197), + [sym_comment] = ACTIONS(48), + }, + [2511] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6199), + [sym_comment] = ACTIONS(48), + }, + [2512] = { + [anon_sym_RBRACE] = ACTIONS(6199), + [sym_comment] = ACTIONS(48), + }, + [2513] = { + [sym__concat] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(3421), + [anon_sym_RPAREN] = ACTIONS(3421), + [sym_comment] = ACTIONS(48), + }, + [2514] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6201), + [sym_comment] = ACTIONS(48), + }, + [2515] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6203), + [sym_comment] = ACTIONS(48), + }, + [2516] = { + [anon_sym_RBRACE] = ACTIONS(6203), + [sym_comment] = ACTIONS(48), + }, + [2517] = { + [sym__concat] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3429), + [anon_sym_RPAREN] = ACTIONS(3429), + [sym_comment] = ACTIONS(48), + }, + [2518] = { + [sym__concat] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(3433), + [anon_sym_RPAREN] = ACTIONS(3433), + [sym_comment] = ACTIONS(48), + }, + [2519] = { + [sym__concat] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(3355), + [anon_sym_SEMI_SEMI] = ACTIONS(3355), + [anon_sym_PIPE_AMP] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_LF] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3355), + }, + [2520] = { + [sym__concat] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3361), + [anon_sym_SEMI_SEMI] = ACTIONS(3361), + [anon_sym_PIPE_AMP] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_LF] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3361), + }, + [2521] = { + [sym__concat] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(3403), + [anon_sym_SEMI_SEMI] = ACTIONS(3403), + [anon_sym_PIPE_AMP] = ACTIONS(3403), + [anon_sym_AMP_AMP] = ACTIONS(3403), + [anon_sym_PIPE_PIPE] = ACTIONS(3403), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_LF] = ACTIONS(3403), + [anon_sym_AMP] = ACTIONS(3403), + }, + [2522] = { + [sym__concat] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(3407), + [anon_sym_SEMI_SEMI] = ACTIONS(3407), + [anon_sym_PIPE_AMP] = ACTIONS(3407), + [anon_sym_AMP_AMP] = ACTIONS(3407), + [anon_sym_PIPE_PIPE] = ACTIONS(3407), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_LF] = ACTIONS(3407), + [anon_sym_AMP] = ACTIONS(3407), + }, + [2523] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6205), + [sym_comment] = ACTIONS(48), + }, + [2524] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6207), + [sym_comment] = ACTIONS(48), + }, + [2525] = { + [anon_sym_RBRACE] = ACTIONS(6207), + [sym_comment] = ACTIONS(48), + }, + [2526] = { + [sym__concat] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(3415), + [anon_sym_SEMI_SEMI] = ACTIONS(3415), + [anon_sym_PIPE_AMP] = ACTIONS(3415), + [anon_sym_AMP_AMP] = ACTIONS(3415), + [anon_sym_PIPE_PIPE] = ACTIONS(3415), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_LF] = ACTIONS(3415), + [anon_sym_AMP] = ACTIONS(3415), + }, + [2527] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6209), + [sym_comment] = ACTIONS(48), + }, + [2528] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6211), + [sym_comment] = ACTIONS(48), + }, + [2529] = { + [anon_sym_RBRACE] = ACTIONS(6211), + [sym_comment] = ACTIONS(48), + }, + [2530] = { + [sym__concat] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(3423), + [anon_sym_SEMI_SEMI] = ACTIONS(3423), + [anon_sym_PIPE_AMP] = ACTIONS(3423), + [anon_sym_AMP_AMP] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_LF] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3423), + }, + [2531] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6213), + [sym_comment] = ACTIONS(48), + }, + [2532] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6215), + [sym_comment] = ACTIONS(48), + }, + [2533] = { + [anon_sym_RBRACE] = ACTIONS(6215), + [sym_comment] = ACTIONS(48), + }, + [2534] = { + [sym__concat] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_SEMI_SEMI] = ACTIONS(3431), + [anon_sym_PIPE_AMP] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_PIPE_PIPE] = ACTIONS(3431), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_LF] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + }, + [2535] = { + [sym__concat] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(3435), + [anon_sym_SEMI_SEMI] = ACTIONS(3435), + [anon_sym_PIPE_AMP] = ACTIONS(3435), + [anon_sym_AMP_AMP] = ACTIONS(3435), + [anon_sym_PIPE_PIPE] = ACTIONS(3435), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_LF] = ACTIONS(3435), + [anon_sym_AMP] = ACTIONS(3435), + }, + [2536] = { + [sym_file_descriptor] = ACTIONS(4464), + [sym__concat] = ACTIONS(4464), + [sym_variable_name] = ACTIONS(4464), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_RPAREN] = ACTIONS(4466), + [anon_sym_SEMI_SEMI] = ACTIONS(4466), + [anon_sym_PIPE_AMP] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_PIPE_PIPE] = ACTIONS(4466), + [anon_sym_LT] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4466), + [anon_sym_GT_GT] = ACTIONS(4466), + [anon_sym_AMP_GT] = ACTIONS(4466), + [anon_sym_AMP_GT_GT] = ACTIONS(4466), + [anon_sym_LT_AMP] = ACTIONS(4466), + [anon_sym_GT_AMP] = ACTIONS(4466), + [sym__special_characters] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4466), + [sym_raw_string] = ACTIONS(4466), + [anon_sym_DOLLAR] = ACTIONS(4466), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4466), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4466), + [anon_sym_BQUOTE] = ACTIONS(4466), + [anon_sym_LT_LPAREN] = ACTIONS(4466), + [anon_sym_GT_LPAREN] = ACTIONS(4466), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4466), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym_LF] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4466), + }, + [2537] = { + [sym_file_descriptor] = ACTIONS(4468), + [sym__concat] = ACTIONS(4468), + [sym_variable_name] = ACTIONS(4468), + [anon_sym_PIPE] = ACTIONS(4470), + [anon_sym_RPAREN] = ACTIONS(4470), + [anon_sym_SEMI_SEMI] = ACTIONS(4470), + [anon_sym_PIPE_AMP] = ACTIONS(4470), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE_PIPE] = ACTIONS(4470), + [anon_sym_LT] = ACTIONS(4470), + [anon_sym_GT] = ACTIONS(4470), + [anon_sym_GT_GT] = ACTIONS(4470), + [anon_sym_AMP_GT] = ACTIONS(4470), + [anon_sym_AMP_GT_GT] = ACTIONS(4470), + [anon_sym_LT_AMP] = ACTIONS(4470), + [anon_sym_GT_AMP] = ACTIONS(4470), + [sym__special_characters] = ACTIONS(4470), + [anon_sym_DQUOTE] = ACTIONS(4470), + [sym_raw_string] = ACTIONS(4470), + [anon_sym_DOLLAR] = ACTIONS(4470), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4470), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4470), + [anon_sym_BQUOTE] = ACTIONS(4470), + [anon_sym_LT_LPAREN] = ACTIONS(4470), + [anon_sym_GT_LPAREN] = ACTIONS(4470), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4470), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_LF] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4470), + }, + [2538] = { + [sym_file_descriptor] = ACTIONS(4472), + [sym__concat] = ACTIONS(4472), + [sym_variable_name] = ACTIONS(4472), + [anon_sym_PIPE] = ACTIONS(4474), + [anon_sym_RPAREN] = ACTIONS(4474), + [anon_sym_SEMI_SEMI] = ACTIONS(4474), + [anon_sym_PIPE_AMP] = ACTIONS(4474), + [anon_sym_AMP_AMP] = ACTIONS(4474), + [anon_sym_PIPE_PIPE] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4474), + [anon_sym_GT] = ACTIONS(4474), + [anon_sym_GT_GT] = ACTIONS(4474), + [anon_sym_AMP_GT] = ACTIONS(4474), + [anon_sym_AMP_GT_GT] = ACTIONS(4474), + [anon_sym_LT_AMP] = ACTIONS(4474), + [anon_sym_GT_AMP] = ACTIONS(4474), + [sym__special_characters] = ACTIONS(4474), + [anon_sym_DQUOTE] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(4474), + [anon_sym_DOLLAR] = ACTIONS(4474), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4474), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4474), + [anon_sym_BQUOTE] = ACTIONS(4474), + [anon_sym_LT_LPAREN] = ACTIONS(4474), + [anon_sym_GT_LPAREN] = ACTIONS(4474), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4474), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym_LF] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4474), + }, + [2539] = { + [sym_file_descriptor] = ACTIONS(4476), + [sym__concat] = ACTIONS(4476), + [sym_variable_name] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(4478), + [anon_sym_RPAREN] = ACTIONS(4478), + [anon_sym_SEMI_SEMI] = ACTIONS(4478), + [anon_sym_PIPE_AMP] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4478), + [anon_sym_GT] = ACTIONS(4478), + [anon_sym_GT_GT] = ACTIONS(4478), + [anon_sym_AMP_GT] = ACTIONS(4478), + [anon_sym_AMP_GT_GT] = ACTIONS(4478), + [anon_sym_LT_AMP] = ACTIONS(4478), + [anon_sym_GT_AMP] = ACTIONS(4478), + [sym__special_characters] = ACTIONS(4478), + [anon_sym_DQUOTE] = ACTIONS(4478), + [sym_raw_string] = ACTIONS(4478), + [anon_sym_DOLLAR] = ACTIONS(4478), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4478), + [anon_sym_BQUOTE] = ACTIONS(4478), + [anon_sym_LT_LPAREN] = ACTIONS(4478), + [anon_sym_GT_LPAREN] = ACTIONS(4478), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4478), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_LF] = ACTIONS(4478), + [anon_sym_AMP] = ACTIONS(4478), + }, + [2540] = { + [sym_file_descriptor] = ACTIONS(4480), + [sym__concat] = ACTIONS(4480), + [sym_variable_name] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(4482), + [anon_sym_RPAREN] = ACTIONS(4482), + [anon_sym_SEMI_SEMI] = ACTIONS(4482), + [anon_sym_PIPE_AMP] = ACTIONS(4482), + [anon_sym_AMP_AMP] = ACTIONS(4482), + [anon_sym_PIPE_PIPE] = ACTIONS(4482), + [anon_sym_LT] = ACTIONS(4482), + [anon_sym_GT] = ACTIONS(4482), + [anon_sym_GT_GT] = ACTIONS(4482), + [anon_sym_AMP_GT] = ACTIONS(4482), + [anon_sym_AMP_GT_GT] = ACTIONS(4482), + [anon_sym_LT_AMP] = ACTIONS(4482), + [anon_sym_GT_AMP] = ACTIONS(4482), + [sym__special_characters] = ACTIONS(4482), + [anon_sym_DQUOTE] = ACTIONS(4482), + [sym_raw_string] = ACTIONS(4482), + [anon_sym_DOLLAR] = ACTIONS(4482), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4482), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4482), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4482), + [anon_sym_GT_LPAREN] = ACTIONS(4482), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4482), + [anon_sym_LF] = ACTIONS(4482), + [anon_sym_AMP] = ACTIONS(4482), + }, + [2541] = { + [sym_file_descriptor] = ACTIONS(4484), + [sym__concat] = ACTIONS(4484), + [sym_variable_name] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(4486), + [anon_sym_RPAREN] = ACTIONS(4486), + [anon_sym_SEMI_SEMI] = ACTIONS(4486), + [anon_sym_PIPE_AMP] = ACTIONS(4486), + [anon_sym_AMP_AMP] = ACTIONS(4486), + [anon_sym_PIPE_PIPE] = ACTIONS(4486), + [anon_sym_LT] = ACTIONS(4486), + [anon_sym_GT] = ACTIONS(4486), + [anon_sym_GT_GT] = ACTIONS(4486), + [anon_sym_AMP_GT] = ACTIONS(4486), + [anon_sym_AMP_GT_GT] = ACTIONS(4486), + [anon_sym_LT_AMP] = ACTIONS(4486), + [anon_sym_GT_AMP] = ACTIONS(4486), + [sym__special_characters] = ACTIONS(4486), + [anon_sym_DQUOTE] = ACTIONS(4486), + [sym_raw_string] = ACTIONS(4486), + [anon_sym_DOLLAR] = ACTIONS(4486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4486), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4486), + [anon_sym_BQUOTE] = ACTIONS(4486), + [anon_sym_LT_LPAREN] = ACTIONS(4486), + [anon_sym_GT_LPAREN] = ACTIONS(4486), + [sym_comment] = ACTIONS(110), + [sym_word] = ACTIONS(4486), + [anon_sym_SEMI] = ACTIONS(4486), + [anon_sym_LF] = ACTIONS(4486), + [anon_sym_AMP] = ACTIONS(4486), + }, + [2542] = { + [sym__concat] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_RPAREN] = ACTIONS(2178), + [anon_sym_SEMI_SEMI] = ACTIONS(2178), + [anon_sym_PIPE_AMP] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2178), + [anon_sym_PIPE_PIPE] = ACTIONS(2178), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_LF] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + }, + [2543] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6217), + [sym_comment] = ACTIONS(48), + }, + [2544] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6219), + [sym_comment] = ACTIONS(48), + }, + [2545] = { + [anon_sym_RBRACE] = ACTIONS(6219), + [sym_comment] = ACTIONS(48), + }, + [2546] = { + [sym__concat] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2216), + [anon_sym_RPAREN] = ACTIONS(2216), + [anon_sym_SEMI_SEMI] = ACTIONS(2216), + [anon_sym_PIPE_AMP] = ACTIONS(2216), + [anon_sym_AMP_AMP] = ACTIONS(2216), + [anon_sym_PIPE_PIPE] = ACTIONS(2216), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_LF] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2216), + }, + [2547] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6221), + [sym_comment] = ACTIONS(48), + }, + [2548] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6223), + [sym_comment] = ACTIONS(48), + }, + [2549] = { + [anon_sym_RBRACE] = ACTIONS(6223), + [sym_comment] = ACTIONS(48), + }, + [2550] = { + [sym_concatenation] = STATE(2710), + [sym_string] = STATE(2709), + [sym_simple_expansion] = STATE(2709), + [sym_expansion] = STATE(2709), + [sym_command_substitution] = STATE(2709), + [sym_process_substitution] = STATE(2709), + [anon_sym_RBRACE] = ACTIONS(6219), + [sym__special_characters] = ACTIONS(6225), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(6227), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(6229), + }, + [2551] = { + [sym__concat] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2230), + [anon_sym_RPAREN] = ACTIONS(2230), + [anon_sym_SEMI_SEMI] = ACTIONS(2230), + [anon_sym_PIPE_AMP] = ACTIONS(2230), + [anon_sym_AMP_AMP] = ACTIONS(2230), + [anon_sym_PIPE_PIPE] = ACTIONS(2230), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_LF] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2230), + }, + [2552] = { + [sym_concatenation] = STATE(2714), + [sym_string] = STATE(2713), + [sym_simple_expansion] = STATE(2713), + [sym_expansion] = STATE(2713), + [sym_command_substitution] = STATE(2713), + [sym_process_substitution] = STATE(2713), + [anon_sym_RBRACE] = ACTIONS(6231), + [sym__special_characters] = ACTIONS(6233), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(6235), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(6237), + }, + [2553] = { + [sym__concat] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_RPAREN] = ACTIONS(2242), + [anon_sym_SEMI_SEMI] = ACTIONS(2242), + [anon_sym_PIPE_AMP] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2242), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_LF] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + }, + [2554] = { + [sym_concatenation] = STATE(2718), + [sym_string] = STATE(2717), + [sym_simple_expansion] = STATE(2717), + [sym_expansion] = STATE(2717), + [sym_command_substitution] = STATE(2717), + [sym_process_substitution] = STATE(2717), + [anon_sym_RBRACE] = ACTIONS(6239), + [sym__special_characters] = ACTIONS(6241), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(6243), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(6245), + }, + [2555] = { + [sym__concat] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_RPAREN] = ACTIONS(2254), + [anon_sym_SEMI_SEMI] = ACTIONS(2254), + [anon_sym_PIPE_AMP] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_LF] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + }, + [2556] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6247), + [sym_comment] = ACTIONS(48), + }, + [2557] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6249), + [sym_comment] = ACTIONS(48), + }, + [2558] = { + [anon_sym_RBRACE] = ACTIONS(6249), + [sym_comment] = ACTIONS(48), + }, + [2559] = { + [sym__concat] = ACTIONS(3353), + [sym_variable_name] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(3355), + [anon_sym_RPAREN] = ACTIONS(3355), + [anon_sym_SEMI_SEMI] = ACTIONS(3355), + [anon_sym_PIPE_AMP] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3355), + [sym_word] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_LF] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3355), + }, + [2560] = { + [sym__concat] = ACTIONS(3359), + [sym_variable_name] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3361), + [anon_sym_RPAREN] = ACTIONS(3361), + [anon_sym_SEMI_SEMI] = ACTIONS(3361), + [anon_sym_PIPE_AMP] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3361), + [sym_word] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_LF] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3361), + }, + [2561] = { + [sym__concat] = ACTIONS(3401), + [sym_variable_name] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(3403), + [anon_sym_RPAREN] = ACTIONS(3403), + [anon_sym_SEMI_SEMI] = ACTIONS(3403), + [anon_sym_PIPE_AMP] = ACTIONS(3403), + [anon_sym_AMP_AMP] = ACTIONS(3403), + [anon_sym_PIPE_PIPE] = ACTIONS(3403), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3403), + [sym_word] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_LF] = ACTIONS(3403), + [anon_sym_AMP] = ACTIONS(3403), + }, + [2562] = { + [sym__concat] = ACTIONS(3405), + [sym_variable_name] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(3407), + [anon_sym_RPAREN] = ACTIONS(3407), + [anon_sym_SEMI_SEMI] = ACTIONS(3407), + [anon_sym_PIPE_AMP] = ACTIONS(3407), + [anon_sym_AMP_AMP] = ACTIONS(3407), + [anon_sym_PIPE_PIPE] = ACTIONS(3407), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3407), + [sym_word] = ACTIONS(3407), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_LF] = ACTIONS(3407), + [anon_sym_AMP] = ACTIONS(3407), + }, + [2563] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6251), + [sym_comment] = ACTIONS(48), + }, + [2564] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6253), + [sym_comment] = ACTIONS(48), + }, + [2565] = { + [anon_sym_RBRACE] = ACTIONS(6253), + [sym_comment] = ACTIONS(48), + }, + [2566] = { + [sym__concat] = ACTIONS(3413), + [sym_variable_name] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(3415), + [anon_sym_RPAREN] = ACTIONS(3415), + [anon_sym_SEMI_SEMI] = ACTIONS(3415), + [anon_sym_PIPE_AMP] = ACTIONS(3415), + [anon_sym_AMP_AMP] = ACTIONS(3415), + [anon_sym_PIPE_PIPE] = ACTIONS(3415), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3415), + [sym_word] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_LF] = ACTIONS(3415), + [anon_sym_AMP] = ACTIONS(3415), + }, + [2567] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6255), + [sym_comment] = ACTIONS(48), + }, + [2568] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6257), + [sym_comment] = ACTIONS(48), + }, + [2569] = { + [anon_sym_RBRACE] = ACTIONS(6257), + [sym_comment] = ACTIONS(48), + }, + [2570] = { + [sym__concat] = ACTIONS(3421), + [sym_variable_name] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(3423), + [anon_sym_RPAREN] = ACTIONS(3423), + [anon_sym_SEMI_SEMI] = ACTIONS(3423), + [anon_sym_PIPE_AMP] = ACTIONS(3423), + [anon_sym_AMP_AMP] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3423), + [sym_word] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_LF] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3423), + }, + [2571] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6259), + [sym_comment] = ACTIONS(48), + }, + [2572] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6261), + [sym_comment] = ACTIONS(48), + }, + [2573] = { + [anon_sym_RBRACE] = ACTIONS(6261), + [sym_comment] = ACTIONS(48), + }, + [2574] = { + [sym__concat] = ACTIONS(3429), + [sym_variable_name] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_RPAREN] = ACTIONS(3431), + [anon_sym_SEMI_SEMI] = ACTIONS(3431), + [anon_sym_PIPE_AMP] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_PIPE_PIPE] = ACTIONS(3431), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3431), + [sym_word] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_LF] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + }, + [2575] = { + [sym__concat] = ACTIONS(3433), + [sym_variable_name] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(3435), + [anon_sym_RPAREN] = ACTIONS(3435), + [anon_sym_SEMI_SEMI] = ACTIONS(3435), + [anon_sym_PIPE_AMP] = ACTIONS(3435), + [anon_sym_AMP_AMP] = ACTIONS(3435), + [anon_sym_PIPE_PIPE] = ACTIONS(3435), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3435), + [sym_word] = ACTIONS(3435), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_LF] = ACTIONS(3435), + [anon_sym_AMP] = ACTIONS(3435), + }, + [2576] = { + [sym_file_descriptor] = ACTIONS(4464), + [sym__concat] = ACTIONS(4464), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_RPAREN] = ACTIONS(4466), + [anon_sym_SEMI_SEMI] = ACTIONS(4466), + [anon_sym_PIPE_AMP] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_PIPE_PIPE] = ACTIONS(4466), + [anon_sym_LT] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4466), + [anon_sym_GT_GT] = ACTIONS(4466), + [anon_sym_AMP_GT] = ACTIONS(4466), + [anon_sym_AMP_GT_GT] = ACTIONS(4466), + [anon_sym_LT_AMP] = ACTIONS(4466), + [anon_sym_GT_AMP] = ACTIONS(4466), + [anon_sym_LT_LT] = ACTIONS(4466), + [anon_sym_LT_LT_DASH] = ACTIONS(4466), + [anon_sym_LT_LT_LT] = ACTIONS(4466), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym_LF] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4466), + }, + [2577] = { + [sym_file_descriptor] = ACTIONS(4468), + [sym__concat] = ACTIONS(4468), + [anon_sym_PIPE] = ACTIONS(4470), + [anon_sym_RPAREN] = ACTIONS(4470), + [anon_sym_SEMI_SEMI] = ACTIONS(4470), + [anon_sym_PIPE_AMP] = ACTIONS(4470), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE_PIPE] = ACTIONS(4470), + [anon_sym_LT] = ACTIONS(4470), + [anon_sym_GT] = ACTIONS(4470), + [anon_sym_GT_GT] = ACTIONS(4470), + [anon_sym_AMP_GT] = ACTIONS(4470), + [anon_sym_AMP_GT_GT] = ACTIONS(4470), + [anon_sym_LT_AMP] = ACTIONS(4470), + [anon_sym_GT_AMP] = ACTIONS(4470), + [anon_sym_LT_LT] = ACTIONS(4470), + [anon_sym_LT_LT_DASH] = ACTIONS(4470), + [anon_sym_LT_LT_LT] = ACTIONS(4470), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_LF] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4470), + }, + [2578] = { + [sym_file_descriptor] = ACTIONS(4472), + [sym__concat] = ACTIONS(4472), + [anon_sym_PIPE] = ACTIONS(4474), + [anon_sym_RPAREN] = ACTIONS(4474), + [anon_sym_SEMI_SEMI] = ACTIONS(4474), + [anon_sym_PIPE_AMP] = ACTIONS(4474), + [anon_sym_AMP_AMP] = ACTIONS(4474), + [anon_sym_PIPE_PIPE] = ACTIONS(4474), + [anon_sym_LT] = ACTIONS(4474), + [anon_sym_GT] = ACTIONS(4474), + [anon_sym_GT_GT] = ACTIONS(4474), + [anon_sym_AMP_GT] = ACTIONS(4474), + [anon_sym_AMP_GT_GT] = ACTIONS(4474), + [anon_sym_LT_AMP] = ACTIONS(4474), + [anon_sym_GT_AMP] = ACTIONS(4474), + [anon_sym_LT_LT] = ACTIONS(4474), + [anon_sym_LT_LT_DASH] = ACTIONS(4474), + [anon_sym_LT_LT_LT] = ACTIONS(4474), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym_LF] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4474), + }, + [2579] = { + [sym_file_descriptor] = ACTIONS(4476), + [sym__concat] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(4478), + [anon_sym_RPAREN] = ACTIONS(4478), + [anon_sym_SEMI_SEMI] = ACTIONS(4478), + [anon_sym_PIPE_AMP] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [anon_sym_LT] = ACTIONS(4478), + [anon_sym_GT] = ACTIONS(4478), + [anon_sym_GT_GT] = ACTIONS(4478), + [anon_sym_AMP_GT] = ACTIONS(4478), + [anon_sym_AMP_GT_GT] = ACTIONS(4478), + [anon_sym_LT_AMP] = ACTIONS(4478), + [anon_sym_GT_AMP] = ACTIONS(4478), + [anon_sym_LT_LT] = ACTIONS(4478), + [anon_sym_LT_LT_DASH] = ACTIONS(4478), + [anon_sym_LT_LT_LT] = ACTIONS(4478), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_LF] = ACTIONS(4478), + [anon_sym_AMP] = ACTIONS(4478), + }, + [2580] = { + [sym_file_descriptor] = ACTIONS(4480), + [sym__concat] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(4482), + [anon_sym_RPAREN] = ACTIONS(4482), + [anon_sym_SEMI_SEMI] = ACTIONS(4482), + [anon_sym_PIPE_AMP] = ACTIONS(4482), + [anon_sym_AMP_AMP] = ACTIONS(4482), + [anon_sym_PIPE_PIPE] = ACTIONS(4482), + [anon_sym_LT] = ACTIONS(4482), + [anon_sym_GT] = ACTIONS(4482), + [anon_sym_GT_GT] = ACTIONS(4482), + [anon_sym_AMP_GT] = ACTIONS(4482), + [anon_sym_AMP_GT_GT] = ACTIONS(4482), + [anon_sym_LT_AMP] = ACTIONS(4482), + [anon_sym_GT_AMP] = ACTIONS(4482), + [anon_sym_LT_LT] = ACTIONS(4482), + [anon_sym_LT_LT_DASH] = ACTIONS(4482), + [anon_sym_LT_LT_LT] = ACTIONS(4482), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4482), + [anon_sym_LF] = ACTIONS(4482), + [anon_sym_AMP] = ACTIONS(4482), + }, + [2581] = { + [sym_file_descriptor] = ACTIONS(4484), + [sym__concat] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(4486), + [anon_sym_RPAREN] = ACTIONS(4486), + [anon_sym_SEMI_SEMI] = ACTIONS(4486), + [anon_sym_PIPE_AMP] = ACTIONS(4486), + [anon_sym_AMP_AMP] = ACTIONS(4486), + [anon_sym_PIPE_PIPE] = ACTIONS(4486), + [anon_sym_LT] = ACTIONS(4486), + [anon_sym_GT] = ACTIONS(4486), + [anon_sym_GT_GT] = ACTIONS(4486), + [anon_sym_AMP_GT] = ACTIONS(4486), + [anon_sym_AMP_GT_GT] = ACTIONS(4486), + [anon_sym_LT_AMP] = ACTIONS(4486), + [anon_sym_GT_AMP] = ACTIONS(4486), + [anon_sym_LT_LT] = ACTIONS(4486), + [anon_sym_LT_LT_DASH] = ACTIONS(4486), + [anon_sym_LT_LT_LT] = ACTIONS(4486), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4486), + [anon_sym_LF] = ACTIONS(4486), + [anon_sym_AMP] = ACTIONS(4486), + }, + [2582] = { + [sym__concat] = ACTIONS(4464), + [sym_variable_name] = ACTIONS(4464), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_SEMI_SEMI] = ACTIONS(4466), + [anon_sym_PIPE_AMP] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_PIPE_PIPE] = ACTIONS(4466), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4466), + [sym_word] = ACTIONS(4466), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym_LF] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4466), + }, + [2583] = { + [sym__concat] = ACTIONS(4468), + [sym_variable_name] = ACTIONS(4468), + [anon_sym_PIPE] = ACTIONS(4470), + [anon_sym_SEMI_SEMI] = ACTIONS(4470), + [anon_sym_PIPE_AMP] = ACTIONS(4470), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE_PIPE] = ACTIONS(4470), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4470), + [sym_word] = ACTIONS(4470), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_LF] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4470), + }, + [2584] = { + [sym__concat] = ACTIONS(4472), + [sym_variable_name] = ACTIONS(4472), + [anon_sym_PIPE] = ACTIONS(4474), + [anon_sym_SEMI_SEMI] = ACTIONS(4474), + [anon_sym_PIPE_AMP] = ACTIONS(4474), + [anon_sym_AMP_AMP] = ACTIONS(4474), + [anon_sym_PIPE_PIPE] = ACTIONS(4474), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4474), + [sym_word] = ACTIONS(4474), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym_LF] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4474), + }, + [2585] = { + [sym__concat] = ACTIONS(4476), + [sym_variable_name] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(4478), + [anon_sym_SEMI_SEMI] = ACTIONS(4478), + [anon_sym_PIPE_AMP] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4478), + [sym_word] = ACTIONS(4478), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_LF] = ACTIONS(4478), + [anon_sym_AMP] = ACTIONS(4478), + }, + [2586] = { + [sym__concat] = ACTIONS(4480), + [sym_variable_name] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(4482), + [anon_sym_SEMI_SEMI] = ACTIONS(4482), + [anon_sym_PIPE_AMP] = ACTIONS(4482), + [anon_sym_AMP_AMP] = ACTIONS(4482), + [anon_sym_PIPE_PIPE] = ACTIONS(4482), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4482), + [sym_word] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4482), + [anon_sym_LF] = ACTIONS(4482), + [anon_sym_AMP] = ACTIONS(4482), + }, + [2587] = { + [sym__concat] = ACTIONS(4484), + [sym_variable_name] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(4486), + [anon_sym_SEMI_SEMI] = ACTIONS(4486), + [anon_sym_PIPE_AMP] = ACTIONS(4486), + [anon_sym_AMP_AMP] = ACTIONS(4486), + [anon_sym_PIPE_PIPE] = ACTIONS(4486), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4486), + [sym_word] = ACTIONS(4486), + [anon_sym_SEMI] = ACTIONS(4486), + [anon_sym_LF] = ACTIONS(4486), + [anon_sym_AMP] = ACTIONS(4486), + }, + [2588] = { + [sym__concat] = ACTIONS(4464), + [anon_sym_RBRACE] = ACTIONS(4464), + [sym_comment] = ACTIONS(48), + }, + [2589] = { + [sym__concat] = ACTIONS(4468), + [anon_sym_RBRACE] = ACTIONS(4468), + [sym_comment] = ACTIONS(48), + }, + [2590] = { + [sym__concat] = ACTIONS(4472), + [anon_sym_RBRACE] = ACTIONS(4472), + [sym_comment] = ACTIONS(48), + }, + [2591] = { + [sym__concat] = ACTIONS(4476), + [anon_sym_RBRACE] = ACTIONS(4476), + [sym_comment] = ACTIONS(48), + }, + [2592] = { + [sym__concat] = ACTIONS(4480), + [anon_sym_RBRACE] = ACTIONS(4480), + [sym_comment] = ACTIONS(48), + }, + [2593] = { + [sym__concat] = ACTIONS(4484), + [anon_sym_RBRACE] = ACTIONS(4484), + [sym_comment] = ACTIONS(48), + }, + [2594] = { + [sym_file_descriptor] = ACTIONS(4464), + [sym__concat] = ACTIONS(4464), + [sym_variable_name] = ACTIONS(4464), + [anon_sym_PIPE] = ACTIONS(5310), + [anon_sym_RPAREN] = ACTIONS(4464), + [anon_sym_PIPE_AMP] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(5310), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_GT_GT] = ACTIONS(4464), + [anon_sym_AMP_GT] = ACTIONS(5310), + [anon_sym_AMP_GT_GT] = ACTIONS(4464), + [anon_sym_LT_AMP] = ACTIONS(4464), + [anon_sym_GT_AMP] = ACTIONS(4464), + [sym__special_characters] = ACTIONS(5310), + [anon_sym_DQUOTE] = ACTIONS(4464), + [sym_raw_string] = ACTIONS(4464), + [anon_sym_DOLLAR] = ACTIONS(5310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4464), + [anon_sym_BQUOTE] = ACTIONS(4464), + [anon_sym_LT_LPAREN] = ACTIONS(4464), + [anon_sym_GT_LPAREN] = ACTIONS(4464), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4466), + }, + [2595] = { + [sym_file_descriptor] = ACTIONS(4468), + [sym__concat] = ACTIONS(4468), + [sym_variable_name] = ACTIONS(4468), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_RPAREN] = ACTIONS(4468), + [anon_sym_PIPE_AMP] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(5312), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_AMP_GT] = ACTIONS(5312), + [anon_sym_AMP_GT_GT] = ACTIONS(4468), + [anon_sym_LT_AMP] = ACTIONS(4468), + [anon_sym_GT_AMP] = ACTIONS(4468), + [sym__special_characters] = ACTIONS(5312), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym_raw_string] = ACTIONS(4468), + [anon_sym_DOLLAR] = ACTIONS(5312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4468), + [anon_sym_BQUOTE] = ACTIONS(4468), + [anon_sym_LT_LPAREN] = ACTIONS(4468), + [anon_sym_GT_LPAREN] = ACTIONS(4468), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4470), + }, + [2596] = { + [sym_file_descriptor] = ACTIONS(4472), + [sym__concat] = ACTIONS(4472), + [sym_variable_name] = ACTIONS(4472), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_RPAREN] = ACTIONS(4472), + [anon_sym_PIPE_AMP] = ACTIONS(4472), + [anon_sym_AMP_AMP] = ACTIONS(4472), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_LT] = ACTIONS(5314), + [anon_sym_GT] = ACTIONS(5314), + [anon_sym_GT_GT] = ACTIONS(4472), + [anon_sym_AMP_GT] = ACTIONS(5314), + [anon_sym_AMP_GT_GT] = ACTIONS(4472), + [anon_sym_LT_AMP] = ACTIONS(4472), + [anon_sym_GT_AMP] = ACTIONS(4472), + [sym__special_characters] = ACTIONS(5314), + [anon_sym_DQUOTE] = ACTIONS(4472), + [sym_raw_string] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(5314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4472), + [anon_sym_BQUOTE] = ACTIONS(4472), + [anon_sym_LT_LPAREN] = ACTIONS(4472), + [anon_sym_GT_LPAREN] = ACTIONS(4472), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4474), + }, + [2597] = { + [sym_file_descriptor] = ACTIONS(4476), + [sym__concat] = ACTIONS(4476), + [sym_variable_name] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_RPAREN] = ACTIONS(4476), + [anon_sym_PIPE_AMP] = ACTIONS(4476), + [anon_sym_AMP_AMP] = ACTIONS(4476), + [anon_sym_PIPE_PIPE] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_GT_GT] = ACTIONS(4476), + [anon_sym_AMP_GT] = ACTIONS(5316), + [anon_sym_AMP_GT_GT] = ACTIONS(4476), + [anon_sym_LT_AMP] = ACTIONS(4476), + [anon_sym_GT_AMP] = ACTIONS(4476), + [sym__special_characters] = ACTIONS(5316), + [anon_sym_DQUOTE] = ACTIONS(4476), + [sym_raw_string] = ACTIONS(4476), + [anon_sym_DOLLAR] = ACTIONS(5316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4476), + [anon_sym_BQUOTE] = ACTIONS(4476), + [anon_sym_LT_LPAREN] = ACTIONS(4476), + [anon_sym_GT_LPAREN] = ACTIONS(4476), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4478), + }, + [2598] = { + [sym_file_descriptor] = ACTIONS(4480), + [sym__concat] = ACTIONS(4480), + [sym_variable_name] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(5318), + [anon_sym_RPAREN] = ACTIONS(4480), + [anon_sym_PIPE_AMP] = ACTIONS(4480), + [anon_sym_AMP_AMP] = ACTIONS(4480), + [anon_sym_PIPE_PIPE] = ACTIONS(5318), + [anon_sym_LT] = ACTIONS(5318), + [anon_sym_GT] = ACTIONS(5318), + [anon_sym_GT_GT] = ACTIONS(4480), + [anon_sym_AMP_GT] = ACTIONS(5318), + [anon_sym_AMP_GT_GT] = ACTIONS(4480), + [anon_sym_LT_AMP] = ACTIONS(4480), + [anon_sym_GT_AMP] = ACTIONS(4480), + [sym__special_characters] = ACTIONS(5318), + [anon_sym_DQUOTE] = ACTIONS(4480), + [sym_raw_string] = ACTIONS(4480), + [anon_sym_DOLLAR] = ACTIONS(5318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4480), + [anon_sym_LT_LPAREN] = ACTIONS(4480), + [anon_sym_GT_LPAREN] = ACTIONS(4480), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4482), + }, + [2599] = { + [sym_file_descriptor] = ACTIONS(4484), + [sym__concat] = ACTIONS(4484), + [sym_variable_name] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_RPAREN] = ACTIONS(4484), + [anon_sym_PIPE_AMP] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_GT_GT] = ACTIONS(4484), + [anon_sym_AMP_GT] = ACTIONS(5320), + [anon_sym_AMP_GT_GT] = ACTIONS(4484), + [anon_sym_LT_AMP] = ACTIONS(4484), + [anon_sym_GT_AMP] = ACTIONS(4484), + [sym__special_characters] = ACTIONS(5320), + [anon_sym_DQUOTE] = ACTIONS(4484), + [sym_raw_string] = ACTIONS(4484), + [anon_sym_DOLLAR] = ACTIONS(5320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4484), + [anon_sym_BQUOTE] = ACTIONS(4484), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4486), + }, + [2600] = { + [sym__concat] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(3271), + [anon_sym_RPAREN] = ACTIONS(2176), + [anon_sym_PIPE_AMP] = ACTIONS(2176), + [anon_sym_AMP_AMP] = ACTIONS(2176), + [anon_sym_PIPE_PIPE] = ACTIONS(2176), + [sym_comment] = ACTIONS(48), + }, + [2601] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6263), + [sym_comment] = ACTIONS(48), + }, + [2602] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6265), + [sym_comment] = ACTIONS(48), + }, + [2603] = { + [anon_sym_RBRACE] = ACTIONS(6265), + [sym_comment] = ACTIONS(48), + }, + [2604] = { + [sym__concat] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_RPAREN] = ACTIONS(2214), + [anon_sym_PIPE_AMP] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(2214), + [sym_comment] = ACTIONS(48), + }, + [2605] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6267), + [sym_comment] = ACTIONS(48), + }, + [2606] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6269), + [sym_comment] = ACTIONS(48), + }, + [2607] = { + [anon_sym_RBRACE] = ACTIONS(6269), + [sym_comment] = ACTIONS(48), + }, + [2608] = { + [sym_concatenation] = STATE(2733), + [sym_string] = STATE(2732), + [sym_simple_expansion] = STATE(2732), + [sym_expansion] = STATE(2732), + [sym_command_substitution] = STATE(2732), + [sym_process_substitution] = STATE(2732), + [anon_sym_RBRACE] = ACTIONS(6265), + [sym__special_characters] = ACTIONS(6271), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(6273), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(6275), + }, + [2609] = { + [sym__concat] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(3289), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_PIPE_AMP] = ACTIONS(2228), + [anon_sym_AMP_AMP] = ACTIONS(2228), + [anon_sym_PIPE_PIPE] = ACTIONS(2228), + [sym_comment] = ACTIONS(48), + }, + [2610] = { + [sym_concatenation] = STATE(2737), + [sym_string] = STATE(2736), + [sym_simple_expansion] = STATE(2736), + [sym_expansion] = STATE(2736), + [sym_command_substitution] = STATE(2736), + [sym_process_substitution] = STATE(2736), + [anon_sym_RBRACE] = ACTIONS(6277), + [sym__special_characters] = ACTIONS(6279), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(6281), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(6283), + }, + [2611] = { + [sym__concat] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_RPAREN] = ACTIONS(2240), + [anon_sym_PIPE_AMP] = ACTIONS(2240), + [anon_sym_AMP_AMP] = ACTIONS(2240), + [anon_sym_PIPE_PIPE] = ACTIONS(2240), + [sym_comment] = ACTIONS(48), + }, + [2612] = { + [sym_concatenation] = STATE(2741), + [sym_string] = STATE(2740), + [sym_simple_expansion] = STATE(2740), + [sym_expansion] = STATE(2740), + [sym_command_substitution] = STATE(2740), + [sym_process_substitution] = STATE(2740), + [anon_sym_RBRACE] = ACTIONS(6285), + [sym__special_characters] = ACTIONS(6287), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(6289), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(6291), + }, + [2613] = { + [sym__concat] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_RPAREN] = ACTIONS(2252), + [anon_sym_PIPE_AMP] = ACTIONS(2252), + [anon_sym_AMP_AMP] = ACTIONS(2252), + [anon_sym_PIPE_PIPE] = ACTIONS(2252), + [sym_comment] = ACTIONS(48), + }, + [2614] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6293), + [sym_comment] = ACTIONS(48), + }, + [2615] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6295), + [sym_comment] = ACTIONS(48), + }, + [2616] = { + [anon_sym_RBRACE] = ACTIONS(6295), + [sym_comment] = ACTIONS(48), + }, + [2617] = { + [sym__concat] = ACTIONS(3353), + [sym_variable_name] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(4381), + [anon_sym_RPAREN] = ACTIONS(3353), + [anon_sym_PIPE_AMP] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4381), + [sym_word] = ACTIONS(3355), + }, + [2618] = { + [sym__concat] = ACTIONS(3359), + [sym_variable_name] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(4383), + [anon_sym_RPAREN] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(4383), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4383), + [sym_word] = ACTIONS(3361), + }, + [2619] = { + [sym__concat] = ACTIONS(3401), + [sym_variable_name] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(4385), + [anon_sym_RPAREN] = ACTIONS(3401), + [anon_sym_PIPE_AMP] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_PIPE_PIPE] = ACTIONS(4385), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4385), + [sym_word] = ACTIONS(3403), + }, + [2620] = { + [sym__concat] = ACTIONS(3405), + [sym_variable_name] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(4387), + [anon_sym_RPAREN] = ACTIONS(3405), + [anon_sym_PIPE_AMP] = ACTIONS(3405), + [anon_sym_AMP_AMP] = ACTIONS(3405), + [anon_sym_PIPE_PIPE] = ACTIONS(4387), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4387), + [sym_word] = ACTIONS(3407), + }, + [2621] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6297), + [sym_comment] = ACTIONS(48), + }, + [2622] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6299), + [sym_comment] = ACTIONS(48), + }, + [2623] = { + [anon_sym_RBRACE] = ACTIONS(6299), + [sym_comment] = ACTIONS(48), + }, + [2624] = { + [sym__concat] = ACTIONS(3413), + [sym_variable_name] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(4393), + [anon_sym_RPAREN] = ACTIONS(3413), + [anon_sym_PIPE_AMP] = ACTIONS(3413), + [anon_sym_AMP_AMP] = ACTIONS(3413), + [anon_sym_PIPE_PIPE] = ACTIONS(4393), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4393), + [sym_word] = ACTIONS(3415), + }, + [2625] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6301), + [sym_comment] = ACTIONS(48), + }, + [2626] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6303), + [sym_comment] = ACTIONS(48), + }, + [2627] = { + [anon_sym_RBRACE] = ACTIONS(6303), + [sym_comment] = ACTIONS(48), + }, + [2628] = { + [sym__concat] = ACTIONS(3421), + [sym_variable_name] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(4399), + [anon_sym_RPAREN] = ACTIONS(3421), + [anon_sym_PIPE_AMP] = ACTIONS(3421), + [anon_sym_AMP_AMP] = ACTIONS(3421), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4399), + [sym_word] = ACTIONS(3423), + }, + [2629] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6305), + [sym_comment] = ACTIONS(48), + }, + [2630] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6307), + [sym_comment] = ACTIONS(48), + }, + [2631] = { + [anon_sym_RBRACE] = ACTIONS(6307), + [sym_comment] = ACTIONS(48), + }, + [2632] = { + [sym__concat] = ACTIONS(3429), + [sym_variable_name] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(4405), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_PIPE_AMP] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(4405), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4405), + [sym_word] = ACTIONS(3431), + }, + [2633] = { + [sym__concat] = ACTIONS(3433), + [sym_variable_name] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_RPAREN] = ACTIONS(3433), + [anon_sym_PIPE_AMP] = ACTIONS(3433), + [anon_sym_AMP_AMP] = ACTIONS(3433), + [anon_sym_PIPE_PIPE] = ACTIONS(4407), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4407), + [sym_word] = ACTIONS(3435), + }, + [2634] = { + [sym_file_descriptor] = ACTIONS(4464), + [sym__concat] = ACTIONS(4464), + [anon_sym_PIPE] = ACTIONS(5310), + [anon_sym_RPAREN] = ACTIONS(4464), + [anon_sym_PIPE_AMP] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_GT_GT] = ACTIONS(4464), + [anon_sym_AMP_GT] = ACTIONS(5310), + [anon_sym_AMP_GT_GT] = ACTIONS(4464), + [anon_sym_LT_AMP] = ACTIONS(4464), + [anon_sym_GT_AMP] = ACTIONS(4464), + [anon_sym_LT_LT] = ACTIONS(5310), + [anon_sym_LT_LT_DASH] = ACTIONS(4464), + [anon_sym_LT_LT_LT] = ACTIONS(4464), + [sym_comment] = ACTIONS(48), + }, + [2635] = { + [sym_file_descriptor] = ACTIONS(4468), + [sym__concat] = ACTIONS(4468), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_RPAREN] = ACTIONS(4468), + [anon_sym_PIPE_AMP] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(4468), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_AMP_GT] = ACTIONS(5312), + [anon_sym_AMP_GT_GT] = ACTIONS(4468), + [anon_sym_LT_AMP] = ACTIONS(4468), + [anon_sym_GT_AMP] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(5312), + [anon_sym_LT_LT_DASH] = ACTIONS(4468), + [anon_sym_LT_LT_LT] = ACTIONS(4468), + [sym_comment] = ACTIONS(48), + }, + [2636] = { + [sym_file_descriptor] = ACTIONS(4472), + [sym__concat] = ACTIONS(4472), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_RPAREN] = ACTIONS(4472), + [anon_sym_PIPE_AMP] = ACTIONS(4472), + [anon_sym_AMP_AMP] = ACTIONS(4472), + [anon_sym_PIPE_PIPE] = ACTIONS(4472), + [anon_sym_LT] = ACTIONS(5314), + [anon_sym_GT] = ACTIONS(5314), + [anon_sym_GT_GT] = ACTIONS(4472), + [anon_sym_AMP_GT] = ACTIONS(5314), + [anon_sym_AMP_GT_GT] = ACTIONS(4472), + [anon_sym_LT_AMP] = ACTIONS(4472), + [anon_sym_GT_AMP] = ACTIONS(4472), + [anon_sym_LT_LT] = ACTIONS(5314), + [anon_sym_LT_LT_DASH] = ACTIONS(4472), + [anon_sym_LT_LT_LT] = ACTIONS(4472), + [sym_comment] = ACTIONS(48), + }, + [2637] = { + [sym_file_descriptor] = ACTIONS(4476), + [sym__concat] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_RPAREN] = ACTIONS(4476), + [anon_sym_PIPE_AMP] = ACTIONS(4476), + [anon_sym_AMP_AMP] = ACTIONS(4476), + [anon_sym_PIPE_PIPE] = ACTIONS(4476), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_GT_GT] = ACTIONS(4476), + [anon_sym_AMP_GT] = ACTIONS(5316), + [anon_sym_AMP_GT_GT] = ACTIONS(4476), + [anon_sym_LT_AMP] = ACTIONS(4476), + [anon_sym_GT_AMP] = ACTIONS(4476), + [anon_sym_LT_LT] = ACTIONS(5316), + [anon_sym_LT_LT_DASH] = ACTIONS(4476), + [anon_sym_LT_LT_LT] = ACTIONS(4476), + [sym_comment] = ACTIONS(48), + }, + [2638] = { + [sym_file_descriptor] = ACTIONS(4480), + [sym__concat] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(5318), + [anon_sym_RPAREN] = ACTIONS(4480), + [anon_sym_PIPE_AMP] = ACTIONS(4480), + [anon_sym_AMP_AMP] = ACTIONS(4480), + [anon_sym_PIPE_PIPE] = ACTIONS(4480), + [anon_sym_LT] = ACTIONS(5318), + [anon_sym_GT] = ACTIONS(5318), + [anon_sym_GT_GT] = ACTIONS(4480), + [anon_sym_AMP_GT] = ACTIONS(5318), + [anon_sym_AMP_GT_GT] = ACTIONS(4480), + [anon_sym_LT_AMP] = ACTIONS(4480), + [anon_sym_GT_AMP] = ACTIONS(4480), + [anon_sym_LT_LT] = ACTIONS(5318), + [anon_sym_LT_LT_DASH] = ACTIONS(4480), + [anon_sym_LT_LT_LT] = ACTIONS(4480), + [sym_comment] = ACTIONS(48), + }, + [2639] = { + [sym_file_descriptor] = ACTIONS(4484), + [sym__concat] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_RPAREN] = ACTIONS(4484), + [anon_sym_PIPE_AMP] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(4484), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_GT_GT] = ACTIONS(4484), + [anon_sym_AMP_GT] = ACTIONS(5320), + [anon_sym_AMP_GT_GT] = ACTIONS(4484), + [anon_sym_LT_AMP] = ACTIONS(4484), + [anon_sym_GT_AMP] = ACTIONS(4484), + [anon_sym_LT_LT] = ACTIONS(5320), + [anon_sym_LT_LT_DASH] = ACTIONS(4484), + [anon_sym_LT_LT_LT] = ACTIONS(4484), + [sym_comment] = ACTIONS(48), + }, + [2640] = { + [sym_file_descriptor] = ACTIONS(4464), + [sym__concat] = ACTIONS(4464), + [sym_variable_name] = ACTIONS(4464), + [anon_sym_PIPE] = ACTIONS(5310), + [anon_sym_PIPE_AMP] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(5310), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_GT_GT] = ACTIONS(4464), + [anon_sym_AMP_GT] = ACTIONS(5310), + [anon_sym_AMP_GT_GT] = ACTIONS(4464), + [anon_sym_LT_AMP] = ACTIONS(4464), + [anon_sym_GT_AMP] = ACTIONS(4464), + [sym__special_characters] = ACTIONS(5310), + [anon_sym_DQUOTE] = ACTIONS(4464), + [sym_raw_string] = ACTIONS(4464), + [anon_sym_DOLLAR] = ACTIONS(5310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4464), + [anon_sym_BQUOTE] = ACTIONS(4464), + [anon_sym_LT_LPAREN] = ACTIONS(4464), + [anon_sym_GT_LPAREN] = ACTIONS(4464), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4466), + }, + [2641] = { + [sym_file_descriptor] = ACTIONS(4468), + [sym__concat] = ACTIONS(4468), + [sym_variable_name] = ACTIONS(4468), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_PIPE_AMP] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(5312), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_AMP_GT] = ACTIONS(5312), + [anon_sym_AMP_GT_GT] = ACTIONS(4468), + [anon_sym_LT_AMP] = ACTIONS(4468), + [anon_sym_GT_AMP] = ACTIONS(4468), + [sym__special_characters] = ACTIONS(5312), + [anon_sym_DQUOTE] = ACTIONS(4468), + [sym_raw_string] = ACTIONS(4468), + [anon_sym_DOLLAR] = ACTIONS(5312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4468), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4468), + [anon_sym_BQUOTE] = ACTIONS(4468), + [anon_sym_LT_LPAREN] = ACTIONS(4468), + [anon_sym_GT_LPAREN] = ACTIONS(4468), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4470), + }, + [2642] = { + [sym_file_descriptor] = ACTIONS(4472), + [sym__concat] = ACTIONS(4472), + [sym_variable_name] = ACTIONS(4472), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_PIPE_AMP] = ACTIONS(4472), + [anon_sym_AMP_AMP] = ACTIONS(4472), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_LT] = ACTIONS(5314), + [anon_sym_GT] = ACTIONS(5314), + [anon_sym_GT_GT] = ACTIONS(4472), + [anon_sym_AMP_GT] = ACTIONS(5314), + [anon_sym_AMP_GT_GT] = ACTIONS(4472), + [anon_sym_LT_AMP] = ACTIONS(4472), + [anon_sym_GT_AMP] = ACTIONS(4472), + [sym__special_characters] = ACTIONS(5314), + [anon_sym_DQUOTE] = ACTIONS(4472), + [sym_raw_string] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(5314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4472), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4472), + [anon_sym_BQUOTE] = ACTIONS(4472), + [anon_sym_LT_LPAREN] = ACTIONS(4472), + [anon_sym_GT_LPAREN] = ACTIONS(4472), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4474), + }, + [2643] = { + [sym_file_descriptor] = ACTIONS(4476), + [sym__concat] = ACTIONS(4476), + [sym_variable_name] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_PIPE_AMP] = ACTIONS(4476), + [anon_sym_AMP_AMP] = ACTIONS(4476), + [anon_sym_PIPE_PIPE] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_GT_GT] = ACTIONS(4476), + [anon_sym_AMP_GT] = ACTIONS(5316), + [anon_sym_AMP_GT_GT] = ACTIONS(4476), + [anon_sym_LT_AMP] = ACTIONS(4476), + [anon_sym_GT_AMP] = ACTIONS(4476), + [sym__special_characters] = ACTIONS(5316), + [anon_sym_DQUOTE] = ACTIONS(4476), + [sym_raw_string] = ACTIONS(4476), + [anon_sym_DOLLAR] = ACTIONS(5316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4476), + [anon_sym_BQUOTE] = ACTIONS(4476), + [anon_sym_LT_LPAREN] = ACTIONS(4476), + [anon_sym_GT_LPAREN] = ACTIONS(4476), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4478), + }, + [2644] = { + [sym_file_descriptor] = ACTIONS(4480), + [sym__concat] = ACTIONS(4480), + [sym_variable_name] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(5318), + [anon_sym_PIPE_AMP] = ACTIONS(4480), + [anon_sym_AMP_AMP] = ACTIONS(4480), + [anon_sym_PIPE_PIPE] = ACTIONS(5318), + [anon_sym_LT] = ACTIONS(5318), + [anon_sym_GT] = ACTIONS(5318), + [anon_sym_GT_GT] = ACTIONS(4480), + [anon_sym_AMP_GT] = ACTIONS(5318), + [anon_sym_AMP_GT_GT] = ACTIONS(4480), + [anon_sym_LT_AMP] = ACTIONS(4480), + [anon_sym_GT_AMP] = ACTIONS(4480), + [sym__special_characters] = ACTIONS(5318), + [anon_sym_DQUOTE] = ACTIONS(4480), + [sym_raw_string] = ACTIONS(4480), + [anon_sym_DOLLAR] = ACTIONS(5318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4480), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4480), + [anon_sym_LT_LPAREN] = ACTIONS(4480), + [anon_sym_GT_LPAREN] = ACTIONS(4480), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4482), + }, + [2645] = { + [sym_file_descriptor] = ACTIONS(4484), + [sym__concat] = ACTIONS(4484), + [sym_variable_name] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_PIPE_AMP] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_GT_GT] = ACTIONS(4484), + [anon_sym_AMP_GT] = ACTIONS(5320), + [anon_sym_AMP_GT_GT] = ACTIONS(4484), + [anon_sym_LT_AMP] = ACTIONS(4484), + [anon_sym_GT_AMP] = ACTIONS(4484), + [sym__special_characters] = ACTIONS(5320), + [anon_sym_DQUOTE] = ACTIONS(4484), + [sym_raw_string] = ACTIONS(4484), + [anon_sym_DOLLAR] = ACTIONS(5320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4484), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4484), + [anon_sym_BQUOTE] = ACTIONS(4484), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(4486), + }, + [2646] = { + [sym__concat] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(3271), + [anon_sym_PIPE_AMP] = ACTIONS(2176), + [anon_sym_AMP_AMP] = ACTIONS(2176), + [anon_sym_PIPE_PIPE] = ACTIONS(2176), + [anon_sym_BQUOTE] = ACTIONS(2176), + [sym_comment] = ACTIONS(48), + }, + [2647] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6309), + [sym_comment] = ACTIONS(48), + }, + [2648] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6311), + [sym_comment] = ACTIONS(48), + }, + [2649] = { + [anon_sym_RBRACE] = ACTIONS(6311), + [sym_comment] = ACTIONS(48), + }, + [2650] = { + [sym__concat] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_PIPE_AMP] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(2214), + [anon_sym_BQUOTE] = ACTIONS(2214), + [sym_comment] = ACTIONS(48), + }, + [2651] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6313), + [sym_comment] = ACTIONS(48), + }, + [2652] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6315), + [sym_comment] = ACTIONS(48), + }, + [2653] = { + [anon_sym_RBRACE] = ACTIONS(6315), + [sym_comment] = ACTIONS(48), + }, + [2654] = { + [sym_concatenation] = STATE(2756), + [sym_string] = STATE(2755), + [sym_simple_expansion] = STATE(2755), + [sym_expansion] = STATE(2755), + [sym_command_substitution] = STATE(2755), + [sym_process_substitution] = STATE(2755), + [anon_sym_RBRACE] = ACTIONS(6311), + [sym__special_characters] = ACTIONS(6317), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(6319), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(6321), + }, + [2655] = { + [sym__concat] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(3289), + [anon_sym_PIPE_AMP] = ACTIONS(2228), + [anon_sym_AMP_AMP] = ACTIONS(2228), + [anon_sym_PIPE_PIPE] = ACTIONS(2228), + [anon_sym_BQUOTE] = ACTIONS(2228), + [sym_comment] = ACTIONS(48), + }, + [2656] = { + [sym_concatenation] = STATE(2760), + [sym_string] = STATE(2759), + [sym_simple_expansion] = STATE(2759), + [sym_expansion] = STATE(2759), + [sym_command_substitution] = STATE(2759), + [sym_process_substitution] = STATE(2759), + [anon_sym_RBRACE] = ACTIONS(6323), + [sym__special_characters] = ACTIONS(6325), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(6327), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(6329), + }, + [2657] = { + [sym__concat] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_PIPE_AMP] = ACTIONS(2240), + [anon_sym_AMP_AMP] = ACTIONS(2240), + [anon_sym_PIPE_PIPE] = ACTIONS(2240), + [anon_sym_BQUOTE] = ACTIONS(2240), + [sym_comment] = ACTIONS(48), + }, + [2658] = { + [sym_concatenation] = STATE(2764), + [sym_string] = STATE(2763), + [sym_simple_expansion] = STATE(2763), + [sym_expansion] = STATE(2763), + [sym_command_substitution] = STATE(2763), + [sym_process_substitution] = STATE(2763), + [anon_sym_RBRACE] = ACTIONS(6331), + [sym__special_characters] = ACTIONS(6333), + [anon_sym_DQUOTE] = ACTIONS(1219), + [sym_raw_string] = ACTIONS(6335), + [anon_sym_DOLLAR] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1227), + [anon_sym_BQUOTE] = ACTIONS(1229), + [anon_sym_LT_LPAREN] = ACTIONS(1231), + [anon_sym_GT_LPAREN] = ACTIONS(1231), + [sym_comment] = ACTIONS(48), + [sym_word] = ACTIONS(6337), + }, + [2659] = { + [sym__concat] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_PIPE_AMP] = ACTIONS(2252), + [anon_sym_AMP_AMP] = ACTIONS(2252), + [anon_sym_PIPE_PIPE] = ACTIONS(2252), + [anon_sym_BQUOTE] = ACTIONS(2252), + [sym_comment] = ACTIONS(48), + }, + [2660] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6339), + [sym_comment] = ACTIONS(48), + }, + [2661] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6341), + [sym_comment] = ACTIONS(48), + }, + [2662] = { + [anon_sym_RBRACE] = ACTIONS(6341), + [sym_comment] = ACTIONS(48), + }, + [2663] = { + [sym__concat] = ACTIONS(3353), + [sym_variable_name] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(4381), + [anon_sym_PIPE_AMP] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_PIPE_PIPE] = ACTIONS(4381), + [anon_sym_BQUOTE] = ACTIONS(3353), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4381), + [sym_word] = ACTIONS(3355), + }, + [2664] = { + [sym__concat] = ACTIONS(3359), + [sym_variable_name] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(4383), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(4383), + [anon_sym_BQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4383), + [sym_word] = ACTIONS(3361), + }, + [2665] = { + [sym__concat] = ACTIONS(3401), + [sym_variable_name] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(4385), + [anon_sym_PIPE_AMP] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_PIPE_PIPE] = ACTIONS(4385), + [anon_sym_BQUOTE] = ACTIONS(3401), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4385), + [sym_word] = ACTIONS(3403), + }, + [2666] = { + [sym__concat] = ACTIONS(3405), + [sym_variable_name] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(4387), + [anon_sym_PIPE_AMP] = ACTIONS(3405), + [anon_sym_AMP_AMP] = ACTIONS(3405), + [anon_sym_PIPE_PIPE] = ACTIONS(4387), + [anon_sym_BQUOTE] = ACTIONS(3405), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4387), + [sym_word] = ACTIONS(3407), + }, + [2667] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6343), + [sym_comment] = ACTIONS(48), + }, + [2668] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6345), + [sym_comment] = ACTIONS(48), + }, + [2669] = { + [anon_sym_RBRACE] = ACTIONS(6345), + [sym_comment] = ACTIONS(48), + }, + [2670] = { + [sym__concat] = ACTIONS(3413), + [sym_variable_name] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(4393), + [anon_sym_PIPE_AMP] = ACTIONS(3413), + [anon_sym_AMP_AMP] = ACTIONS(3413), + [anon_sym_PIPE_PIPE] = ACTIONS(4393), + [anon_sym_BQUOTE] = ACTIONS(3413), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4393), + [sym_word] = ACTIONS(3415), + }, + [2671] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6347), + [sym_comment] = ACTIONS(48), + }, + [2672] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6349), + [sym_comment] = ACTIONS(48), + }, + [2673] = { + [anon_sym_RBRACE] = ACTIONS(6349), + [sym_comment] = ACTIONS(48), + }, + [2674] = { + [sym__concat] = ACTIONS(3421), + [sym_variable_name] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(4399), + [anon_sym_PIPE_AMP] = ACTIONS(3421), + [anon_sym_AMP_AMP] = ACTIONS(3421), + [anon_sym_PIPE_PIPE] = ACTIONS(4399), + [anon_sym_BQUOTE] = ACTIONS(3421), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4399), + [sym_word] = ACTIONS(3423), + }, + [2675] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6351), + [sym_comment] = ACTIONS(48), + }, + [2676] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6353), + [sym_comment] = ACTIONS(48), + }, + [2677] = { + [anon_sym_RBRACE] = ACTIONS(6353), + [sym_comment] = ACTIONS(48), + }, + [2678] = { + [sym__concat] = ACTIONS(3429), + [sym_variable_name] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(4405), + [anon_sym_PIPE_AMP] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(4405), + [anon_sym_BQUOTE] = ACTIONS(3429), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4405), + [sym_word] = ACTIONS(3431), + }, + [2679] = { + [sym__concat] = ACTIONS(3433), + [sym_variable_name] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_PIPE_AMP] = ACTIONS(3433), + [anon_sym_AMP_AMP] = ACTIONS(3433), + [anon_sym_PIPE_PIPE] = ACTIONS(4407), + [anon_sym_BQUOTE] = ACTIONS(3433), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4407), + [sym_word] = ACTIONS(3435), + }, + [2680] = { + [sym_file_descriptor] = ACTIONS(4464), + [sym__concat] = ACTIONS(4464), + [anon_sym_PIPE] = ACTIONS(5310), + [anon_sym_PIPE_AMP] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_LT] = ACTIONS(5310), + [anon_sym_GT] = ACTIONS(5310), + [anon_sym_GT_GT] = ACTIONS(4464), + [anon_sym_AMP_GT] = ACTIONS(5310), + [anon_sym_AMP_GT_GT] = ACTIONS(4464), + [anon_sym_LT_AMP] = ACTIONS(4464), + [anon_sym_GT_AMP] = ACTIONS(4464), + [anon_sym_LT_LT] = ACTIONS(5310), + [anon_sym_LT_LT_DASH] = ACTIONS(4464), + [anon_sym_LT_LT_LT] = ACTIONS(4464), + [anon_sym_BQUOTE] = ACTIONS(4464), + [sym_comment] = ACTIONS(48), + }, + [2681] = { + [sym_file_descriptor] = ACTIONS(4468), + [sym__concat] = ACTIONS(4468), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_PIPE_AMP] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(4468), + [anon_sym_LT] = ACTIONS(5312), + [anon_sym_GT] = ACTIONS(5312), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_AMP_GT] = ACTIONS(5312), + [anon_sym_AMP_GT_GT] = ACTIONS(4468), + [anon_sym_LT_AMP] = ACTIONS(4468), + [anon_sym_GT_AMP] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(5312), + [anon_sym_LT_LT_DASH] = ACTIONS(4468), + [anon_sym_LT_LT_LT] = ACTIONS(4468), + [anon_sym_BQUOTE] = ACTIONS(4468), + [sym_comment] = ACTIONS(48), + }, + [2682] = { + [sym_file_descriptor] = ACTIONS(4472), + [sym__concat] = ACTIONS(4472), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_PIPE_AMP] = ACTIONS(4472), + [anon_sym_AMP_AMP] = ACTIONS(4472), + [anon_sym_PIPE_PIPE] = ACTIONS(4472), + [anon_sym_LT] = ACTIONS(5314), + [anon_sym_GT] = ACTIONS(5314), + [anon_sym_GT_GT] = ACTIONS(4472), + [anon_sym_AMP_GT] = ACTIONS(5314), + [anon_sym_AMP_GT_GT] = ACTIONS(4472), + [anon_sym_LT_AMP] = ACTIONS(4472), + [anon_sym_GT_AMP] = ACTIONS(4472), + [anon_sym_LT_LT] = ACTIONS(5314), + [anon_sym_LT_LT_DASH] = ACTIONS(4472), + [anon_sym_LT_LT_LT] = ACTIONS(4472), + [anon_sym_BQUOTE] = ACTIONS(4472), + [sym_comment] = ACTIONS(48), + }, + [2683] = { + [sym_file_descriptor] = ACTIONS(4476), + [sym__concat] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_PIPE_AMP] = ACTIONS(4476), + [anon_sym_AMP_AMP] = ACTIONS(4476), + [anon_sym_PIPE_PIPE] = ACTIONS(4476), + [anon_sym_LT] = ACTIONS(5316), + [anon_sym_GT] = ACTIONS(5316), + [anon_sym_GT_GT] = ACTIONS(4476), + [anon_sym_AMP_GT] = ACTIONS(5316), + [anon_sym_AMP_GT_GT] = ACTIONS(4476), + [anon_sym_LT_AMP] = ACTIONS(4476), + [anon_sym_GT_AMP] = ACTIONS(4476), + [anon_sym_LT_LT] = ACTIONS(5316), + [anon_sym_LT_LT_DASH] = ACTIONS(4476), + [anon_sym_LT_LT_LT] = ACTIONS(4476), + [anon_sym_BQUOTE] = ACTIONS(4476), + [sym_comment] = ACTIONS(48), + }, + [2684] = { + [sym_file_descriptor] = ACTIONS(4480), + [sym__concat] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(5318), + [anon_sym_PIPE_AMP] = ACTIONS(4480), + [anon_sym_AMP_AMP] = ACTIONS(4480), + [anon_sym_PIPE_PIPE] = ACTIONS(4480), + [anon_sym_LT] = ACTIONS(5318), + [anon_sym_GT] = ACTIONS(5318), + [anon_sym_GT_GT] = ACTIONS(4480), + [anon_sym_AMP_GT] = ACTIONS(5318), + [anon_sym_AMP_GT_GT] = ACTIONS(4480), + [anon_sym_LT_AMP] = ACTIONS(4480), + [anon_sym_GT_AMP] = ACTIONS(4480), + [anon_sym_LT_LT] = ACTIONS(5318), + [anon_sym_LT_LT_DASH] = ACTIONS(4480), + [anon_sym_LT_LT_LT] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4480), + [sym_comment] = ACTIONS(48), + }, + [2685] = { + [sym_file_descriptor] = ACTIONS(4484), + [sym__concat] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_PIPE_AMP] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(4484), + [anon_sym_LT] = ACTIONS(5320), + [anon_sym_GT] = ACTIONS(5320), + [anon_sym_GT_GT] = ACTIONS(4484), + [anon_sym_AMP_GT] = ACTIONS(5320), + [anon_sym_AMP_GT_GT] = ACTIONS(4484), + [anon_sym_LT_AMP] = ACTIONS(4484), + [anon_sym_GT_AMP] = ACTIONS(4484), + [anon_sym_LT_LT] = ACTIONS(5320), + [anon_sym_LT_LT_DASH] = ACTIONS(4484), + [anon_sym_LT_LT_LT] = ACTIONS(4484), + [anon_sym_BQUOTE] = ACTIONS(4484), + [sym_comment] = ACTIONS(48), + }, + [2686] = { + [sym__heredoc_middle] = ACTIONS(4464), + [sym__heredoc_end] = ACTIONS(4464), + [anon_sym_DOLLAR] = ACTIONS(5310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4464), + [sym_comment] = ACTIONS(48), + }, + [2687] = { + [sym__heredoc_middle] = ACTIONS(4468), + [sym__heredoc_end] = ACTIONS(4468), + [anon_sym_DOLLAR] = ACTIONS(5312), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4468), + [sym_comment] = ACTIONS(48), + }, + [2688] = { + [sym__heredoc_middle] = ACTIONS(4472), + [sym__heredoc_end] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(5314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4472), + [sym_comment] = ACTIONS(48), + }, + [2689] = { + [sym__heredoc_middle] = ACTIONS(4476), + [sym__heredoc_end] = ACTIONS(4476), + [anon_sym_DOLLAR] = ACTIONS(5316), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4476), + [sym_comment] = ACTIONS(48), + }, + [2690] = { + [sym__heredoc_middle] = ACTIONS(4480), + [sym__heredoc_end] = ACTIONS(4480), + [anon_sym_DOLLAR] = ACTIONS(5318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4480), + [sym_comment] = ACTIONS(48), + }, + [2691] = { + [sym__heredoc_middle] = ACTIONS(4484), + [sym__heredoc_end] = ACTIONS(4484), + [anon_sym_DOLLAR] = ACTIONS(5320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4484), + [sym_comment] = ACTIONS(48), + }, + [2692] = { + [sym__concat] = ACTIONS(4464), + [anon_sym_PIPE] = ACTIONS(4464), + [anon_sym_RPAREN] = ACTIONS(4464), + [sym_comment] = ACTIONS(48), + }, + [2693] = { + [sym__concat] = ACTIONS(4468), + [anon_sym_PIPE] = ACTIONS(4468), + [anon_sym_RPAREN] = ACTIONS(4468), + [sym_comment] = ACTIONS(48), + }, + [2694] = { + [sym__concat] = ACTIONS(4472), + [anon_sym_PIPE] = ACTIONS(4472), + [anon_sym_RPAREN] = ACTIONS(4472), + [sym_comment] = ACTIONS(48), + }, + [2695] = { + [sym__concat] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(4476), + [anon_sym_RPAREN] = ACTIONS(4476), + [sym_comment] = ACTIONS(48), + }, + [2696] = { + [sym__concat] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(4480), + [anon_sym_RPAREN] = ACTIONS(4480), + [sym_comment] = ACTIONS(48), + }, + [2697] = { + [sym__concat] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(4484), + [anon_sym_RPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(48), + }, + [2698] = { + [sym__concat] = ACTIONS(4464), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_SEMI_SEMI] = ACTIONS(4466), + [anon_sym_PIPE_AMP] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_PIPE_PIPE] = ACTIONS(4466), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym_LF] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4466), + }, + [2699] = { + [sym__concat] = ACTIONS(4468), + [anon_sym_PIPE] = ACTIONS(4470), + [anon_sym_SEMI_SEMI] = ACTIONS(4470), + [anon_sym_PIPE_AMP] = ACTIONS(4470), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE_PIPE] = ACTIONS(4470), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_LF] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4470), + }, + [2700] = { + [sym__concat] = ACTIONS(4472), + [anon_sym_PIPE] = ACTIONS(4474), + [anon_sym_SEMI_SEMI] = ACTIONS(4474), + [anon_sym_PIPE_AMP] = ACTIONS(4474), + [anon_sym_AMP_AMP] = ACTIONS(4474), + [anon_sym_PIPE_PIPE] = ACTIONS(4474), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym_LF] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4474), + }, + [2701] = { + [sym__concat] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(4478), + [anon_sym_SEMI_SEMI] = ACTIONS(4478), + [anon_sym_PIPE_AMP] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_LF] = ACTIONS(4478), + [anon_sym_AMP] = ACTIONS(4478), + }, + [2702] = { + [sym__concat] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(4482), + [anon_sym_SEMI_SEMI] = ACTIONS(4482), + [anon_sym_PIPE_AMP] = ACTIONS(4482), + [anon_sym_AMP_AMP] = ACTIONS(4482), + [anon_sym_PIPE_PIPE] = ACTIONS(4482), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4482), + [anon_sym_LF] = ACTIONS(4482), + [anon_sym_AMP] = ACTIONS(4482), + }, + [2703] = { + [sym__concat] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(4486), + [anon_sym_SEMI_SEMI] = ACTIONS(4486), + [anon_sym_PIPE_AMP] = ACTIONS(4486), + [anon_sym_AMP_AMP] = ACTIONS(4486), + [anon_sym_PIPE_PIPE] = ACTIONS(4486), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4486), + [anon_sym_LF] = ACTIONS(4486), + [anon_sym_AMP] = ACTIONS(4486), + }, + [2704] = { + [sym__concat] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(3355), + [anon_sym_RPAREN] = ACTIONS(3355), + [anon_sym_SEMI_SEMI] = ACTIONS(3355), + [anon_sym_PIPE_AMP] = ACTIONS(3355), + [anon_sym_AMP_AMP] = ACTIONS(3355), + [anon_sym_PIPE_PIPE] = ACTIONS(3355), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_LF] = ACTIONS(3355), + [anon_sym_AMP] = ACTIONS(3355), + }, + [2705] = { + [sym__concat] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3361), + [anon_sym_RPAREN] = ACTIONS(3361), + [anon_sym_SEMI_SEMI] = ACTIONS(3361), + [anon_sym_PIPE_AMP] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_LF] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3361), + }, + [2706] = { + [sym__concat] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(3403), + [anon_sym_RPAREN] = ACTIONS(3403), + [anon_sym_SEMI_SEMI] = ACTIONS(3403), + [anon_sym_PIPE_AMP] = ACTIONS(3403), + [anon_sym_AMP_AMP] = ACTIONS(3403), + [anon_sym_PIPE_PIPE] = ACTIONS(3403), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_LF] = ACTIONS(3403), + [anon_sym_AMP] = ACTIONS(3403), + }, + [2707] = { + [sym__concat] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(3407), + [anon_sym_RPAREN] = ACTIONS(3407), + [anon_sym_SEMI_SEMI] = ACTIONS(3407), + [anon_sym_PIPE_AMP] = ACTIONS(3407), + [anon_sym_AMP_AMP] = ACTIONS(3407), + [anon_sym_PIPE_PIPE] = ACTIONS(3407), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_LF] = ACTIONS(3407), + [anon_sym_AMP] = ACTIONS(3407), + }, + [2708] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6355), + [sym_comment] = ACTIONS(48), + }, + [2709] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6357), + [sym_comment] = ACTIONS(48), + }, + [2710] = { + [anon_sym_RBRACE] = ACTIONS(6357), + [sym_comment] = ACTIONS(48), + }, + [2711] = { + [sym__concat] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(3415), + [anon_sym_RPAREN] = ACTIONS(3415), + [anon_sym_SEMI_SEMI] = ACTIONS(3415), + [anon_sym_PIPE_AMP] = ACTIONS(3415), + [anon_sym_AMP_AMP] = ACTIONS(3415), + [anon_sym_PIPE_PIPE] = ACTIONS(3415), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_LF] = ACTIONS(3415), + [anon_sym_AMP] = ACTIONS(3415), + }, + [2712] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6359), + [sym_comment] = ACTIONS(48), + }, + [2713] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6361), + [sym_comment] = ACTIONS(48), + }, + [2714] = { + [anon_sym_RBRACE] = ACTIONS(6361), + [sym_comment] = ACTIONS(48), + }, + [2715] = { + [sym__concat] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(3423), + [anon_sym_RPAREN] = ACTIONS(3423), + [anon_sym_SEMI_SEMI] = ACTIONS(3423), + [anon_sym_PIPE_AMP] = ACTIONS(3423), + [anon_sym_AMP_AMP] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_LF] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3423), + }, + [2716] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6363), + [sym_comment] = ACTIONS(48), + }, + [2717] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6365), + [sym_comment] = ACTIONS(48), + }, + [2718] = { + [anon_sym_RBRACE] = ACTIONS(6365), + [sym_comment] = ACTIONS(48), + }, + [2719] = { + [sym__concat] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(3431), + [anon_sym_RPAREN] = ACTIONS(3431), + [anon_sym_SEMI_SEMI] = ACTIONS(3431), + [anon_sym_PIPE_AMP] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_PIPE_PIPE] = ACTIONS(3431), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_LF] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3431), + }, + [2720] = { + [sym__concat] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(3435), + [anon_sym_RPAREN] = ACTIONS(3435), + [anon_sym_SEMI_SEMI] = ACTIONS(3435), + [anon_sym_PIPE_AMP] = ACTIONS(3435), + [anon_sym_AMP_AMP] = ACTIONS(3435), + [anon_sym_PIPE_PIPE] = ACTIONS(3435), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_LF] = ACTIONS(3435), + [anon_sym_AMP] = ACTIONS(3435), + }, + [2721] = { + [sym__concat] = ACTIONS(4464), + [sym_variable_name] = ACTIONS(4464), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_RPAREN] = ACTIONS(4466), + [anon_sym_SEMI_SEMI] = ACTIONS(4466), + [anon_sym_PIPE_AMP] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_PIPE_PIPE] = ACTIONS(4466), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4466), + [sym_word] = ACTIONS(4466), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym_LF] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4466), + }, + [2722] = { + [sym__concat] = ACTIONS(4468), + [sym_variable_name] = ACTIONS(4468), + [anon_sym_PIPE] = ACTIONS(4470), + [anon_sym_RPAREN] = ACTIONS(4470), + [anon_sym_SEMI_SEMI] = ACTIONS(4470), + [anon_sym_PIPE_AMP] = ACTIONS(4470), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE_PIPE] = ACTIONS(4470), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4470), + [sym_word] = ACTIONS(4470), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_LF] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4470), + }, + [2723] = { + [sym__concat] = ACTIONS(4472), + [sym_variable_name] = ACTIONS(4472), + [anon_sym_PIPE] = ACTIONS(4474), + [anon_sym_RPAREN] = ACTIONS(4474), + [anon_sym_SEMI_SEMI] = ACTIONS(4474), + [anon_sym_PIPE_AMP] = ACTIONS(4474), + [anon_sym_AMP_AMP] = ACTIONS(4474), + [anon_sym_PIPE_PIPE] = ACTIONS(4474), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4474), + [sym_word] = ACTIONS(4474), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym_LF] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4474), + }, + [2724] = { + [sym__concat] = ACTIONS(4476), + [sym_variable_name] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(4478), + [anon_sym_RPAREN] = ACTIONS(4478), + [anon_sym_SEMI_SEMI] = ACTIONS(4478), + [anon_sym_PIPE_AMP] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4478), + [sym_word] = ACTIONS(4478), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_LF] = ACTIONS(4478), + [anon_sym_AMP] = ACTIONS(4478), + }, + [2725] = { + [sym__concat] = ACTIONS(4480), + [sym_variable_name] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(4482), + [anon_sym_RPAREN] = ACTIONS(4482), + [anon_sym_SEMI_SEMI] = ACTIONS(4482), + [anon_sym_PIPE_AMP] = ACTIONS(4482), + [anon_sym_AMP_AMP] = ACTIONS(4482), + [anon_sym_PIPE_PIPE] = ACTIONS(4482), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4482), + [sym_word] = ACTIONS(4482), + [anon_sym_SEMI] = ACTIONS(4482), + [anon_sym_LF] = ACTIONS(4482), + [anon_sym_AMP] = ACTIONS(4482), + }, + [2726] = { + [sym__concat] = ACTIONS(4484), + [sym_variable_name] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(4486), + [anon_sym_RPAREN] = ACTIONS(4486), + [anon_sym_SEMI_SEMI] = ACTIONS(4486), + [anon_sym_PIPE_AMP] = ACTIONS(4486), + [anon_sym_AMP_AMP] = ACTIONS(4486), + [anon_sym_PIPE_PIPE] = ACTIONS(4486), + [sym_comment] = ACTIONS(110), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4486), + [sym_word] = ACTIONS(4486), + [anon_sym_SEMI] = ACTIONS(4486), + [anon_sym_LF] = ACTIONS(4486), + [anon_sym_AMP] = ACTIONS(4486), + }, + [2727] = { + [sym__concat] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(4381), + [anon_sym_RPAREN] = ACTIONS(3353), + [anon_sym_PIPE_AMP] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_PIPE_PIPE] = ACTIONS(3353), + [sym_comment] = ACTIONS(48), + }, + [2728] = { + [sym__concat] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(4383), + [anon_sym_RPAREN] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [sym_comment] = ACTIONS(48), + }, + [2729] = { + [sym__concat] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(4385), + [anon_sym_RPAREN] = ACTIONS(3401), + [anon_sym_PIPE_AMP] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_PIPE_PIPE] = ACTIONS(3401), + [sym_comment] = ACTIONS(48), + }, + [2730] = { + [sym__concat] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(4387), + [anon_sym_RPAREN] = ACTIONS(3405), + [anon_sym_PIPE_AMP] = ACTIONS(3405), + [anon_sym_AMP_AMP] = ACTIONS(3405), + [anon_sym_PIPE_PIPE] = ACTIONS(3405), + [sym_comment] = ACTIONS(48), + }, + [2731] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6367), + [sym_comment] = ACTIONS(48), + }, + [2732] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6369), + [sym_comment] = ACTIONS(48), + }, + [2733] = { + [anon_sym_RBRACE] = ACTIONS(6369), + [sym_comment] = ACTIONS(48), + }, + [2734] = { + [sym__concat] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(4393), + [anon_sym_RPAREN] = ACTIONS(3413), + [anon_sym_PIPE_AMP] = ACTIONS(3413), + [anon_sym_AMP_AMP] = ACTIONS(3413), + [anon_sym_PIPE_PIPE] = ACTIONS(3413), + [sym_comment] = ACTIONS(48), + }, + [2735] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6371), + [sym_comment] = ACTIONS(48), + }, + [2736] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6373), + [sym_comment] = ACTIONS(48), + }, + [2737] = { + [anon_sym_RBRACE] = ACTIONS(6373), + [sym_comment] = ACTIONS(48), + }, + [2738] = { + [sym__concat] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(4399), + [anon_sym_RPAREN] = ACTIONS(3421), + [anon_sym_PIPE_AMP] = ACTIONS(3421), + [anon_sym_AMP_AMP] = ACTIONS(3421), + [anon_sym_PIPE_PIPE] = ACTIONS(3421), + [sym_comment] = ACTIONS(48), + }, + [2739] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6375), + [sym_comment] = ACTIONS(48), + }, + [2740] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6377), + [sym_comment] = ACTIONS(48), + }, + [2741] = { + [anon_sym_RBRACE] = ACTIONS(6377), + [sym_comment] = ACTIONS(48), + }, + [2742] = { + [sym__concat] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(4405), + [anon_sym_RPAREN] = ACTIONS(3429), + [anon_sym_PIPE_AMP] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [sym_comment] = ACTIONS(48), + }, + [2743] = { + [sym__concat] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_RPAREN] = ACTIONS(3433), + [anon_sym_PIPE_AMP] = ACTIONS(3433), + [anon_sym_AMP_AMP] = ACTIONS(3433), + [anon_sym_PIPE_PIPE] = ACTIONS(3433), + [sym_comment] = ACTIONS(48), + }, + [2744] = { + [sym__concat] = ACTIONS(4464), + [sym_variable_name] = ACTIONS(4464), + [anon_sym_PIPE] = ACTIONS(5310), + [anon_sym_RPAREN] = ACTIONS(4464), + [anon_sym_PIPE_AMP] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(5310), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5310), + [sym_word] = ACTIONS(4466), + }, + [2745] = { + [sym__concat] = ACTIONS(4468), + [sym_variable_name] = ACTIONS(4468), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_RPAREN] = ACTIONS(4468), + [anon_sym_PIPE_AMP] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(5312), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5312), + [sym_word] = ACTIONS(4470), + }, + [2746] = { + [sym__concat] = ACTIONS(4472), + [sym_variable_name] = ACTIONS(4472), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_RPAREN] = ACTIONS(4472), + [anon_sym_PIPE_AMP] = ACTIONS(4472), + [anon_sym_AMP_AMP] = ACTIONS(4472), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5314), + [sym_word] = ACTIONS(4474), + }, + [2747] = { + [sym__concat] = ACTIONS(4476), + [sym_variable_name] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_RPAREN] = ACTIONS(4476), + [anon_sym_PIPE_AMP] = ACTIONS(4476), + [anon_sym_AMP_AMP] = ACTIONS(4476), + [anon_sym_PIPE_PIPE] = ACTIONS(5316), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5316), + [sym_word] = ACTIONS(4478), + }, + [2748] = { + [sym__concat] = ACTIONS(4480), + [sym_variable_name] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(5318), + [anon_sym_RPAREN] = ACTIONS(4480), + [anon_sym_PIPE_AMP] = ACTIONS(4480), + [anon_sym_AMP_AMP] = ACTIONS(4480), + [anon_sym_PIPE_PIPE] = ACTIONS(5318), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5318), + [sym_word] = ACTIONS(4482), + }, + [2749] = { + [sym__concat] = ACTIONS(4484), + [sym_variable_name] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_RPAREN] = ACTIONS(4484), + [anon_sym_PIPE_AMP] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5320), + [sym_word] = ACTIONS(4486), + }, + [2750] = { + [sym__concat] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(4381), + [anon_sym_PIPE_AMP] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_PIPE_PIPE] = ACTIONS(3353), + [anon_sym_BQUOTE] = ACTIONS(3353), + [sym_comment] = ACTIONS(48), + }, + [2751] = { + [sym__concat] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(4383), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(48), + }, + [2752] = { + [sym__concat] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(4385), + [anon_sym_PIPE_AMP] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_PIPE_PIPE] = ACTIONS(3401), + [anon_sym_BQUOTE] = ACTIONS(3401), + [sym_comment] = ACTIONS(48), + }, + [2753] = { + [sym__concat] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(4387), + [anon_sym_PIPE_AMP] = ACTIONS(3405), + [anon_sym_AMP_AMP] = ACTIONS(3405), + [anon_sym_PIPE_PIPE] = ACTIONS(3405), + [anon_sym_BQUOTE] = ACTIONS(3405), + [sym_comment] = ACTIONS(48), + }, + [2754] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6379), + [sym_comment] = ACTIONS(48), + }, + [2755] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6381), + [sym_comment] = ACTIONS(48), + }, + [2756] = { + [anon_sym_RBRACE] = ACTIONS(6381), + [sym_comment] = ACTIONS(48), + }, + [2757] = { + [sym__concat] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(4393), + [anon_sym_PIPE_AMP] = ACTIONS(3413), + [anon_sym_AMP_AMP] = ACTIONS(3413), + [anon_sym_PIPE_PIPE] = ACTIONS(3413), + [anon_sym_BQUOTE] = ACTIONS(3413), + [sym_comment] = ACTIONS(48), + }, + [2758] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6383), + [sym_comment] = ACTIONS(48), + }, + [2759] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6385), + [sym_comment] = ACTIONS(48), + }, + [2760] = { + [anon_sym_RBRACE] = ACTIONS(6385), + [sym_comment] = ACTIONS(48), + }, + [2761] = { + [sym__concat] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(4399), + [anon_sym_PIPE_AMP] = ACTIONS(3421), + [anon_sym_AMP_AMP] = ACTIONS(3421), + [anon_sym_PIPE_PIPE] = ACTIONS(3421), + [anon_sym_BQUOTE] = ACTIONS(3421), + [sym_comment] = ACTIONS(48), + }, + [2762] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6387), + [sym_comment] = ACTIONS(48), + }, + [2763] = { + [aux_sym_concatenation_repeat1] = STATE(1017), + [sym__concat] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(6389), + [sym_comment] = ACTIONS(48), + }, + [2764] = { + [anon_sym_RBRACE] = ACTIONS(6389), + [sym_comment] = ACTIONS(48), + }, + [2765] = { + [sym__concat] = ACTIONS(3429), + [anon_sym_PIPE] = ACTIONS(4405), + [anon_sym_PIPE_AMP] = ACTIONS(3429), + [anon_sym_AMP_AMP] = ACTIONS(3429), + [anon_sym_PIPE_PIPE] = ACTIONS(3429), + [anon_sym_BQUOTE] = ACTIONS(3429), + [sym_comment] = ACTIONS(48), + }, + [2766] = { + [sym__concat] = ACTIONS(3433), + [anon_sym_PIPE] = ACTIONS(4407), + [anon_sym_PIPE_AMP] = ACTIONS(3433), + [anon_sym_AMP_AMP] = ACTIONS(3433), + [anon_sym_PIPE_PIPE] = ACTIONS(3433), + [anon_sym_BQUOTE] = ACTIONS(3433), + [sym_comment] = ACTIONS(48), + }, + [2767] = { + [sym__concat] = ACTIONS(4464), + [sym_variable_name] = ACTIONS(4464), + [anon_sym_PIPE] = ACTIONS(5310), + [anon_sym_PIPE_AMP] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(5310), + [anon_sym_BQUOTE] = ACTIONS(4464), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5310), + [sym_word] = ACTIONS(4466), + }, + [2768] = { + [sym__concat] = ACTIONS(4468), + [sym_variable_name] = ACTIONS(4468), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_PIPE_AMP] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(5312), + [anon_sym_BQUOTE] = ACTIONS(4468), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5312), + [sym_word] = ACTIONS(4470), + }, + [2769] = { + [sym__concat] = ACTIONS(4472), + [sym_variable_name] = ACTIONS(4472), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_PIPE_AMP] = ACTIONS(4472), + [anon_sym_AMP_AMP] = ACTIONS(4472), + [anon_sym_PIPE_PIPE] = ACTIONS(5314), + [anon_sym_BQUOTE] = ACTIONS(4472), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5314), + [sym_word] = ACTIONS(4474), + }, + [2770] = { + [sym__concat] = ACTIONS(4476), + [sym_variable_name] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_PIPE_AMP] = ACTIONS(4476), + [anon_sym_AMP_AMP] = ACTIONS(4476), + [anon_sym_PIPE_PIPE] = ACTIONS(5316), + [anon_sym_BQUOTE] = ACTIONS(4476), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5316), + [sym_word] = ACTIONS(4478), + }, + [2771] = { + [sym__concat] = ACTIONS(4480), + [sym_variable_name] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(5318), + [anon_sym_PIPE_AMP] = ACTIONS(4480), + [anon_sym_AMP_AMP] = ACTIONS(4480), + [anon_sym_PIPE_PIPE] = ACTIONS(5318), + [anon_sym_BQUOTE] = ACTIONS(4480), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5318), + [sym_word] = ACTIONS(4482), + }, + [2772] = { + [sym__concat] = ACTIONS(4484), + [sym_variable_name] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_PIPE_AMP] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(5320), + [anon_sym_BQUOTE] = ACTIONS(4484), + [sym_comment] = ACTIONS(48), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5320), + [sym_word] = ACTIONS(4486), + }, + [2773] = { + [sym__concat] = ACTIONS(4464), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_RPAREN] = ACTIONS(4466), + [anon_sym_SEMI_SEMI] = ACTIONS(4466), + [anon_sym_PIPE_AMP] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_PIPE_PIPE] = ACTIONS(4466), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4466), + [anon_sym_LF] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4466), + }, + [2774] = { + [sym__concat] = ACTIONS(4468), + [anon_sym_PIPE] = ACTIONS(4470), + [anon_sym_RPAREN] = ACTIONS(4470), + [anon_sym_SEMI_SEMI] = ACTIONS(4470), + [anon_sym_PIPE_AMP] = ACTIONS(4470), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE_PIPE] = ACTIONS(4470), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_LF] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4470), + }, + [2775] = { + [sym__concat] = ACTIONS(4472), + [anon_sym_PIPE] = ACTIONS(4474), + [anon_sym_RPAREN] = ACTIONS(4474), + [anon_sym_SEMI_SEMI] = ACTIONS(4474), + [anon_sym_PIPE_AMP] = ACTIONS(4474), + [anon_sym_AMP_AMP] = ACTIONS(4474), + [anon_sym_PIPE_PIPE] = ACTIONS(4474), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4474), + [anon_sym_LF] = ACTIONS(4474), + [anon_sym_AMP] = ACTIONS(4474), + }, + [2776] = { + [sym__concat] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(4478), + [anon_sym_RPAREN] = ACTIONS(4478), + [anon_sym_SEMI_SEMI] = ACTIONS(4478), + [anon_sym_PIPE_AMP] = ACTIONS(4478), + [anon_sym_AMP_AMP] = ACTIONS(4478), + [anon_sym_PIPE_PIPE] = ACTIONS(4478), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4478), + [anon_sym_LF] = ACTIONS(4478), + [anon_sym_AMP] = ACTIONS(4478), + }, + [2777] = { + [sym__concat] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(4482), + [anon_sym_RPAREN] = ACTIONS(4482), + [anon_sym_SEMI_SEMI] = ACTIONS(4482), + [anon_sym_PIPE_AMP] = ACTIONS(4482), + [anon_sym_AMP_AMP] = ACTIONS(4482), + [anon_sym_PIPE_PIPE] = ACTIONS(4482), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4482), + [anon_sym_LF] = ACTIONS(4482), + [anon_sym_AMP] = ACTIONS(4482), + }, + [2778] = { + [sym__concat] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(4486), + [anon_sym_RPAREN] = ACTIONS(4486), + [anon_sym_SEMI_SEMI] = ACTIONS(4486), + [anon_sym_PIPE_AMP] = ACTIONS(4486), + [anon_sym_AMP_AMP] = ACTIONS(4486), + [anon_sym_PIPE_PIPE] = ACTIONS(4486), + [sym_comment] = ACTIONS(110), + [anon_sym_SEMI] = ACTIONS(4486), + [anon_sym_LF] = ACTIONS(4486), + [anon_sym_AMP] = ACTIONS(4486), + }, + [2779] = { + [sym__concat] = ACTIONS(4464), + [anon_sym_PIPE] = ACTIONS(5310), + [anon_sym_RPAREN] = ACTIONS(4464), + [anon_sym_PIPE_AMP] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [sym_comment] = ACTIONS(48), + }, + [2780] = { + [sym__concat] = ACTIONS(4468), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_RPAREN] = ACTIONS(4468), + [anon_sym_PIPE_AMP] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(4468), + [sym_comment] = ACTIONS(48), + }, + [2781] = { + [sym__concat] = ACTIONS(4472), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_RPAREN] = ACTIONS(4472), + [anon_sym_PIPE_AMP] = ACTIONS(4472), + [anon_sym_AMP_AMP] = ACTIONS(4472), + [anon_sym_PIPE_PIPE] = ACTIONS(4472), + [sym_comment] = ACTIONS(48), + }, + [2782] = { + [sym__concat] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_RPAREN] = ACTIONS(4476), + [anon_sym_PIPE_AMP] = ACTIONS(4476), + [anon_sym_AMP_AMP] = ACTIONS(4476), + [anon_sym_PIPE_PIPE] = ACTIONS(4476), + [sym_comment] = ACTIONS(48), + }, + [2783] = { + [sym__concat] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(5318), + [anon_sym_RPAREN] = ACTIONS(4480), + [anon_sym_PIPE_AMP] = ACTIONS(4480), + [anon_sym_AMP_AMP] = ACTIONS(4480), + [anon_sym_PIPE_PIPE] = ACTIONS(4480), + [sym_comment] = ACTIONS(48), + }, + [2784] = { + [sym__concat] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_RPAREN] = ACTIONS(4484), + [anon_sym_PIPE_AMP] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(4484), + [sym_comment] = ACTIONS(48), + }, + [2785] = { + [sym__concat] = ACTIONS(4464), + [anon_sym_PIPE] = ACTIONS(5310), + [anon_sym_PIPE_AMP] = ACTIONS(4464), + [anon_sym_AMP_AMP] = ACTIONS(4464), + [anon_sym_PIPE_PIPE] = ACTIONS(4464), + [anon_sym_BQUOTE] = ACTIONS(4464), + [sym_comment] = ACTIONS(48), + }, + [2786] = { + [sym__concat] = ACTIONS(4468), + [anon_sym_PIPE] = ACTIONS(5312), + [anon_sym_PIPE_AMP] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(4468), + [anon_sym_BQUOTE] = ACTIONS(4468), + [sym_comment] = ACTIONS(48), + }, + [2787] = { + [sym__concat] = ACTIONS(4472), + [anon_sym_PIPE] = ACTIONS(5314), + [anon_sym_PIPE_AMP] = ACTIONS(4472), + [anon_sym_AMP_AMP] = ACTIONS(4472), + [anon_sym_PIPE_PIPE] = ACTIONS(4472), + [anon_sym_BQUOTE] = ACTIONS(4472), + [sym_comment] = ACTIONS(48), + }, + [2788] = { + [sym__concat] = ACTIONS(4476), + [anon_sym_PIPE] = ACTIONS(5316), + [anon_sym_PIPE_AMP] = ACTIONS(4476), + [anon_sym_AMP_AMP] = ACTIONS(4476), + [anon_sym_PIPE_PIPE] = ACTIONS(4476), + [anon_sym_BQUOTE] = ACTIONS(4476), + [sym_comment] = ACTIONS(48), + }, + [2789] = { + [sym__concat] = ACTIONS(4480), + [anon_sym_PIPE] = ACTIONS(5318), + [anon_sym_PIPE_AMP] = ACTIONS(4480), + [anon_sym_AMP_AMP] = ACTIONS(4480), + [anon_sym_PIPE_PIPE] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4480), + [sym_comment] = ACTIONS(48), + }, + [2790] = { + [sym__concat] = ACTIONS(4484), + [anon_sym_PIPE] = ACTIONS(5320), + [anon_sym_PIPE_AMP] = ACTIONS(4484), + [anon_sym_AMP_AMP] = ACTIONS(4484), + [anon_sym_PIPE_PIPE] = ACTIONS(4484), + [anon_sym_BQUOTE] = ACTIONS(4484), + [sym_comment] = ACTIONS(48), }, }; @@ -35429,1736 +54483,3122 @@ static TSParseActionEntry ts_parse_actions[] = { [5] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, SHIFT_EXTRA(), RECOVER(), [8] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2), [10] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3), - [12] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4), - [14] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_program, 0), + [12] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_program, 0), + [14] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4), [16] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(5), [18] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(6), [20] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(7), [22] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(8), - [24] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(9), - [26] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(10), + [24] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(9), + [26] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(10), [28] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(11), - [30] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(12), - [32] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(12), + [30] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(11), + [32] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(12), [34] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(13), - [36] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(14), - [38] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(15), + [36] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(14), + [38] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(15), [40] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(16), [42] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(17), [44] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(18), - [46] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT_EXTRA(), - [48] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(19), - [50] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(30), - [52] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(30), - [54] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1), - [56] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(31), - [58] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1), - [60] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT_EXTRA(), - [62] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(33), - [64] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(34), - [66] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(36), - [68] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(41), - [70] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(42), - [72] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(43), - [74] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(44), - [76] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(45), - [78] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(46), - [80] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(47), - [82] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(48), - [84] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(50), - [86] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(51), - [88] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(52), - [90] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(53), - [92] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(54), - [94] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(55), - [96] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(62), - [98] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(63), - [100] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 1), - [102] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(64), - [104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(67), + [46] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(19), + [48] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT_EXTRA(), + [50] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(20), + [52] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(31), + [54] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(31), + [56] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(32), + [58] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(33), + [60] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(35), + [62] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(40), + [64] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(41), + [66] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(42), + [68] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(43), + [70] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(44), + [72] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(45), + [74] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(46), + [76] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(47), + [78] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(42), + [80] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(49), + [82] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(50), + [84] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(51), + [86] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(52), + [88] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(53), + [90] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(54), + [92] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(55), + [94] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(56), + [96] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(57), + [98] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(58), + [100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(59), + [102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(60), + [104] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(61), [106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(68), - [108] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(69), - [110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(70), - [112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(71), - [114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(72), - [116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(73), - [118] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(74), - [120] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(76), - [122] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(77), - [124] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(78), - [126] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(79), - [128] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(80), - [130] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(81), - [132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(83), - [134] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(84), - [136] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(83), - [138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(86), - [140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(87), - [142] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(88), - [144] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(86), - [146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(90), - [148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(91), - [150] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(92), - [152] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(93), - [154] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(94), - [156] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(95), - [158] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(96), - [160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(97), - [162] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(98), - [164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(99), - [166] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(100), - [168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(101), - [170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(102), - [172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(103), - [174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(104), - [176] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(105), - [178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(112), - [180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(113), - [182] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(114), - [184] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(115), - [186] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(116), - [188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), - [190] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), - [192] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(124), - [194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), - [196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), - [198] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 1), - [200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), - [202] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(126), - [204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(127), - [206] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(128), - [208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(129), - [210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(130), - [212] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1), - [214] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(131), - [216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(132), - [218] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(13), - [220] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(130), - [222] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(14), - [224] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(15), - [226] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(16), - [228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(17), - [230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(18), - [232] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(133), - [234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), - [236] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), - [238] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), - [240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_program, 1), - [242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(139), - [244] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(140), + [108] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 1), + [110] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT_EXTRA(), + [112] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(69), + [114] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(70), + [116] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(73), + [118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(74), + [120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(75), + [122] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(76), + [124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(77), + [126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(78), + [128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(79), + [130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(80), + [132] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(75), + [134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(82), + [138] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [140] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(84), + [142] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(85), + [144] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(86), + [146] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(87), + [148] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(88), + [150] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(89), + [152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1), + [154] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1), + [156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(91), + [158] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(92), + [160] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(91), + [162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(93), + [164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(94), + [166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(95), + [168] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(96), + [170] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(94), + [172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(98), + [174] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(99), + [176] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(100), + [178] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(101), + [180] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(102), + [182] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(103), + [184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(104), + [186] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(105), + [188] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(106), + [190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(107), + [192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(108), + [194] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(109), + [196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(110), + [198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(111), + [200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(112), + [202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(113), + [204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(114), + [206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(121), + [208] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(122), + [210] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(123), + [212] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(124), + [214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(125), + [216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(126), + [218] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(127), + [220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(128), + [222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(129), + [224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(130), + [226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(131), + [228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(132), + [230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(140), + [232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), + [234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), + [236] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 1), + [238] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), + [240] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(141), + [242] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(142), + [244] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(143), [246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(144), - [248] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(145), - [250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(147), - [252] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(148), - [254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), - [256] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), - [258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(150), - [260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(151), - [262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(152), - [264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(153), - [266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(154), - [268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(155), - [270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(156), - [272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(157), - [274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(158), - [276] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(159), - [278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(160), - [280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(161), - [282] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(162), - [284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(163), - [286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(164), - [288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(165), - [290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(166), - [292] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(167), - [294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_variable_assignment, 2), - [296] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_variable_assignment, 2), - [298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(169), - [300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(170), - [302] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(172), - [304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(173), - [306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(174), - [308] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(175), - [310] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(176), - [312] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(178), - [314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(180), - [316] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(181), - [318] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(180), - [320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(183), - [322] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(184), - [324] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(192), - [326] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(193), - [328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(195), - [330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(196), - [332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(199), - [334] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(200), - [336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(201), - [338] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(204), - [340] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(206), - [342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(207), - [344] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(208), - [346] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(209), - [348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(210), - [350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(211), - [352] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(212), - [354] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(211), - [356] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(213), - [358] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(219), - [360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [362] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(221), - [366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), - [368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), - [370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), - [372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), - [374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(224), - [376] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2), - [378] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(226), - [380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(228), - [382] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(229), - [384] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(228), - [386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(231), - [388] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(232), - [390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), - [392] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), - [394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 2), - [396] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 2), - [398] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 1), - [400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(241), - [402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(242), - [404] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(241), - [406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(244), - [408] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(245), - [410] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(251), - [412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_special_variable_name, 1), - [414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_special_variable_name, 1), - [416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), - [418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), - [420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2), - [422] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2), - [424] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_special_variable_name, 1), - [426] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(253), - [428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(255), - [430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(256), - [432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(257), - [434] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(256), - [436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(258), - [438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(259), - [440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(260), - [442] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(259), - [444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(261), - [446] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1), - [448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(263), - [450] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(265), - [452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(268), - [454] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(269), - [456] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(271), - [458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(275), - [460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(276), - [462] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 1), - [464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 1), - [466] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(277), - [468] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(280), - [470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(282), - [472] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(283), - [474] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(282), - [476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(285), - [478] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(286), - [480] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), - [482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(294), - [484] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(296), - [486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(297), - [488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(296), - [490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(298), - [492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(299), - [494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(300), - [496] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 1), - [498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 1), - [500] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(301), - [502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(301), - [504] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(302), - [506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(302), - [508] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(303), - [510] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(308), - [512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(311), - [514] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(312), - [516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(313), - [518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(316), - [520] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(318), - [522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(318), - [524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(319), - [526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(320), - [528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(321), - [530] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(322), - [532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(322), - [534] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(323), - [536] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(326), - [538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(328), - [540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(329), - [542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2, .alias_sequence_id = 1), - [544] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2, .alias_sequence_id = 1), - [546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), - [548] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__terminated_statement, 2), - [550] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), - [552] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(334), - [554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(334), - [556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [558] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(335), - [562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(336), - [564] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(337), - [566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(338), - [568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(339), - [570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(340), - [572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(341), - [574] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(342), - [576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(344), - [578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(345), - [580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [582] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), - [586] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), - [588] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2), - [590] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2), - [593] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), - [596] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), - [599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), - [601] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), - [604] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), - [607] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), - [610] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), - [613] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), - [616] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), - [619] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), - [622] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), - [625] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), - [628] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13), - [631] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), - [634] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), - [637] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16), - [640] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), - [643] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), - [646] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19), - [649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(350), - [651] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), - [654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), - [656] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(139), - [659] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(12), - [662] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(12), - [665] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), - [667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), - [669] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3), - [671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 5), - [673] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 5), - [675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [677] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2, .alias_sequence_id = 3), - [681] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2, .alias_sequence_id = 3), - [683] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(31), - [686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), - [688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(353), - [690] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), - [692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(355), - [694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(356), - [696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(357), - [698] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(358), - [700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(359), - [702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(360), - [704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(361), - [706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(362), - [708] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(363), - [710] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(366), - [712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(368), - [714] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(369), - [716] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(368), - [718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(371), - [720] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(372), - [722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), - [724] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), - [726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(381), - [728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(382), - [730] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(384), - [732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(386), - [734] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(387), - [736] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(386), - [738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(389), - [740] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(390), - [742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(398), - [744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(400), - [746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(401), - [748] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(402), - [750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(403), - [752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(404), - [754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(405), - [756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(406), - [758] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(407), - [760] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(410), - [762] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), - [764] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(415), - [766] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(416), - [768] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(417), - [770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(425), - [772] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(426), - [774] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(427), - [776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(428), - [778] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(430), - [780] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(431), - [782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(433), - [784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(434), - [786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(435), - [788] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(434), - [790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(436), - [792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(437), - [794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(438), - [796] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(437), - [798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(439), - [800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(440), - [802] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(441), - [804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(442), - [806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(443), - [808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(444), - [810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(446), - [812] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3, .alias_sequence_id = 4), - [814] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(447), - [816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(450), - [818] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(451), - [820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(452), - [822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(454), - [824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(456), - [826] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), - [828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(457), - [830] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(460), - [832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(460), - [834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(461), - [836] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(462), - [838] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(457), - [840] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(466), - [842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(468), - [844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(469), - [846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(470), - [848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(471), - [850] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(472), - [852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(473), - [854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(474), - [856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(475), - [858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(476), - [860] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(477), - [862] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(62), - [865] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(63), - [868] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [870] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(64), - [873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(478), - [875] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(479), - [877] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenation, 2), - [879] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 2), - [881] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(481), - [883] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), - [885] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2), - [887] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(482), - [889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(484), - [891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(485), - [893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(486), - [895] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(485), - [897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(487), - [899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(488), - [901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(489), - [903] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(488), - [905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(490), - [907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(491), - [909] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenation, 2, .alias_sequence_id = 1), - [911] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(492), - [913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(494), - [915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(495), - [917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(496), - [919] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(495), - [921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(497), - [923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(498), - [925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(499), - [927] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(498), - [929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(500), - [931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 3), - [933] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 3), - [935] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), - [937] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(77), - [940] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(78), - [943] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(79), - [946] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(80), - [949] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(81), - [952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(501), - [954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(502), - [956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(503), - [958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(504), - [960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [962] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(505), - [966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(506), - [968] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(507), - [970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(509), - [972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), - [974] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), - [976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(510), - [978] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(511), - [980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(513), - [982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(514), - [984] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(515), - [986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(517), - [988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(518), - [990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(519), - [992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(520), - [994] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(521), - [996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(522), - [998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(523), - [1000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(524), - [1002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(525), - [1004] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(526), - [1006] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_variable_assignment, 2), - [1008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(527), - [1010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(528), - [1012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(530), - [1014] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(531), - [1016] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(532), - [1018] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(533), - [1020] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(534), - [1022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(535), - [1024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(536), - [1026] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(538), - [1028] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(539), - [1030] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [1032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(542), - [1034] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), - [1036] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 2), - [1038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), - [1040] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(545), - [1042] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(546), - [1044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(548), - [1046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(549), - [1048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(550), - [1050] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(549), - [1052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(551), - [1054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(552), - [1056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(553), - [1058] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(552), - [1060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(554), - [1062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(555), - [1064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(556), - [1066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), - [1068] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), - [1070] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(561), - [1072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(561), - [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1), - [1076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(562), - [1078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(563), - [1080] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(564), - [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(565), - [1084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(566), - [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(567), - [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(568), - [1090] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(569), - [1092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(571), - [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(572), - [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1), - [1100] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 2), - [1102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2), - [1104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(579), - [1106] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(580), - [1108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(581), - [1110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(583), - [1112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(585), - [1114] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(589), - [1116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(589), - [1118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(590), - [1120] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(591), - [1122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), - [1124] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), - [1126] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), - [1128] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), - [1130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(597), - [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(598), - [1134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(600), - [1136] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), - [1138] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(602), - [1140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(604), - [1142] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(605), - [1144] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(604), - [1146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(607), - [1148] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(608), - [1150] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), - [1152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), - [1154] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), - [1156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(617), - [1158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(618), - [1160] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(619), - [1162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(620), - [1164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), - [1166] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), - [1168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [1170] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(130), - [1173] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [1175] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(13), - [1178] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(130), - [1181] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(14), - [1184] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(15), - [1187] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(16), - [1190] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(17), - [1193] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(18), - [1196] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(133), - [1199] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), - [1201] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(129), - [1204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), - [1206] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(131), - [1209] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(132), - [1212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(622), - [1214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(623), - [1216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(624), - [1218] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(625), - [1220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(627), - [1222] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(628), - [1224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(630), - [1226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 2), - [1228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 2), - [1230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(632), - [1232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(634), - [1234] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(635), - [1236] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(634), - [1238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(637), - [1240] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(638), - [1242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(647), - [1244] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(649), - [1246] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(650), - [1248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(652), - [1250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(653), - [1252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(654), - [1254] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(653), - [1256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(655), - [1258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(656), - [1260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(657), - [1262] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(656), - [1264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(658), - [1266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(659), - [1268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(660), - [1270] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(661), - [1272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), - [1274] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(663), - [1276] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(664), - [1278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(666), - [1280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(667), - [1282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(668), - [1284] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(667), - [1286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(669), - [1288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(670), - [1290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(671), - [1292] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(670), - [1294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(672), - [1296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(673), - [1298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 5), - [1300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(674), - [1302] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(676), - [1304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(678), - [1306] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(679), - [1308] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(678), - [1310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(681), - [1312] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(682), - [1314] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(691), - [1316] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(401), - [1318] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(400), - [1320] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(402), - [1322] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(403), - [1324] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(404), - [1326] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(405), - [1328] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(406), - [1330] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(407), - [1332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), - [1334] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(693), - [1336] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(694), - [1338] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), - [1340] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 1), - [1342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(701), - [1344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), - [1346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(702), - [1348] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(702), - [1350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(416), - [1352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(417), - [1354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(707), - [1356] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(708), - [1358] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(709), - [1360] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(713), - [1362] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(174), - [1365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(714), - [1367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(715), - [1369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(716), - [1371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(717), - [1373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(718), - [1375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(719), - [1377] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(720), - [1379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(722), - [1381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(723), - [1383] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(724), - [1385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(726), - [1387] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(727), - [1389] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(729), - [1391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [1393] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [1395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(731), - [1397] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(733), - [1399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(733), - [1401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(734), - [1403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(735), - [1405] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(736), - [1407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(737), - [1409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(738), - [1411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(739), - [1413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(740), - [1415] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(741), - [1417] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 4), - [1419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745), - [1421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(746), - [1423] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(747), - [1425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(748), - [1427] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(749), - [1429] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(201), - [1432] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), - [1434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(751), - [1436] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(752), - [1438] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(211), - [1441] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(211), - [1444] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(213), - [1447] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(210), - [1450] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(212), - [1453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(755), - [1455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(757), - [1457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(759), - [1459] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(761), - [1461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(763), - [1463] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(764), - [1465] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(763), - [1467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(766), - [1469] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(767), - [1471] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1473] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2, .alias_sequence_id = 3), - [1475] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(224), - [1478] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 3), - [1480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(776), - [1482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(777), - [1484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(778), - [1486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(779), - [1488] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [1490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(780), - [1492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(781), - [1494] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(782), - [1496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(784), - [1498] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3), - [1500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(785), - [1502] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(786), - [1504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(788), - [1506] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_substitution, 3), - [1508] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_process_substitution, 3), - [1510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(789), - [1512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(790), - [1514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(791), - [1516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(792), - [1518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(793), - [1520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(794), - [1522] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(795), - [1524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(797), - [1526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(798), - [1528] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(799), - [1530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(801), - [1532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 6), - [1534] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 6), - [1536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(802), - [1538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), - [1540] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), - [1542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(803), - [1544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(804), - [1546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(805), - [1548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [1550] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [1552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(807), - [1554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(808), - [1556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(810), - [1558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(811), - [1560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(812), - [1562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(813), - [1564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(814), - [1566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(815), - [1568] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(261), - [1571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(816), - [1573] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2), - [1575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(818), - [1577] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(820), - [1579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(822), - [1581] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(823), - [1583] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(822), - [1585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(825), - [1587] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(826), - [1589] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), - [1591] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(836), - [1593] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 3), - [1595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), - [1597] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(838), - [1599] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(842), - [1601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(843), - [1603] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(844), - [1605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(845), - [1607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(846), - [1609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(847), - [1611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(849), - [1613] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3, .alias_sequence_id = 4), - [1615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3, .alias_sequence_id = 4), - [1617] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(850), - [1619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), - [1621] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 3), - [1623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), - [1625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(852), - [1627] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(852), - [1629] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(853), - [1631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(854), - [1633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(855), - [1635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(856), - [1637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(857), - [1639] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(858), - [1641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(859), - [1643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(860), - [1645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(861), - [1647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(862), - [1649] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(863), - [1651] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(275), - [1654] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(276), - [1657] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1661] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(277), - [1664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(864), - [1666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(865), - [1668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(866), - [1670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(867), - [1672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(868), - [1674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(869), - [1676] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(870), - [1678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(872), - [1680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(873), - [1682] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(874), - [1684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(876), - [1686] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pipeline, 3), - [1688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), - [1690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), - [1692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(878), - [1694] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(879), - [1696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(881), - [1698] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(883), - [1700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(885), - [1702] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(886), - [1704] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(885), - [1706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(888), - [1708] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(889), - [1710] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 1), - [1712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(898), - [1714] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc_redirect, 2), - [1716] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(300), - [1719] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [1721] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(99), - [1724] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(100), - [1727] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(101), - [1730] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(102), - [1733] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(103), - [1736] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(104), - [1739] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(303), - [1742] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 3), - [1744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3), - [1746] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(299), - [1749] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), - [1751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), - [1753] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(301), - [1756] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(301), - [1759] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(302), - [1762] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(302), - [1765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(903), - [1767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(904), - [1769] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(905), - [1771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(905), - [1773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(906), - [1775] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(907), - [1777] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(313), - [1780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(909), - [1782] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(910), - [1784] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(321), - [1787] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(323), - [1790] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(320), - [1793] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(322), - [1796] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(322), - [1799] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 2), - [1801] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), - [1803] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 5), - [1805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(915), - [1807] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(916), - [1809] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(918), - [1811] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(919), - [1813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(921), - [1815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), - [1817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(923), - [1819] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(922), - [1821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(924), - [1823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(925), - [1825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(926), - [1827] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(925), - [1829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(927), - [1831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(928), - [1833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), - [1835] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), - [1837] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), - [1839] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), - [1841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(929), - [1843] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(930), - [1845] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(929), - [1847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(932), - [1849] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(933), - [1851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(935), - [1853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(937), - [1855] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), - [1857] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(353), - [1860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(939), - [1862] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(940), - [1864] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(942), - [1866] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(943), - [1868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(945), - [1870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), - [1872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(947), - [1874] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(946), - [1876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(948), - [1878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), - [1880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(950), - [1882] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(949), - [1884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(951), - [1886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(952), - [1888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 3), - [1890] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 3), - [1892] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(355), - [1895] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(357), - [1898] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(358), - [1901] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(359), - [1904] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(360), - [1907] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(361), - [1910] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(362), - [1913] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(363), - [1916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(953), - [1918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(954), - [1920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(955), - [1922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(956), - [1924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(957), - [1926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(958), - [1928] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(959), - [1930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(961), - [1932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(962), - [1934] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(963), - [1936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(965), - [1938] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(381), - [1941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966), - [1943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(967), - [1945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(968), - [1947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(969), - [1949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(970), - [1951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(971), - [1953] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(972), - [1955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(974), - [1957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(975), - [1959] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(976), - [1961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(978), - [1963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(979), - [1965] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(980), - [1967] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(982), - [1969] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(983), - [1971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(985), - [1973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(986), - [1975] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(987), - [1977] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(986), - [1979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(988), - [1981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(989), - [1983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(990), - [1985] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(989), - [1987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(991), - [1989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(992), - [1991] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(400), - [1994] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(401), - [1997] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(400), - [2000] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(402), - [2003] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(403), - [2006] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(404), - [2009] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(405), - [2012] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(406), - [2015] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(407), - [2018] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), - [2020] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), - [2022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(994), - [2024] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(995), - [2026] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), - [2028] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [2030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(997), - [2032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), - [2034] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(416), - [2037] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(999), - [2039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000), - [2041] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), - [2043] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), - [2045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), - [2047] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), - [2049] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), - [2051] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1006), - [2053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1009), - [2055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1010), - [2057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1011), - [2059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1012), - [2061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1013), - [2063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1014), - [2065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1015), - [2067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1016), - [2069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1017), - [2071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1018), - [2073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1019), - [2075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1020), - [2077] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [2079] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1021), - [2081] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 4), - [2083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [2085] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [2087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1024), - [2089] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1025), - [2091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1027), - [2093] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1029), - [2095] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1031), - [2097] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1032), - [2099] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1031), - [2101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1034), - [2103] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1035), - [2105] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1046), - [2107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1046), - [2109] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1047), - [2111] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1048), - [2113] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), - [2115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1052), - [2117] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1053), - [2119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1055), - [2121] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1056), - [2123] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1057), - [2125] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1059), - [2127] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1060), - [2129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1061), - [2131] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1060), - [2133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1062), - [2135] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1063), - [2137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1064), - [2139] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1063), - [2141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1065), - [2143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1066), - [2145] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 6), - [2147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1067), - [2149] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4), - [2151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1068), - [2153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1069), - [2155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1070), - [2157] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [2159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1071), - [2161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1072), - [2163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1073), - [2165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1074), - [2167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1075), - [2169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1076), - [2171] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1077), - [2173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1078), - [2175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1079), - [2177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1080), - [2179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1081), - [2181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1082), - [2183] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1083), - [2185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1084), - [2187] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1085), - [2189] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1086), - [2191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1087), - [2193] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1088), - [2195] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1089), - [2197] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1090), - [2199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1091), - [2201] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1092), - [2203] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093), - [2205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 4), - [2207] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 4), - [2209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1095), - [2211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [2213] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [2215] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096), - [2217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), - [2219] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), - [2221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1097), - [2223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [2225] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [2227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1098), - [2229] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1099), - [2231] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 2), - [2233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1101), - [2235] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1102), - [2237] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1103), - [2239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1105), - [2241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1106), - [2243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1107), - [2245] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1106), - [2247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), - [2249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1109), - [2251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1110), - [2253] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1109), - [2255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1111), - [2257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112), - [2259] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1113), - [2261] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 2), - [2263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), - [2265] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1114), - [2267] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 4), - [2269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), - [2271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1115), - [2273] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1115), - [2275] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1118), - [2277] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1120), - [2279] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1121), - [2281] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1123), - [2283] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), - [2285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1125), - [2287] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1126), - [2289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1126), - [2291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1127), - [2293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1128), - [2295] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1129), - [2297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1130), - [2299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1131), - [2301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1132), - [2303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1133), - [2305] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1134), - [2307] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 4), - [2309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 4), - [2311] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 4), - [2313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), - [2315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1136), - [2317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1137), - [2319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1139), - [2321] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1141), - [2323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1143), - [2325] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1144), - [2327] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1143), - [2329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1146), - [2331] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1147), - [2333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1156), - [2335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1157), - [2337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1158), - [2339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1159), - [2341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1160), - [2343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1161), - [2345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1162), - [2347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1163), - [2349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1164), - [2351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1165), - [2353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1166), - [2355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1167), - [2357] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 2), - [2359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4, .alias_sequence_id = 2), - [2361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1169), - [2363] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1170), - [2365] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1172), - [2367] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1173), - [2369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1175), - [2371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1176), - [2373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1177), - [2375] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1176), - [2377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1178), - [2379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1179), - [2381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1180), - [2383] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1179), - [2385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1181), - [2387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1182), - [2389] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 2), - [2391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), - [2393] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 4), - [2395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4), - [2397] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1186), - [2399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1186), - [2401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1187), - [2403] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1188), - [2405] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 2), - [2407] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(600), - [2410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1192), - [2412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1193), - [2414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1194), - [2416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1195), - [2418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1196), - [2420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1197), - [2422] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1198), - [2424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1200), - [2426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1201), - [2428] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1202), - [2430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1204), - [2432] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1205), - [2434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1207), - [2436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1208), - [2438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1209), - [2440] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1208), - [2442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1210), - [2444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1211), - [2446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1212), - [2448] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1211), - [2450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), - [2452] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), - [2454] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(617), - [2457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), - [2459] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(619), - [2462] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(620), - [2465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1213), - [2467] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(630), - [2470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1214), - [2472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1215), - [2474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1216), - [2476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1217), - [2478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1218), - [2480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1219), - [2482] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1220), - [2484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1222), - [2486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1223), - [2488] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1224), - [2490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1226), - [2492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1227), - [2494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1228), - [2496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1229), - [2498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1230), - [2500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1231), - [2502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1232), - [2504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1233), - [2506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1234), - [2508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1235), - [2510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1236), - [2512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1237), - [2514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1238), - [2516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1239), - [2518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1240), - [2520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1241), - [2522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242), - [2524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1243), - [2526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1244), - [2528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1245), - [2530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1246), - [2532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1247), - [2534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1248), - [2536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1249), - [2538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1250), - [2540] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(674), - [2543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1251), - [2545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1252), - [2547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1253), - [2549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1254), - [2551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1255), - [2553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1256), - [2555] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1257), - [2557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1259), - [2559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1260), - [2561] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1261), - [2563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1263), - [2565] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 4), - [2567] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), - [2569] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), - [2571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1265), - [2573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1266), - [2575] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1267), - [2577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1269), - [2579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1274), - [2581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1277), - [2583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1279), - [2585] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), - [2587] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(707), - [2590] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), - [2592] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(161), - [2595] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(162), - [2598] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(163), - [2601] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(164), - [2604] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(165), - [2607] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(166), - [2610] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(709), - [2613] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1280), - [2615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1281), - [2617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1282), - [2619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1283), - [2621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1284), - [2623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1285), - [2625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1286), - [2627] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [2629] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1287), - [2631] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6, .alias_sequence_id = 4), - [2633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1288), - [2635] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1289), - [2637] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1291), - [2639] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1292), - [2641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1294), - [2643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1295), - [2645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1296), - [2647] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1295), - [2649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1297), - [2651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1298), - [2653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1299), - [2655] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1298), - [2657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1300), - [2659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1301), - [2661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1302), - [2663] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1303), - [2665] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(757), - [2668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1307), - [2670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1308), - [2672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1309), - [2674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1310), - [2676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1311), - [2678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1312), - [2680] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1313), - [2682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1315), - [2684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1316), - [2686] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1317), - [2688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1319), - [2690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1320), - [2692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1321), - [2694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1322), - [2696] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 4), - [2698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1323), - [2700] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [2702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1324), - [2704] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5), - [2706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1325), - [2708] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [2710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1326), - [2712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1327), - [2714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1328), - [2716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1329), - [2718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1330), - [2720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1331), - [2722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1332), - [2724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1333), - [2726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 4), - [2728] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 4), - [2730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), - [2732] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), - [2734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), - [2736] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), - [2738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 8), - [2740] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 8), - [2742] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(816), - [2745] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 3), - [2747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1334), - [2749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1335), - [2751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1336), - [2753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1337), - [2755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1338), - [2757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1339), - [2759] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1340), - [2761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1342), - [2763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1343), - [2765] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1344), - [2767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1346), - [2769] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 3), - [2771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), - [2773] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5), - [2775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [2777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1348), - [2779] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5), - [2781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), - [2783] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1350), - [2785] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [2787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [2789] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1352), - [2791] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 4), - [2793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 4), - [2795] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), - [2797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1355), - [2799] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1356), - [2801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1358), - [2803] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1360), - [2805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1362), - [2807] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1363), - [2809] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1362), - [2811] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1365), - [2813] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1366), - [2815] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 5), - [2817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), - [2819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1375), - [2821] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1376), - [2823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1378), - [2825] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1379), - [2827] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1380), - [2829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1382), - [2831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1383), - [2833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1384), - [2835] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1383), - [2837] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1385), - [2839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1386), - [2841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1387), - [2843] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1386), - [2845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1388), - [2847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1389), - [2849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1390), - [2851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1391), - [2853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1392), - [2855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1393), - [2857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1394), - [2859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1395), - [2861] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 2), - [2863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5, .alias_sequence_id = 2), - [2865] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(881), - [2868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1396), - [2870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1397), - [2872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1398), - [2874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1399), - [2876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1400), - [2878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1401), - [2880] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1402), - [2882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1404), - [2884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1405), - [2886] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1406), - [2888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1408), - [2890] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3), - [2892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1409), - [2894] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1410), - [2896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1414), - [2898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1415), - [2900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1416), - [2902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1417), - [2904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1418), - [2906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1419), - [2908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1420), - [2910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1421), - [2912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1422), - [2914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1423), - [2916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1424), - [2918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1425), - [2920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1426), - [2922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1427), - [2924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1428), - [2926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1429), - [2928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1430), - [2930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1431), - [2932] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1432), - [2934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1434), - [2936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1435), - [2938] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1436), - [2940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1438), - [2942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1439), - [2944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1440), - [2946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1441), - [2948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1442), - [2950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1443), - [2952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1444), - [2954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1445), - [2956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1446), - [2958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1447), - [2960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1448), - [2962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1449), - [2964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1450), - [2966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1451), - [2968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1452), - [2970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1453), - [2972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1454), - [2974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1455), - [2976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1456), - [2978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1457), - [2980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1458), - [2982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1459), - [2984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1460), - [2986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1461), - [2988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1462), - [2990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1463), - [2992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1464), - [2994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1465), - [2996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1466), - [2998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1467), - [3000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1468), - [3002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1469), - [3004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1470), - [3006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1471), - [3008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1472), - [3010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1473), - [3012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1474), - [3014] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), - [3016] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [3018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), - [3020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 3), - [3022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [3024] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), - [3026] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [3028] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1475), - [3030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1476), - [3032] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(999), - [3035] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [3037] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [3039] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [3041] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1479), - [3043] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), - [3045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1481), - [3047] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1482), - [3049] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 3), - [3051] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1027), - [3054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1483), - [3056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1484), - [3058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1485), - [3060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1486), - [3062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1487), - [3064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1488), - [3066] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1489), - [3068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1491), - [3070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1492), - [3072] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1493), - [3074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1495), - [3076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1497), - [3078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1498), - [3080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1499), - [3082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1500), - [3084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1501), - [3086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1502), - [3088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1503), - [3090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1504), - [3092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1505), - [3094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1506), - [3096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1507), - [3098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1508), - [3100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1509), - [3102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1510), - [3104] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 4), - [3106] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), - [3108] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6), - [3110] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 8), - [3112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1511), - [3114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1512), - [3116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 6), - [3118] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 6), - [3120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), - [3122] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7), - [3124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1513), - [3126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1514), - [3128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1515), - [3130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1516), - [3132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1517), - [3134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1518), - [3136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1519), - [3138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1520), - [3140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1521), - [3142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1522), - [3144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1523), - [3146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1524), - [3148] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 4), - [3150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 4), - [3152] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6), - [3154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), - [3156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1525), - [3158] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6), - [3160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), - [3162] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1526), - [3164] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [3166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [3168] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1527), - [3170] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 6, .alias_sequence_id = 4), - [3172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6, .alias_sequence_id = 4), - [3174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1528), - [3176] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1529), - [3178] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1531), - [3180] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1532), - [3182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1534), - [3184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1535), - [3186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1536), - [3188] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1535), - [3190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1537), - [3192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1538), - [3194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1539), - [3196] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1538), - [3198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1540), - [3200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1541), - [3202] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1137), - [3205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1542), - [3207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1543), - [3209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1544), - [3211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1545), - [3213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1546), - [3215] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1547), - [3217] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1548), - [3219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1550), - [3221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1551), - [3223] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1552), - [3225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1554), - [3227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1555), - [3229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1556), - [3231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1557), - [3233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1558), - [3235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1559), - [3237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1560), - [3239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1561), - [3241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1562), - [3243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1563), - [3245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1564), - [3247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1565), - [3249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1566), - [3251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1567), - [3253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1568), - [3255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1570), - [3257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1571), - [3259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1572), - [3261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1573), - [3263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1574), - [3265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1575), - [3267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1576), - [3269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1577), - [3271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1578), - [3273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1579), - [3275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1580), - [3277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1581), - [3279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1582), - [3281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1583), - [3283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1584), - [3285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1585), - [3287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1586), - [3289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1587), - [3291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1588), - [3293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1589), - [3295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1590), - [3297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1591), - [3299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1592), - [3301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1593), - [3303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1594), - [3305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1595), - [3307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1596), - [3309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1597), - [3311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1598), - [3313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1599), - [3315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1600), - [3317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1601), - [3319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1602), - [3321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1603), - [3323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), - [3325] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), - [3327] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), - [3329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1604), - [3331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [3333] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [3335] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [3337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1605), - [3339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1606), - [3341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1607), - [3343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1608), - [3345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1609), - [3347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1610), - [3349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1611), - [3351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1612), - [3353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1613), - [3355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1614), - [3357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1615), - [3359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1616), - [3361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1617), - [3363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1618), - [3365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1619), - [3367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1620), - [3369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1621), - [3371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1622), - [3373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1623), - [3375] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 6), - [3377] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7), - [3379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1624), - [3381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1625), - [3383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1626), - [3385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1627), - [3387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1628), - [3389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1629), - [3391] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), - [3393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [3395] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7), - [3397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), - [3399] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 3), - [3401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 3), - [3403] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1358), - [3406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1630), - [3408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1631), - [3410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1632), - [3412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1633), - [3414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1634), - [3416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1635), - [3418] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1636), - [3420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1638), - [3422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1639), - [3424] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1640), - [3426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1642), - [3428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1643), - [3430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1644), - [3432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1645), - [3434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1646), - [3436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1647), - [3438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1648), - [3440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1649), - [3442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1650), - [3444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1651), - [3446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1652), - [3448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1653), - [3450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1654), - [3452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1655), - [3454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1656), - [3456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1657), - [3458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1658), - [3460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1659), - [3462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1660), - [3464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1661), - [3466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1662), - [3468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1663), - [3470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1664), - [3472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1665), - [3474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1666), - [3476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1667), - [3478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1668), - [3480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1669), - [3482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1670), - [3484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1671), - [3486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1672), - [3488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), - [3490] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5), - [3492] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), - [3494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [3496] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [3498] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [3500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1673), - [3502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1674), - [3504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1675), - [3506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1676), - [3508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1677), - [3510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1678), - [3512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1679), - [3514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1680), - [3516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1681), - [3518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1682), - [3520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1683), - [3522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1684), - [3524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1685), - [3526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1686), - [3528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1687), - [3530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1688), - [3532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1689), - [3534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1690), - [3536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1691), - [3538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1692), - [3540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1693), - [3542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1694), - [3544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1695), - [3546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1696), - [3548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1697), - [3550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1698), - [3552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1699), - [3554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1700), - [3556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1701), - [3558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1702), - [3560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1703), - [3562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1704), - [3564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1705), - [3566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1706), - [3568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1707), - [3570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1708), - [3572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1709), - [3574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1710), - [3576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1711), - [3578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1712), - [3580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1713), - [3582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1714), - [3584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1715), - [3586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1716), + [248] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1), + [250] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(145), + [252] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(146), + [254] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(147), + [256] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(148), + [258] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(13), + [260] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(149), + [262] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(15), + [264] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(16), + [266] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(17), + [268] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(18), + [270] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(19), + [272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), + [274] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), + [276] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), + [278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_program, 1), + [280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(155), + [282] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(14), + [284] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(159), + [286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(160), + [288] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(160), + [290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(162), + [292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(163), + [294] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(164), + [296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(165), + [298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(166), + [300] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(167), + [302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(168), + [304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(169), + [306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(170), + [308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(171), + [310] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(166), + [312] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(172), + [314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(173), + [316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(174), + [318] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(175), + [320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(176), + [322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(177), + [324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(178), + [326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(179), + [328] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(174), + [330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_variable_assignment, 2), + [332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_variable_assignment, 2), + [334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(181), + [336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(182), + [338] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(184), + [340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(185), + [342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(186), + [344] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(187), + [346] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(188), + [348] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(190), + [350] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(192), + [352] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(193), + [354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(194), + [356] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(195), + [358] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(194), + [360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(196), + [362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(197), + [364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(198), + [366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(199), + [368] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(197), + [370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(207), + [372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(208), + [374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(210), + [376] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(211), + [378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(212), + [380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(215), + [382] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(217), + [384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(219), + [386] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(220), + [388] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(219), + [390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(221), + [392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(222), + [394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(223), + [396] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(224), + [398] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(222), + [400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(232), + [402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(233), + [404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(234), + [406] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(235), + [408] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(236), + [410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(237), + [412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(238), + [414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(239), + [416] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(240), + [418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(54), + [420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(241), + [422] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(56), + [424] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(57), + [426] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(58), + [428] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(59), + [430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(60), + [432] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(55), + [434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(248), + [436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), + [446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(251), + [450] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [452] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(253), + [454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), + [456] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2), + [458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(255), + [460] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(256), + [462] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(255), + [464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(257), + [466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(258), + [468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(259), + [470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(260), + [472] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(258), + [474] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(268), + [476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(268), + [478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), + [480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), + [482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 2), + [484] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 2), + [486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(270), + [488] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 1), + [490] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 1), + [492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(271), + [494] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(272), + [496] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(271), + [498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(273), + [500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(274), + [502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(275), + [504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(276), + [506] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(274), + [508] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(282), + [510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [512] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), + [516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), + [518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(284), + [520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(285), + [522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(286), + [524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(287), + [526] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(287), + [528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(288), + [530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(289), + [532] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(290), + [534] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(289), + [536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(292), + [538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(293), + [540] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(293), + [542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(294), + [544] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(284), + [546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(295), + [548] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(297), + [550] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(300), + [552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(301), + [554] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(301), + [556] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(303), + [558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(307), + [560] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 1), + [562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 1), + [564] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(308), + [566] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(309), + [568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(312), + [570] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [572] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(314), + [574] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1), + [576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(316), + [578] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(317), + [580] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(316), + [582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(318), + [584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(319), + [586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(320), + [588] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(321), + [590] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(319), + [592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(329), + [594] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(330), + [596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(331), + [598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(330), + [600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(332), + [602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(333), + [604] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 1), + [606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 1), + [608] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(334), + [610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(334), + [612] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(335), + [614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(335), + [616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(336), + [618] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(337), + [620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(338), + [622] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(338), + [624] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(332), + [626] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(108), + [628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(344), + [630] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(345), + [632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(346), + [634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(349), + [636] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(351), + [638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(353), + [640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(354), + [642] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(353), + [644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(355), + [646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(356), + [648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(357), + [650] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(358), + [652] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(356), + [654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(366), + [656] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(367), + [658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(367), + [660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(368), + [662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(369), + [664] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(370), + [666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(370), + [668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(371), + [670] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(372), + [672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(373), + [674] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(373), + [676] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(368), + [678] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(126), + [680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(377), + [682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(378), + [684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), + [686] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__terminated_statement, 2), + [688] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), + [690] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(383), + [692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(383), + [694] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(384), + [696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(385), + [698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(386), + [700] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(387), + [702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(388), + [704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(389), + [706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(390), + [708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(391), + [710] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(386), + [712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(393), + [714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(394), + [716] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(396), + [718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(397), + [720] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(397), + [722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [724] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [728] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), + [732] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), + [734] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2), + [736] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2), + [739] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), + [742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), + [744] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), + [747] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), + [750] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), + [753] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), + [756] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), + [759] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), + [762] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), + [765] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), + [768] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), + [771] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), + [774] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13), + [777] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), + [780] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), + [783] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16), + [786] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), + [789] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), + [792] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19), + [795] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(20), + [798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(402), + [800] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), + [803] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(155), + [806] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(11), + [809] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(11), + [812] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), + [814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), + [816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [818] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), + [822] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3), + [824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), + [826] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), + [828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(405), + [830] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(406), + [832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(407), + [834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(408), + [836] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(409), + [838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(410), + [840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(411), + [842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(412), + [844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(413), + [846] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(408), + [848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), + [850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(416), + [852] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), + [854] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(418), + [856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(420), + [858] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(421), + [860] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(420), + [862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(422), + [864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(423), + [866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(424), + [868] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(425), + [870] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(423), + [872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(433), + [874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(434), + [876] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(436), + [878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(438), + [880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(439), + [882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(440), + [884] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(441), + [886] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(440), + [888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(442), + [890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(443), + [892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(444), + [894] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(445), + [896] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(443), + [898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(453), + [900] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(454), + [902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(455), + [904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(456), + [906] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(457), + [908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(458), + [910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(459), + [912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(460), + [914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(461), + [916] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(456), + [918] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(464), + [920] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), + [922] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(469), + [924] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(470), + [926] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(471), + [928] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(479), + [930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(479), + [932] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(480), + [934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(481), + [936] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(483), + [938] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(484), + [940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(485), + [942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(486), + [944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(487), + [946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(488), + [948] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(488), + [950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(489), + [952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(490), + [954] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(491), + [956] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(490), + [958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(493), + [960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(494), + [962] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(494), + [964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(495), + [966] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(486), + [968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(496), + [970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(497), + [972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(498), + [974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(499), + [976] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(12), + [978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(504), + [980] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [982] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(505), + [984] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(507), + [986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(508), + [988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(509), + [990] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(510), + [992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(511), + [994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(512), + [996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(513), + [998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(514), + [1000] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(509), + [1002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(515), + [1004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(517), + [1006] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(519), + [1008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(519), + [1010] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(521), + [1012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(522), + [1014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(523), + [1016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(524), + [1018] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(524), + [1020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(525), + [1022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(526), + [1024] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(527), + [1026] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(526), + [1028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(529), + [1030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(530), + [1032] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(530), + [1034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(531), + [1036] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(522), + [1038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(532), + [1040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(533), + [1042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(534), + [1044] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), + [1046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(535), + [1048] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(538), + [1050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(538), + [1052] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(539), + [1054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(540), + [1056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(541), + [1058] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(542), + [1060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(543), + [1062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(544), + [1064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(545), + [1066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(546), + [1068] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(541), + [1070] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(547), + [1072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(548), + [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(548), + [1076] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(535), + [1078] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(552), + [1080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(554), + [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(555), + [1084] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(556), + [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(557), + [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(558), + [1090] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(559), + [1092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(560), + [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(561), + [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(562), + [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(563), + [1100] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(558), + [1102] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(68), + [1105] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1107] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(69), + [1110] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(70), + [1113] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(564), + [1115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(564), + [1117] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenation, 2), + [1119] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 2), + [1121] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(566), + [1123] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [1125] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), + [1127] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(567), + [1129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(568), + [1131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(569), + [1133] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(569), + [1135] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(570), + [1137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(571), + [1139] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(572), + [1141] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(571), + [1143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(574), + [1145] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(575), + [1147] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(575), + [1149] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(576), + [1151] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(567), + [1153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(577), + [1155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(578), + [1157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1159] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1161] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(82), + [1164] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), + [1166] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), + [1168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(579), + [1170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(580), + [1172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(581), + [1174] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(581), + [1176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(582), + [1178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(583), + [1180] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(584), + [1182] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(583), + [1184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(586), + [1186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(587), + [1188] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(587), + [1190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(588), + [1192] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(579), + [1194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(589), + [1196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 3), + [1198] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 3), + [1200] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(85), + [1203] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(86), + [1206] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(87), + [1209] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(88), + [1212] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(89), + [1215] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(590), + [1217] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(591), + [1219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(592), + [1221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(593), + [1223] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(594), + [1225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(595), + [1227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(596), + [1229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(597), + [1231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(598), + [1233] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(593), + [1235] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(600), + [1237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(601), + [1239] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(601), + [1241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1243] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(603), + [1247] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(604), + [1249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(605), + [1251] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(605), + [1253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(607), + [1255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(608), + [1257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(609), + [1259] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(609), + [1261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(610), + [1263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(611), + [1265] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(611), + [1267] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(607), + [1269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [1271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [1273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(612), + [1275] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(613), + [1277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(614), + [1279] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(614), + [1281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), + [1283] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), + [1285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(616), + [1287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(617), + [1289] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(618), + [1291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(619), + [1293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(620), + [1295] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(621), + [1297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(622), + [1299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(623), + [1301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(624), + [1303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(625), + [1305] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(620), + [1307] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_variable_assignment, 2), + [1309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(626), + [1311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(627), + [1313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(629), + [1315] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(630), + [1317] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(631), + [1319] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(632), + [1321] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(633), + [1323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(634), + [1325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(635), + [1327] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(637), + [1329] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(638), + [1331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(641), + [1333] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [1335] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [1337] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 2), + [1339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), + [1341] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(644), + [1343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(644), + [1345] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(646), + [1347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(647), + [1349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(648), + [1351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(649), + [1353] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(649), + [1355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(650), + [1357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(651), + [1359] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(652), + [1361] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(651), + [1363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(654), + [1365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(655), + [1367] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(655), + [1369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(656), + [1371] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(647), + [1373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(657), + [1375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(658), + [1377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(659), + [1379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), + [1381] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), + [1383] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(664), + [1385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(664), + [1387] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(665), + [1389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(666), + [1391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(667), + [1393] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(668), + [1395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(669), + [1397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(670), + [1399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(671), + [1401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(672), + [1403] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(667), + [1405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(674), + [1407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(675), + [1409] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(677), + [1411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(678), + [1413] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(678), + [1415] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [1417] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1), + [1419] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1), + [1421] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 2), + [1423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2), + [1425] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(684), + [1427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(685), + [1429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(686), + [1431] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(687), + [1433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(688), + [1435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(689), + [1437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(690), + [1439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(691), + [1441] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(686), + [1443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(692), + [1445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(694), + [1447] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(696), + [1449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(696), + [1451] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(698), + [1453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(699), + [1455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(700), + [1457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(701), + [1459] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(701), + [1461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(702), + [1463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(703), + [1465] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(704), + [1467] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(703), + [1469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(706), + [1471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(707), + [1473] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(707), + [1475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(708), + [1477] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(699), + [1479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(709), + [1481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(710), + [1483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(711), + [1485] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(715), + [1487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(715), + [1489] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(716), + [1491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(717), + [1493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(718), + [1495] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(719), + [1497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(720), + [1499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(721), + [1501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(722), + [1503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(723), + [1505] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(718), + [1507] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(724), + [1509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(725), + [1511] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(725), + [1513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), + [1515] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), + [1517] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), + [1519] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), + [1521] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(731), + [1523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(732), + [1525] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(732), + [1527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(734), + [1529] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [1531] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(736), + [1533] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), + [1535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(738), + [1537] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(739), + [1539] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(738), + [1541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(740), + [1543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(741), + [1545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(742), + [1547] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(743), + [1549] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(741), + [1551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), + [1553] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), + [1555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(751), + [1557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(752), + [1559] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(753), + [1561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(754), + [1563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), + [1565] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), + [1567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [1569] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [1571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2), + [1573] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2), + [1575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [1577] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [1579] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(148), + [1582] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(13), + [1585] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(149), + [1588] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(15), + [1591] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(16), + [1594] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(17), + [1597] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(18), + [1600] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(19), + [1603] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), + [1605] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(144), + [1608] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), + [1610] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(145), + [1613] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(146), + [1616] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(147), + [1619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(756), + [1621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(757), + [1623] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(758), + [1625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(759), + [1627] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(759), + [1629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 2), + [1631] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 2), + [1633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(761), + [1635] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(763), + [1637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(765), + [1639] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(766), + [1641] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(765), + [1643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(767), + [1645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(768), + [1647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(769), + [1649] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(770), + [1651] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(768), + [1653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(778), + [1655] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(780), + [1657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(780), + [1659] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(782), + [1661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(783), + [1663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(784), + [1665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(785), + [1667] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(785), + [1669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(786), + [1671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(787), + [1673] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(788), + [1675] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(787), + [1677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(790), + [1679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(791), + [1681] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(791), + [1683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(792), + [1685] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(783), + [1687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(793), + [1689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(794), + [1691] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(795), + [1693] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(796), + [1695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(796), + [1697] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(796), + [1699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(797), + [1701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [1703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(798), + [1705] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(800), + [1707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(801), + [1709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(802), + [1711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), + [1713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(803), + [1715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(804), + [1717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(805), + [1719] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(805), + [1721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(806), + [1723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(807), + [1725] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(808), + [1727] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(807), + [1729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(810), + [1731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(811), + [1733] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(811), + [1735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(812), + [1737] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(803), + [1739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(813), + [1741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(814), + [1743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(815), + [1745] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(817), + [1747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(819), + [1749] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(820), + [1751] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(819), + [1753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(821), + [1755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(822), + [1757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(823), + [1759] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(824), + [1761] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(822), + [1763] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(832), + [1765] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(454), + [1767] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(455), + [1769] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(456), + [1771] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(457), + [1773] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(458), + [1775] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(459), + [1777] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(460), + [1779] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(461), + [1781] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), + [1783] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(834), + [1785] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(835), + [1787] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), + [1789] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 1), + [1791] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(842), + [1793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), + [1795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(843), + [1797] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(843), + [1799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(470), + [1801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(471), + [1803] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(848), + [1805] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(849), + [1807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), + [1809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(851), + [1811] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(852), + [1813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(853), + [1815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(854), + [1817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(855), + [1819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(856), + [1821] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(851), + [1823] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(860), + [1825] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(186), + [1828] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(861), + [1830] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(863), + [1832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(864), + [1834] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(865), + [1836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(866), + [1838] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(866), + [1840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(868), + [1842] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(869), + [1844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(870), + [1846] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(870), + [1848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(872), + [1850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(873), + [1852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(874), + [1854] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(874), + [1856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(875), + [1858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(876), + [1860] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(876), + [1862] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(872), + [1864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(877), + [1866] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(878), + [1868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(879), + [1870] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(879), + [1872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [1874] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [1876] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(882), + [1878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(883), + [1880] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(885), + [1882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(885), + [1884] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(886), + [1886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(887), + [1888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(888), + [1890] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(889), + [1892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(890), + [1894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(891), + [1896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(892), + [1898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(893), + [1900] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(888), + [1902] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), + [1904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(895), + [1906] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(897), + [1908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(899), + [1910] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(900), + [1912] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(899), + [1914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(901), + [1916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(902), + [1918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(903), + [1920] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(904), + [1922] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(902), + [1924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(912), + [1926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(913), + [1928] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(914), + [1930] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(915), + [1932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(916), + [1934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(917), + [1936] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(918), + [1938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(919), + [1940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(920), + [1942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(921), + [1944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), + [1946] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(917), + [1948] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(212), + [1951] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(215), + [1954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(923), + [1956] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(924), + [1958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(925), + [1960] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(925), + [1962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(927), + [1964] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(928), + [1966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(929), + [1968] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(929), + [1970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(931), + [1972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(932), + [1974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(933), + [1976] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(933), + [1978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(934), + [1980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(935), + [1982] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(935), + [1984] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(931), + [1986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(936), + [1988] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(937), + [1990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(938), + [1992] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(938), + [1994] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), + [1996] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(941), + [1998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(942), + [2000] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(942), + [2002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(943), + [2004] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(945), + [2006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(947), + [2008] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(948), + [2010] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(947), + [2012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), + [2014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(950), + [2016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(951), + [2018] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(952), + [2020] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(950), + [2022] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(240), + [2025] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(54), + [2028] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(241), + [2031] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(56), + [2034] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(57), + [2037] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(58), + [2040] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(59), + [2043] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(60), + [2046] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(237), + [2049] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(238), + [2052] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(239), + [2055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(960), + [2057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(962), + [2059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(964), + [2061] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(966), + [2063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(968), + [2065] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(969), + [2067] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(968), + [2069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(970), + [2071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(971), + [2073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(972), + [2075] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(973), + [2077] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(971), + [2079] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [2081] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(251), + [2084] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 3), + [2086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(981), + [2088] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(982), + [2090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(983), + [2092] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(983), + [2094] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [2096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(985), + [2098] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(986), + [2100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(987), + [2102] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(987), + [2104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(989), + [2106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(990), + [2108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(991), + [2110] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(991), + [2112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(992), + [2114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(993), + [2116] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(993), + [2118] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(989), + [2120] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [2122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(994), + [2124] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(995), + [2126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(996), + [2128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(996), + [2130] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3), + [2132] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_substitution, 3), + [2134] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_process_substitution, 3), + [2136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(998), + [2138] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(999), + [2140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000), + [2142] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1000), + [2144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1002), + [2146] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1003), + [2148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1004), + [2150] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1004), + [2152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1006), + [2154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1007), + [2156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1008), + [2158] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1008), + [2160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1009), + [2162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1010), + [2164] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1010), + [2166] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1006), + [2168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1011), + [2170] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1012), + [2172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1013), + [2174] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1013), + [2176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), + [2178] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), + [2180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1015), + [2182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1016), + [2184] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1018), + [2186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1020), + [2188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1021), + [2190] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1022), + [2192] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1021), + [2194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1023), + [2196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1024), + [2198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1025), + [2200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1026), + [2202] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1024), + [2204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1034), + [2206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1035), + [2208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1036), + [2210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1037), + [2212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1038), + [2214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [2216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [2218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1039), + [2220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1040), + [2222] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1041), + [2224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1042), + [2226] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1042), + [2228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [2230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [2232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1044), + [2234] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1045), + [2236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1046), + [2238] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1046), + [2240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [2242] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [2244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1048), + [2246] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1049), + [2248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1050), + [2250] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1050), + [2252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [2254] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [2256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1052), + [2258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1053), + [2260] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2), + [2262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1054), + [2264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1056), + [2266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), + [2268] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1058), + [2270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1060), + [2272] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1061), + [2274] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1060), + [2276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1062), + [2278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1063), + [2280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1064), + [2282] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1065), + [2284] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1063), + [2286] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1074), + [2288] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 3), + [2290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), + [2292] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1076), + [2294] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1080), + [2296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1081), + [2298] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1082), + [2300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1083), + [2302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1084), + [2304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1085), + [2306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1087), + [2308] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), + [2310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [2312] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1088), + [2314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1088), + [2316] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 3), + [2318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), + [2320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1090), + [2322] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1090), + [2324] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1091), + [2326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1092), + [2328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093), + [2330] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1094), + [2332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1095), + [2334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096), + [2336] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1097), + [2338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1098), + [2340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1099), + [2342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1100), + [2344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1101), + [2346] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1096), + [2348] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(307), + [2351] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [2353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [2355] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(308), + [2358] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(309), + [2361] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(312), + [2364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1102), + [2366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1103), + [2368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1104), + [2370] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1104), + [2372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1106), + [2374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1107), + [2376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), + [2378] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1108), + [2380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1110), + [2382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1111), + [2384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112), + [2386] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1112), + [2388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1113), + [2390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1114), + [2392] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1114), + [2394] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1110), + [2396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1115), + [2398] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1116), + [2400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1117), + [2402] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1117), + [2404] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pipeline, 3), + [2406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), + [2408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), + [2410] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_list, 3, .fragile = true), + [2412] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1120), + [2414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1121), + [2416] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1121), + [2418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1123), + [2420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1125), + [2422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1127), + [2424] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1128), + [2426] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1127), + [2428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1129), + [2430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1130), + [2432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1131), + [2434] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1132), + [2436] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1130), + [2438] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 1), + [2440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1140), + [2442] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc_redirect, 2), + [2444] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [2446] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_herestring_redirect, 2), + [2448] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [2450] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(337), + [2453] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(107), + [2456] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(338), + [2459] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(109), + [2462] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(110), + [2465] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(111), + [2468] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(112), + [2471] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(113), + [2474] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(338), + [2477] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 3), + [2479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3), + [2481] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(333), + [2484] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), + [2486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), + [2488] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(334), + [2491] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(334), + [2494] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(335), + [2497] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(335), + [2500] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(336), + [2503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1143), + [2505] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1145), + [2507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1147), + [2509] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1148), + [2511] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1147), + [2513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1149), + [2515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1150), + [2517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1151), + [2519] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1152), + [2521] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1150), + [2523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1160), + [2525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1161), + [2527] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1162), + [2529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1162), + [2531] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1163), + [2533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1164), + [2535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1165), + [2537] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1166), + [2539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1167), + [2541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1168), + [2543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1169), + [2545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1170), + [2547] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1165), + [2549] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(346), + [2552] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(349), + [2555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1171), + [2557] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1172), + [2559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1173), + [2561] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1173), + [2563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1175), + [2565] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1176), + [2567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1177), + [2569] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1177), + [2571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1179), + [2573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1180), + [2575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1181), + [2577] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1181), + [2579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1182), + [2581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), + [2583] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1183), + [2585] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1179), + [2587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1184), + [2589] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1185), + [2591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1186), + [2593] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1186), + [2595] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1189), + [2597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1190), + [2599] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1190), + [2601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1191), + [2603] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1193), + [2605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1195), + [2607] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1196), + [2609] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1195), + [2611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1197), + [2613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1198), + [2615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1199), + [2617] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1200), + [2619] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1198), + [2621] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(372), + [2624] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(125), + [2627] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(373), + [2630] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(127), + [2633] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(128), + [2636] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(129), + [2639] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(130), + [2642] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(131), + [2645] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(373), + [2648] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(369), + [2651] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(370), + [2654] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(370), + [2657] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(371), + [2660] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [2662] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), + [2664] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1210), + [2666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1210), + [2668] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1212), + [2670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1213), + [2672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1214), + [2674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1215), + [2676] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1215), + [2678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1216), + [2680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1217), + [2682] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1218), + [2684] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1217), + [2686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1220), + [2688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1221), + [2690] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1221), + [2692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1222), + [2694] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1213), + [2696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1223), + [2698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1224), + [2700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), + [2702] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), + [2704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), + [2706] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), + [2708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1225), + [2710] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1226), + [2712] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1225), + [2714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1227), + [2716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1228), + [2718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1229), + [2720] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1230), + [2722] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1228), + [2724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1232), + [2726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1234), + [2728] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), + [2730] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1236), + [2732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1236), + [2734] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1238), + [2736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1239), + [2738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1240), + [2740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1241), + [2742] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1241), + [2744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242), + [2746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1243), + [2748] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1244), + [2750] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1243), + [2752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1246), + [2754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1247), + [2756] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1247), + [2758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1248), + [2760] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1239), + [2762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1249), + [2764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1250), + [2766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 3), + [2768] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 3), + [2770] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(406), + [2773] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(407), + [2776] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(408), + [2779] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(409), + [2782] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(410), + [2785] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(411), + [2788] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(412), + [2791] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(413), + [2794] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(408), + [2797] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(416), + [2800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1251), + [2802] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1252), + [2804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1253), + [2806] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1253), + [2808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1255), + [2810] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1256), + [2812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1257), + [2814] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1257), + [2816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1259), + [2818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1260), + [2820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1261), + [2822] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1261), + [2824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1262), + [2826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1263), + [2828] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1263), + [2830] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1259), + [2832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1264), + [2834] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1265), + [2836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1266), + [2838] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1266), + [2840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1268), + [2842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [2844] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [2846] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(798), + [2849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1269), + [2851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5), + [2853] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 5), + [2855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1270), + [2857] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1271), + [2859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1272), + [2861] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1272), + [2863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1274), + [2865] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1275), + [2867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1276), + [2869] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1276), + [2871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1278), + [2873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1279), + [2875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1280), + [2877] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1280), + [2879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1281), + [2881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1282), + [2883] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1282), + [2885] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1278), + [2887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1283), + [2889] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1284), + [2891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1285), + [2893] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1285), + [2895] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1287), + [2897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1287), + [2899] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1289), + [2901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1290), + [2903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1291), + [2905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1292), + [2907] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1292), + [2909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1293), + [2911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1294), + [2913] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1295), + [2915] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1294), + [2917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1297), + [2919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1298), + [2921] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1298), + [2923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1299), + [2925] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1290), + [2927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1300), + [2929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1301), + [2931] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(454), + [2934] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(455), + [2937] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(456), + [2940] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(457), + [2943] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(458), + [2946] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(459), + [2949] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(460), + [2952] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(461), + [2955] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), + [2957] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), + [2959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1303), + [2961] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1304), + [2963] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), + [2965] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), + [2967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1306), + [2969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), + [2971] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(470), + [2974] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [2976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1308), + [2978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1309), + [2980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1310), + [2982] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1313), + [2984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1315), + [2986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1317), + [2988] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1318), + [2990] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1317), + [2992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1319), + [2994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1320), + [2996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1321), + [2998] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1322), + [3000] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1320), + [3002] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), + [3004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), + [3006] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), + [3008] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1330), + [3010] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), + [3012] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1333), + [3014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1335), + [3016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1336), + [3018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1337), + [3020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1338), + [3022] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1339), + [3024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1340), + [3026] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1340), + [3028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1342), + [3030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1343), + [3032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1344), + [3034] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1344), + [3036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1346), + [3038] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1347), + [3040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1348), + [3042] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1348), + [3044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1350), + [3046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1351), + [3048] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), + [3050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [3052] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [3054] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), + [3057] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1353), + [3059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1354), + [3061] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1354), + [3063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1356), + [3065] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1358), + [3067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1360), + [3069] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1361), + [3071] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1360), + [3073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1362), + [3075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1363), + [3077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1364), + [3079] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1365), + [3081] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1363), + [3083] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1373), + [3085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1373), + [3087] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1375), + [3089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1376), + [3091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1377), + [3093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1378), + [3095] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1378), + [3097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1379), + [3099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1380), + [3101] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1381), + [3103] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1380), + [3105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1383), + [3107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1384), + [3109] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1384), + [3111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1385), + [3113] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1376), + [3115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1386), + [3117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1387), + [3119] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1389), + [3121] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1389), + [3123] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1390), + [3125] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1391), + [3127] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1392), + [3129] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1393), + [3131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1394), + [3133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1395), + [3135] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1396), + [3137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1397), + [3139] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1392), + [3141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1398), + [3143] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1400), + [3145] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1402), + [3147] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1403), + [3149] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1402), + [3151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1404), + [3153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1405), + [3155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1406), + [3157] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1407), + [3159] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1405), + [3161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1415), + [3163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1416), + [3165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1417), + [3167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1418), + [3169] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1419), + [3171] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1420), + [3173] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1420), + [3175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1422), + [3177] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1423), + [3179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1424), + [3181] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1424), + [3183] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1426), + [3185] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1427), + [3187] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1428), + [3189] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1428), + [3191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1430), + [3193] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1431), + [3195] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1432), + [3197] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1432), + [3199] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1434), + [3201] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1435), + [3203] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1436), + [3205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1437), + [3207] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1437), + [3209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1438), + [3211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1439), + [3213] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1440), + [3215] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1439), + [3217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1442), + [3219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1443), + [3221] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1443), + [3223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1444), + [3225] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1435), + [3227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1445), + [3229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1446), + [3231] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), + [3233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1447), + [3235] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1448), + [3237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1448), + [3239] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1450), + [3241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1451), + [3243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1452), + [3245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1453), + [3247] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1453), + [3249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1454), + [3251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1455), + [3253] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1456), + [3255] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1455), + [3257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1458), + [3259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1459), + [3261] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1459), + [3263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1460), + [3265] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1451), + [3267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1461), + [3269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1462), + [3271] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4), + [3273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1463), + [3275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1464), + [3277] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [3279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1465), + [3281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1466), + [3283] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1467), + [3285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1468), + [3287] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1468), + [3289] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [3291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1470), + [3293] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1471), + [3295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1472), + [3297] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1472), + [3299] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [3301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1474), + [3303] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1475), + [3305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1476), + [3307] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1476), + [3309] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [3311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1478), + [3313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1479), + [3315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1480), + [3317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1481), + [3319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1482), + [3321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1483), + [3323] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1484), + [3325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1485), + [3327] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1485), + [3329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1487), + [3331] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1488), + [3333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1489), + [3335] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1489), + [3337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1491), + [3339] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1492), + [3341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1493), + [3343] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1493), + [3345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1495), + [3347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1496), + [3349] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1497), + [3351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1497), + [3353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [3355] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [3357] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1499), + [3359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), + [3361] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), + [3363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1500), + [3365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1501), + [3367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1502), + [3369] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1502), + [3371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1503), + [3373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1504), + [3375] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1505), + [3377] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1504), + [3379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1507), + [3381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1508), + [3383] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1508), + [3385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1509), + [3387] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1500), + [3389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1510), + [3391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1511), + [3393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1512), + [3395] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [3397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1513), + [3399] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 4), + [3401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [3403] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [3405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 4), + [3407] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 4), + [3409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1514), + [3411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1515), + [3413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [3415] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [3417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1516), + [3419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1517), + [3421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [3423] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [3425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1518), + [3427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1519), + [3429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [3431] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [3433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 5), + [3435] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 5), + [3437] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 2), + [3439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1520), + [3441] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1521), + [3443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1521), + [3445] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1523), + [3447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1524), + [3449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1525), + [3451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1526), + [3453] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1526), + [3455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1527), + [3457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1528), + [3459] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1529), + [3461] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1528), + [3463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1531), + [3465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1532), + [3467] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1532), + [3469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1533), + [3471] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1524), + [3473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1534), + [3475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1535), + [3477] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1536), + [3479] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 2), + [3481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), + [3483] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1537), + [3485] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 4), + [3487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), + [3489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1538), + [3491] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1538), + [3493] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1541), + [3495] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1543), + [3497] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1544), + [3499] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1546), + [3501] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), + [3503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1548), + [3505] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1549), + [3507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1549), + [3509] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1550), + [3511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1551), + [3513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1552), + [3515] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1553), + [3517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1554), + [3519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1555), + [3521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1556), + [3523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1557), + [3525] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1552), + [3527] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), + [3529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), + [3531] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 4), + [3533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), + [3535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1559), + [3537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1560), + [3539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1562), + [3541] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1564), + [3543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1566), + [3545] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1567), + [3547] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1566), + [3549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1568), + [3551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1569), + [3553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1570), + [3555] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1571), + [3557] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1569), + [3559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1579), + [3561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1580), + [3563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1581), + [3565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1582), + [3567] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1583), + [3569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1584), + [3571] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1584), + [3573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1586), + [3575] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1587), + [3577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1588), + [3579] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1588), + [3581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1590), + [3583] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1591), + [3585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1592), + [3587] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1592), + [3589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1594), + [3591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1595), + [3593] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1597), + [3595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1597), + [3597] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1599), + [3599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1600), + [3601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1601), + [3603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1602), + [3605] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1602), + [3607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1603), + [3609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1604), + [3611] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1605), + [3613] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1604), + [3615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1607), + [3617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1608), + [3619] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1608), + [3621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1609), + [3623] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1600), + [3625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1610), + [3627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1611), + [3629] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 2), + [3631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1612), + [3633] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 4), + [3635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4), + [3637] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1613), + [3639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1613), + [3641] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1615), + [3643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1616), + [3645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1617), + [3647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1618), + [3649] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1618), + [3651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1619), + [3653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1620), + [3655] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1621), + [3657] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1620), + [3659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1623), + [3661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1624), + [3663] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1624), + [3665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1625), + [3667] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1616), + [3669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1626), + [3671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1627), + [3673] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1629), + [3675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1629), + [3677] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1630), + [3679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1631), + [3681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1632), + [3683] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1633), + [3685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1634), + [3687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1635), + [3689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1636), + [3691] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1637), + [3693] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1632), + [3695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1638), + [3697] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1640), + [3699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1642), + [3701] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1643), + [3703] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1642), + [3705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1644), + [3707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1645), + [3709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1646), + [3711] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1647), + [3713] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1645), + [3715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1655), + [3717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1656), + [3719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1657), + [3721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1658), + [3723] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1659), + [3725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1660), + [3727] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1660), + [3729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1662), + [3731] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1663), + [3733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1664), + [3735] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1664), + [3737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1666), + [3739] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1667), + [3741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1668), + [3743] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1668), + [3745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1670), + [3747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1671), + [3749] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1672), + [3751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1672), + [3753] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1674), + [3755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1675), + [3757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1676), + [3759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1677), + [3761] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1677), + [3763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1678), + [3765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1679), + [3767] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1680), + [3769] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1679), + [3771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1682), + [3773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1683), + [3775] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1683), + [3777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1684), + [3779] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1675), + [3781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1685), + [3783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1686), + [3785] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(734), + [3788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1687), + [3790] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1688), + [3792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1689), + [3794] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1689), + [3796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1691), + [3798] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1692), + [3800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1693), + [3802] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1693), + [3804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1695), + [3806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1696), + [3808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1697), + [3810] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1697), + [3812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1698), + [3814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1699), + [3816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1699), + [3818] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1695), + [3820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1700), + [3822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1701), + [3824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1702), + [3826] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1702), + [3828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1704), + [3830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1705), + [3832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1706), + [3834] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1706), + [3836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1707), + [3838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1708), + [3840] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1709), + [3842] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1708), + [3844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1711), + [3846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1712), + [3848] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1712), + [3850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1713), + [3852] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1704), + [3854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), + [3856] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), + [3858] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(751), + [3861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), + [3863] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(753), + [3866] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(754), + [3869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1714), + [3871] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(761), + [3874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1715), + [3876] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1716), + [3878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1717), + [3880] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1717), + [3882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1719), + [3884] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1720), + [3886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1721), + [3888] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1721), + [3890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1723), + [3892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1724), + [3894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1725), + [3896] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1725), + [3898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1726), + [3900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1727), + [3902] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1727), + [3904] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1723), + [3906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1728), + [3908] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1729), + [3910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1730), + [3912] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1730), + [3914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1732), + [3916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1733), + [3918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1734), + [3920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1735), + [3922] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1736), + [3924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1737), + [3926] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1737), + [3928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1739), + [3930] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1740), + [3932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1741), + [3934] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1741), + [3936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1743), + [3938] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1744), + [3940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1745), + [3942] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1745), + [3944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1747), + [3946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1748), + [3948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [3950] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [3952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6), + [3954] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 6), + [3956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1749), + [3958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1750), + [3960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1751), + [3962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1752), + [3964] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1753), + [3966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1754), + [3968] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1754), + [3970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1756), + [3972] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1757), + [3974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1758), + [3976] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1758), + [3978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1760), + [3980] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1761), + [3982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1762), + [3984] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1762), + [3986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1764), + [3988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1765), + [3990] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(815), + [3993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1766), + [3995] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1767), + [3997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1768), + [3999] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1768), + [4001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1770), + [4003] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1771), + [4005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1772), + [4007] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1772), + [4009] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1774), + [4011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1775), + [4013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1776), + [4015] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1776), + [4017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1777), + [4019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1778), + [4021] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1778), + [4023] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1774), + [4025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1779), + [4027] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1780), + [4029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1781), + [4031] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1781), + [4033] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [4035] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), + [4037] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [4039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1784), + [4041] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1785), + [4043] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1785), + [4045] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1786), + [4047] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1787), + [4049] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1787), + [4051] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1789), + [4053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1791), + [4055] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1794), + [4057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1795), + [4059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1797), + [4061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1798), + [4063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1799), + [4065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1800), + [4067] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1800), + [4069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1801), + [4071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1802), + [4073] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1803), + [4075] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1802), + [4077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1805), + [4079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1806), + [4081] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1806), + [4083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1807), + [4085] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1798), + [4087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1808), + [4089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1809), + [4091] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [4093] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), + [4095] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(849), + [4098] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(850), + [4101] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(851), + [4104] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(852), + [4107] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(853), + [4110] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(854), + [4113] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(855), + [4116] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(856), + [4119] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(851), + [4122] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1810), + [4124] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), + [4126] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1811), + [4128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1812), + [4130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1813), + [4132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1814), + [4134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1815), + [4136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1816), + [4138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1817), + [4140] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), + [4142] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1818), + [4144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1818), + [4146] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1820), + [4148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1821), + [4150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1822), + [4152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1823), + [4154] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1823), + [4156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1824), + [4158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1825), + [4160] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1826), + [4162] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1825), + [4164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1828), + [4166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1829), + [4168] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1829), + [4170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1830), + [4172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1821), + [4174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1831), + [4176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1832), + [4178] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(895), + [4181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1833), + [4183] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1834), + [4185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1835), + [4187] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1835), + [4189] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1837), + [4191] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1838), + [4193] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1839), + [4195] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1839), + [4197] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1841), + [4199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1842), + [4201] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1843), + [4203] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1843), + [4205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1844), + [4207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1845), + [4209] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1845), + [4211] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1841), + [4213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1846), + [4215] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1847), + [4217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1848), + [4219] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1848), + [4221] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1850), + [4223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1851), + [4225] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1851), + [4227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1852), + [4229] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1854), + [4231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1856), + [4233] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1857), + [4235] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1856), + [4237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1858), + [4239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1859), + [4241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1860), + [4243] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1861), + [4245] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1859), + [4247] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1869), + [4249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1869), + [4251] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1871), + [4253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1872), + [4255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1873), + [4257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1874), + [4259] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1874), + [4261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1875), + [4263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1876), + [4265] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1877), + [4267] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1876), + [4269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1879), + [4271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1880), + [4273] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1880), + [4275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1881), + [4277] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1872), + [4279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1882), + [4281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1883), + [4283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1884), + [4285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1885), + [4287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1886), + [4289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1887), + [4291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1888), + [4293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1889), + [4295] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(943), + [4298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1890), + [4300] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1891), + [4302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1892), + [4304] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1892), + [4306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1894), + [4308] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1895), + [4310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1896), + [4312] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1896), + [4314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1898), + [4316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1899), + [4318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1900), + [4320] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1900), + [4322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1901), + [4324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1902), + [4326] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1902), + [4328] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1898), + [4330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1903), + [4332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1904), + [4334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1905), + [4336] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1905), + [4338] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(964), + [4341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1907), + [4343] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1908), + [4345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1909), + [4347] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1909), + [4349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1911), + [4351] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1912), + [4353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1913), + [4355] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1913), + [4357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1915), + [4359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1916), + [4361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1917), + [4363] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1917), + [4365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1918), + [4367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1919), + [4369] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1919), + [4371] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1915), + [4373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1920), + [4375] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1921), + [4377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1922), + [4379] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1922), + [4381] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [4383] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5), + [4385] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [4387] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 4), + [4389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1924), + [4391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1925), + [4393] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [4395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1926), + [4397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1927), + [4399] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [4401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1928), + [4403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1929), + [4405] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [4407] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 5), + [4409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1930), + [4411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1931), + [4413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1932), + [4415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1933), + [4417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1934), + [4419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1935), + [4421] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1015), + [4424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1936), + [4426] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1937), + [4428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1938), + [4430] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1938), + [4432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1940), + [4434] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1941), + [4436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1942), + [4438] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1942), + [4440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1944), + [4442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1945), + [4444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1946), + [4446] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1946), + [4448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1947), + [4450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1948), + [4452] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1948), + [4454] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1944), + [4456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1949), + [4458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1950), + [4460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1951), + [4462] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1951), + [4464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [4466] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [4468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), + [4470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), + [4472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 13), + [4474] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 13), + [4476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), + [4478] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), + [4480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 14), + [4482] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 14), + [4484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 8), + [4486] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 8), + [4488] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 3), + [4490] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1056), + [4493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1953), + [4495] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1954), + [4497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1955), + [4499] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1955), + [4501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1957), + [4503] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1958), + [4505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1959), + [4507] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1959), + [4509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1961), + [4511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1962), + [4513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1963), + [4515] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1963), + [4517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1964), + [4519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1965), + [4521] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1965), + [4523] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1961), + [4525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1966), + [4527] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1967), + [4529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1968), + [4531] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1968), + [4533] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 3), + [4535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), + [4537] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5), + [4539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), + [4541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1971), + [4543] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [4545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [4547] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1973), + [4549] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5), + [4551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), + [4553] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1975), + [4555] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5), + [4557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), + [4559] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), + [4561] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1978), + [4563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1979), + [4565] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1979), + [4567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1981), + [4569] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1983), + [4571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1985), + [4573] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1986), + [4575] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1985), + [4577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1987), + [4579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1988), + [4581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1989), + [4583] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1990), + [4585] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1988), + [4587] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 5), + [4589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), + [4591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1998), + [4593] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1999), + [4595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1999), + [4597] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2001), + [4599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2002), + [4601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2003), + [4603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2004), + [4605] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2004), + [4607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2005), + [4609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2006), + [4611] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2007), + [4613] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2006), + [4615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2009), + [4617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2010), + [4619] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2010), + [4621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2011), + [4623] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2002), + [4625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2012), + [4627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2013), + [4629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2014), + [4631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2015), + [4633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2016), + [4635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2017), + [4637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2018), + [4639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2019), + [4641] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1123), + [4644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2020), + [4646] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2021), + [4648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2022), + [4650] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2022), + [4652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2024), + [4654] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2025), + [4656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2026), + [4658] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2026), + [4660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2028), + [4662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2029), + [4664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2030), + [4666] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2030), + [4668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2031), + [4670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2032), + [4672] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2032), + [4674] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2028), + [4676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2033), + [4678] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2034), + [4680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2035), + [4682] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2035), + [4684] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3), + [4686] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1143), + [4689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2037), + [4691] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2038), + [4693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2039), + [4695] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2039), + [4697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2041), + [4699] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2042), + [4701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2043), + [4703] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2043), + [4705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2045), + [4707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2046), + [4709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2047), + [4711] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2047), + [4713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2048), + [4715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2049), + [4717] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2049), + [4719] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2045), + [4721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2050), + [4723] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2051), + [4725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2052), + [4727] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2052), + [4729] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2054), + [4731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2055), + [4733] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2055), + [4735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2056), + [4737] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2058), + [4739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2060), + [4741] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2061), + [4743] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2060), + [4745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2062), + [4747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2063), + [4749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2064), + [4751] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2065), + [4753] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2063), + [4755] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2073), + [4757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2073), + [4759] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2075), + [4761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2076), + [4763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2077), + [4765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2078), + [4767] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2078), + [4769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2079), + [4771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2080), + [4773] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2081), + [4775] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2080), + [4777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2083), + [4779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2084), + [4781] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2084), + [4783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2085), + [4785] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2076), + [4787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2086), + [4789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2087), + [4791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2088), + [4793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2089), + [4795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2090), + [4797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2091), + [4799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2092), + [4801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2093), + [4803] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1191), + [4806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2094), + [4808] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2095), + [4810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2096), + [4812] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2096), + [4814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2098), + [4816] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2099), + [4818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2100), + [4820] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2100), + [4822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2102), + [4824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2103), + [4826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2104), + [4828] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2104), + [4830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2105), + [4832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2106), + [4834] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2106), + [4836] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2102), + [4838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2107), + [4840] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2108), + [4842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2109), + [4844] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2109), + [4846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2111), + [4848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2112), + [4850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2113), + [4852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2114), + [4854] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2115), + [4856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2116), + [4858] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2116), + [4860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2118), + [4862] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2119), + [4864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2120), + [4866] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2120), + [4868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2122), + [4870] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2123), + [4872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2124), + [4874] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2124), + [4876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2126), + [4878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2127), + [4880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2128), + [4882] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2129), + [4884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2130), + [4886] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2130), + [4888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2132), + [4890] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2133), + [4892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2134), + [4894] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2134), + [4896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2136), + [4898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2137), + [4900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2138), + [4902] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2138), + [4904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2139), + [4906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2140), + [4908] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2140), + [4910] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2136), + [4912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2141), + [4914] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2142), + [4916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2143), + [4918] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2143), + [4920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2145), + [4922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2146), + [4924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2147), + [4926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2148), + [4928] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2149), + [4930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2150), + [4932] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2150), + [4934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2152), + [4936] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2153), + [4938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2154), + [4940] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2154), + [4942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2156), + [4944] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2157), + [4946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2158), + [4948] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2158), + [4950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2160), + [4952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2161), + [4954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2162), + [4956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2163), + [4958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2164), + [4960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2165), + [4962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2166), + [4964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2167), + [4966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2168), + [4968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2169), + [4970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2170), + [4972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2171), + [4974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2172), + [4976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2173), + [4978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2174), + [4980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2175), + [4982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2176), + [4984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2177), + [4986] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2178), + [4988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2179), + [4990] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2179), + [4992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2181), + [4994] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2182), + [4996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2183), + [4998] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2183), + [5000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2185), + [5002] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2186), + [5004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2187), + [5006] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2187), + [5008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2189), + [5010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2190), + [5012] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), + [5014] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [5016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 3), + [5018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), + [5020] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [5022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [5024] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [5026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2191), + [5028] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1309), + [5031] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1308), + [5034] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), + [5036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), + [5038] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), + [5040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2194), + [5042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2196), + [5044] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2197), + [5046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2198), + [5048] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2198), + [5050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2200), + [5052] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2201), + [5054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2202), + [5056] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2202), + [5058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2204), + [5060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2205), + [5062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2206), + [5064] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2206), + [5066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2207), + [5068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2208), + [5070] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2208), + [5072] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2204), + [5074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2209), + [5076] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2210), + [5078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2211), + [5080] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2211), + [5082] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 3), + [5084] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), + [5086] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1356), + [5089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2213), + [5091] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2214), + [5093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2215), + [5095] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2215), + [5097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2217), + [5099] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2218), + [5101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2219), + [5103] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2219), + [5105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2221), + [5107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2222), + [5109] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2223), + [5111] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2223), + [5113] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2224), + [5115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2225), + [5117] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2225), + [5119] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2221), + [5121] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2226), + [5123] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2227), + [5125] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2228), + [5127] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2228), + [5129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2230), + [5131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2231), + [5133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2232), + [5135] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2233), + [5137] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2234), + [5139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2235), + [5141] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2235), + [5143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2237), + [5145] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2238), + [5147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2239), + [5149] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2239), + [5151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2241), + [5153] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2242), + [5155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2243), + [5157] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2243), + [5159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2245), + [5161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2246), + [5163] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2247), + [5165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2247), + [5167] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2249), + [5169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2250), + [5171] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2251), + [5173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2252), + [5175] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2252), + [5177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2253), + [5179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2254), + [5181] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2255), + [5183] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2254), + [5185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2257), + [5187] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2258), + [5189] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2258), + [5191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2259), + [5193] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2250), + [5195] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2260), + [5197] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2261), + [5199] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1398), + [5202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2262), + [5204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2263), + [5206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2264), + [5208] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2264), + [5210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2266), + [5212] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2267), + [5214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2268), + [5216] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2268), + [5218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2270), + [5220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2271), + [5222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2272), + [5224] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2272), + [5226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2273), + [5228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2274), + [5230] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2274), + [5232] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2270), + [5234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2275), + [5236] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2276), + [5238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2277), + [5240] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2277), + [5242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2279), + [5244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2280), + [5246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2281), + [5248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2282), + [5250] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2283), + [5252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2284), + [5254] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2284), + [5256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2286), + [5258] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2287), + [5260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2288), + [5262] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2288), + [5264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2290), + [5266] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2291), + [5268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2292), + [5270] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2292), + [5272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2294), + [5274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2295), + [5276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2296), + [5278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2297), + [5280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2298), + [5282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2299), + [5284] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2300), + [5286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2301), + [5288] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2301), + [5290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2303), + [5292] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2304), + [5294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2305), + [5296] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2305), + [5298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2307), + [5300] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2308), + [5302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2309), + [5304] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2309), + [5306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2311), + [5308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2312), + [5310] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [5312] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6), + [5314] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 13), + [5316] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 7), + [5318] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 14), + [5320] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 8), + [5322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2313), + [5324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2314), + [5326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2315), + [5328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2316), + [5330] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2317), + [5332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2318), + [5334] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2318), + [5336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2320), + [5338] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2321), + [5340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2322), + [5342] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2322), + [5344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2324), + [5346] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2325), + [5348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2326), + [5350] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2326), + [5352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2328), + [5354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2329), + [5356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2330), + [5358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2331), + [5360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2332), + [5362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2333), + [5364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2334), + [5366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2335), + [5368] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2335), + [5370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2337), + [5372] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2338), + [5374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2339), + [5376] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2339), + [5378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2341), + [5380] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2342), + [5382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2343), + [5384] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2343), + [5386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2345), + [5388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2346), + [5390] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [5392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [5394] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6), + [5396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [5398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2347), + [5400] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [5402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [5404] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2348), + [5406] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6), + [5408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), + [5410] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2349), + [5412] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 6), + [5414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), + [5416] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2350), + [5418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2350), + [5420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2352), + [5422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2353), + [5424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2354), + [5426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2355), + [5428] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2355), + [5430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2356), + [5432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2357), + [5434] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2358), + [5436] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2357), + [5438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2360), + [5440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2361), + [5442] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2361), + [5444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2362), + [5446] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2353), + [5448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2363), + [5450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2364), + [5452] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1562), + [5455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2365), + [5457] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2366), + [5459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2367), + [5461] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2367), + [5463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2369), + [5465] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2370), + [5467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2371), + [5469] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2371), + [5471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2373), + [5473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2374), + [5475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2375), + [5477] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2375), + [5479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2376), + [5481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2377), + [5483] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2377), + [5485] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2373), + [5487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2378), + [5489] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2379), + [5491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2380), + [5493] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2380), + [5495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2382), + [5497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2383), + [5499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2384), + [5501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2385), + [5503] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2386), + [5505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2387), + [5507] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2387), + [5509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2389), + [5511] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2390), + [5513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2391), + [5515] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2391), + [5517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2393), + [5519] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2394), + [5521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2395), + [5523] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2395), + [5525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2397), + [5527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2398), + [5529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2399), + [5531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2400), + [5533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2401), + [5535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2402), + [5537] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2403), + [5539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2404), + [5541] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2404), + [5543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2406), + [5545] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2407), + [5547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2408), + [5549] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2408), + [5551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2410), + [5553] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2411), + [5555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2412), + [5557] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2412), + [5559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2414), + [5561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2415), + [5563] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2416), + [5565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2416), + [5567] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2418), + [5569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2419), + [5571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2420), + [5573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2421), + [5575] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2421), + [5577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2422), + [5579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2423), + [5581] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2424), + [5583] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2423), + [5585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2426), + [5587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2427), + [5589] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2427), + [5591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2428), + [5593] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2419), + [5595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2429), + [5597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2430), + [5599] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1638), + [5602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2431), + [5604] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2432), + [5606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2433), + [5608] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2433), + [5610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2435), + [5612] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2436), + [5614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2437), + [5616] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2437), + [5618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2439), + [5620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2440), + [5622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2441), + [5624] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2441), + [5626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2442), + [5628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2443), + [5630] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2443), + [5632] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2439), + [5634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2444), + [5636] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2445), + [5638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2446), + [5640] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2446), + [5642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2448), + [5644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2449), + [5646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2450), + [5648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2451), + [5650] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2452), + [5652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2453), + [5654] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2453), + [5656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2455), + [5658] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2456), + [5660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2457), + [5662] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2457), + [5664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2459), + [5666] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2460), + [5668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2461), + [5670] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2461), + [5672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2463), + [5674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2464), + [5676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2465), + [5678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2466), + [5680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2467), + [5682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2468), + [5684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2469), + [5686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2470), + [5688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2471), + [5690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2472), + [5692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2473), + [5694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2474), + [5696] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2475), + [5698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2476), + [5700] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2476), + [5702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2478), + [5704] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2479), + [5706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2480), + [5708] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2480), + [5710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2482), + [5712] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2483), + [5714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2484), + [5716] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2484), + [5718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2486), + [5720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2487), + [5722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2488), + [5724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2489), + [5726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2490), + [5728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2491), + [5730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2492), + [5732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2493), + [5734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2494), + [5736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2495), + [5738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2496), + [5740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2497), + [5742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2498), + [5744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2499), + [5746] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [5748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [5750] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [5752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2500), + [5754] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), + [5756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), + [5758] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), + [5760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2501), + [5762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2502), + [5764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2503), + [5766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2504), + [5768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2505), + [5770] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2506), + [5772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2507), + [5774] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2507), + [5776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2509), + [5778] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2510), + [5780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2511), + [5782] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2511), + [5784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2513), + [5786] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2514), + [5788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2515), + [5790] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2515), + [5792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2517), + [5794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2518), + [5796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2519), + [5798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2520), + [5800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2521), + [5802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2522), + [5804] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2523), + [5806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2524), + [5808] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2524), + [5810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2526), + [5812] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2527), + [5814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2528), + [5816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2528), + [5818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2530), + [5820] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2531), + [5822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2532), + [5824] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2532), + [5826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2534), + [5828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2535), + [5830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2536), + [5832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2537), + [5834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2538), + [5836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2539), + [5838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2540), + [5840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2541), + [5842] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1852), + [5845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2542), + [5847] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2543), + [5849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2544), + [5851] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2544), + [5853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2546), + [5855] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2547), + [5857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2548), + [5859] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2548), + [5861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2550), + [5863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2551), + [5865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2552), + [5867] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2552), + [5869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2553), + [5871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2554), + [5873] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2554), + [5875] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2550), + [5877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2555), + [5879] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2556), + [5881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2557), + [5883] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2557), + [5885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2559), + [5887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2560), + [5889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2561), + [5891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2562), + [5893] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2563), + [5895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2564), + [5897] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2564), + [5899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2566), + [5901] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2567), + [5903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2568), + [5905] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2568), + [5907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2570), + [5909] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2571), + [5911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2572), + [5913] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2572), + [5915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2574), + [5917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2575), + [5919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2576), + [5921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2577), + [5923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2578), + [5925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2579), + [5927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2580), + [5929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2581), + [5931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2582), + [5933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2583), + [5935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2584), + [5937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2585), + [5939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2586), + [5941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2587), + [5943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2588), + [5945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2589), + [5947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2590), + [5949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2591), + [5951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2592), + [5953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2593), + [5955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2594), + [5957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2595), + [5959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2596), + [5961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2597), + [5963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2598), + [5965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2599), + [5967] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), + [5969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [5971] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 3), + [5973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 3), + [5975] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7), + [5977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), + [5979] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1981), + [5982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2600), + [5984] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2601), + [5986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2602), + [5988] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2602), + [5990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2604), + [5992] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2605), + [5994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2606), + [5996] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2606), + [5998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2608), + [6000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2609), + [6002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2610), + [6004] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2610), + [6006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2611), + [6008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2612), + [6010] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2612), + [6012] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2608), + [6014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2613), + [6016] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2614), + [6018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2615), + [6020] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2615), + [6022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2617), + [6024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2618), + [6026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2619), + [6028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2620), + [6030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2621), + [6032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2622), + [6034] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2622), + [6036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2624), + [6038] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2625), + [6040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2626), + [6042] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2626), + [6044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2628), + [6046] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2629), + [6048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2630), + [6050] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2630), + [6052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2632), + [6054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2633), + [6056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2634), + [6058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2635), + [6060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2636), + [6062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2637), + [6064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2638), + [6066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2639), + [6068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2640), + [6070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2641), + [6072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2642), + [6074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2643), + [6076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2644), + [6078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2645), + [6080] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2056), + [6083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2646), + [6085] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2647), + [6087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2648), + [6089] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2648), + [6091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2650), + [6093] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2651), + [6095] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2652), + [6097] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2652), + [6099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2654), + [6101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2655), + [6103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2656), + [6105] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2656), + [6107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2657), + [6109] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2658), + [6111] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2658), + [6113] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2654), + [6115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2659), + [6117] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2660), + [6119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2661), + [6121] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2661), + [6123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2663), + [6125] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2664), + [6127] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2665), + [6129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2666), + [6131] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2667), + [6133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2668), + [6135] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2668), + [6137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2670), + [6139] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2671), + [6141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2672), + [6143] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2672), + [6145] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2674), + [6147] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2675), + [6149] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2676), + [6151] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2676), + [6153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2678), + [6155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2679), + [6157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2680), + [6159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2681), + [6161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2682), + [6163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2683), + [6165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2684), + [6167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2685), + [6169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2686), + [6171] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2687), + [6173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2688), + [6175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2689), + [6177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2690), + [6179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2691), + [6181] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [6183] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [6185] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [6187] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5), + [6189] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), + [6191] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), + [6193] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2692), + [6195] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2693), + [6197] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2694), + [6199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2695), + [6201] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2696), + [6203] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2697), + [6205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2698), + [6207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2699), + [6209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2700), + [6211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2701), + [6213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2702), + [6215] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2703), + [6217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2704), + [6219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2705), + [6221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2706), + [6223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2707), + [6225] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2708), + [6227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2709), + [6229] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2709), + [6231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2711), + [6233] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2712), + [6235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2713), + [6237] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2713), + [6239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2715), + [6241] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2716), + [6243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2717), + [6245] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2717), + [6247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2719), + [6249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2720), + [6251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2721), + [6253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2722), + [6255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2723), + [6257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2724), + [6259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2725), + [6261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2726), + [6263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2727), + [6265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2728), + [6267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2729), + [6269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2730), + [6271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2731), + [6273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2732), + [6275] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2732), + [6277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2734), + [6279] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2735), + [6281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2736), + [6283] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2736), + [6285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2738), + [6287] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2739), + [6289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2740), + [6291] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2740), + [6293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2742), + [6295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2743), + [6297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2744), + [6299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2745), + [6301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2746), + [6303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2747), + [6305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2748), + [6307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2749), + [6309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2750), + [6311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2751), + [6313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2752), + [6315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2753), + [6317] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2754), + [6319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2755), + [6321] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2755), + [6323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2757), + [6325] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2758), + [6327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2759), + [6329] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2759), + [6331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2761), + [6333] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2762), + [6335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2763), + [6337] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2763), + [6339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2765), + [6341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2766), + [6343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2767), + [6345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2768), + [6347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2769), + [6349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2770), + [6351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2771), + [6353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2772), + [6355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2773), + [6357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2774), + [6359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2775), + [6361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2776), + [6363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2777), + [6365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2778), + [6367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2779), + [6369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2780), + [6371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2781), + [6373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2782), + [6375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2783), + [6377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2784), + [6379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2785), + [6381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2786), + [6383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2787), + [6385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2788), + [6387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2789), + [6389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2790), }; void *tree_sitter_bash_external_scanner_create(); diff --git a/src/scanner.cc b/src/scanner.cc index ca136b0..6c2dcc7 100644 --- a/src/scanner.cc +++ b/src/scanner.cc @@ -12,13 +12,12 @@ enum TokenType { HEREDOC_MIDDLE, HEREDOC_END, FILE_DESCRIPTOR, - WORD, EMPTY_VALUE, CONCAT, VARIABLE_NAME, - NEWLINE, - CLOSING_BRACKET, CLOSING_BRACE, + CLOSING_BRACKET, + NEWLINE, }; struct Scanner { @@ -92,13 +91,12 @@ struct Scanner { lexer->lookahead == '<' || lexer->lookahead == ')' || lexer->lookahead == '(' || - lexer->lookahead == '[' || - lexer->lookahead == '|' || - lexer->lookahead == ']' || - lexer->lookahead == '}' || lexer->lookahead == ';' || lexer->lookahead == '&' || - lexer->lookahead == '`' + lexer->lookahead == '`' || + lexer->lookahead == 0 || + (lexer->lookahead == '}' && valid_symbols[CLOSING_BRACE]) || + (lexer->lookahead == ']' && valid_symbols[CLOSING_BRACKET]) )) { lexer->result_symbol = CONCAT; return true; @@ -134,9 +132,7 @@ struct Scanner { return scan_heredoc_content(lexer, HEREDOC_BEGINNING, SIMPLE_HEREDOC); } - if (valid_symbols[VARIABLE_NAME] || valid_symbols[FILE_DESCRIPTOR] || valid_symbols[WORD]) { - unsigned length = 0; - + if (valid_symbols[VARIABLE_NAME] || valid_symbols[FILE_DESCRIPTOR]) { for (;;) { if ( lexer->lookahead == ' ' || @@ -145,98 +141,62 @@ struct Scanner { ) { skip(lexer); } else if (lexer->lookahead == '\\') { - advance(lexer); + skip(lexer); if (lexer->lookahead == '\n') { skip(lexer); } else { - length++; - break; + return false; } } else { break; } } - bool is_numeric = iswdigit(lexer->lookahead); - bool is_alphanumeric = iswalpha(lexer->lookahead); + bool is_number = true; + if (iswdigit(lexer->lookahead)) { + advance(lexer); + } else if (iswalpha(lexer->lookahead) || lexer->lookahead == '_') { + is_number = false; + advance(lexer); + } else { + return false; + } for (;;) { - // These characters are not allowed in unquoted arguments - // or environment variable names - if ( - lexer->lookahead == 0 || - lexer->lookahead == ';' || - lexer->lookahead == '"' || - lexer->lookahead == '(' || - lexer->lookahead == ')' || - lexer->lookahead == '\'' || - lexer->lookahead == '&' || - lexer->lookahead == '#' || - lexer->lookahead == '`' || - lexer->lookahead == '|' || - lexer->lookahead == '$' || - iswspace(lexer->lookahead) - ) break; - - // Curly braces are not allowed in unquoted arguments within curly braces - // (e.g. inside of a variable expansion like `${key:arg}`). - if ( - lexer->lookahead == '}' && - valid_symbols[CLOSING_BRACE] - ) break; - - // Square brackets are not allowed in unquoted arguments within square brackets - // (e.g. inside of an array subscript like `a[arg]`). - if ( - lexer->lookahead == ']' && - valid_symbols[CLOSING_BRACKET] - ) break; - - // Numbers followed by '<' and '>' at the beginning of commands - // are parsed as file descriptors. - if (lexer->lookahead == '<' || lexer->lookahead == '>') { - if (is_numeric && valid_symbols[FILE_DESCRIPTOR]) { - lexer->result_symbol = FILE_DESCRIPTOR; - return true; - } + if (iswdigit(lexer->lookahead)) { + advance(lexer); + } else if (iswalpha(lexer->lookahead) || lexer->lookahead == '_') { + is_number = false; + advance(lexer); + } else { break; } - - if (!iswdigit(lexer->lookahead)) is_numeric = false; - - if (!iswalnum(lexer->lookahead) && lexer->lookahead != '_') { - - // Alphanumeric strings followed by '=', '[', or '+=' are treated - // as environment variable names. - if (is_alphanumeric && valid_symbols[VARIABLE_NAME] && length > 0) { - if (lexer->lookahead == '+') { - lexer->mark_end(lexer); - advance(lexer); - if (lexer->lookahead == '=') { - lexer->result_symbol = VARIABLE_NAME; - return true; - } else { - return false; - } - } else if (lexer->lookahead == '=' || lexer->lookahead == '[') { - lexer->result_symbol = VARIABLE_NAME; - return true; - } - } - - is_alphanumeric = false; - } - - advance(lexer); - length++; } - // Do not handle strings containing only letters, because those - // might be keywords. Let the normal lexer handle those. - if (length > 0 && valid_symbols[WORD] && !is_alphanumeric) { - lexer->result_symbol = WORD; + if (is_number && + valid_symbols[FILE_DESCRIPTOR] && + (lexer->lookahead == '>' || lexer->lookahead == '<')) { + lexer->result_symbol = FILE_DESCRIPTOR; return true; } + + if (valid_symbols[VARIABLE_NAME]) { + if (lexer->lookahead == '+') { + lexer->mark_end(lexer); + advance(lexer); + if (lexer->lookahead == '=') { + lexer->result_symbol = VARIABLE_NAME; + return true; + } else { + return false; + } + } else if (lexer->lookahead == '=' || lexer->lookahead == '[') { + lexer->result_symbol = VARIABLE_NAME; + return true; + } + } + + return false; } return false;